fix: fixed battery leak and HB AOD
This commit is contained in:
parent
0c961f777a
commit
41e99e44db
2
app.json
2
app.json
@ -6,7 +6,7 @@
|
||||
"appType": "watchface",
|
||||
"version": {
|
||||
"code": 1,
|
||||
"name": "1.0.3"
|
||||
"name": "1.0.4"
|
||||
},
|
||||
"icon": "icon.png",
|
||||
"vender": "zepp",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vhs-watch",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"description": "vhs watch for Zepp OS 3.0 (GTS 4)",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
|
@ -6,15 +6,16 @@ import secondaryFont from '../fontData/secondaryFont';
|
||||
let heartRateWg;
|
||||
export default function () {
|
||||
console.log("[modules]: heartrate module init")
|
||||
if (getScene() != SCENE_AOD) {
|
||||
let heart = new hmSensor.HeartRate();
|
||||
updateHeartWidget(heart.getCurrent())
|
||||
updateHeartWidget(heart.getLast())
|
||||
heart.onCurrentChange(() => updateHeartWidget(heart.getCurrent()))
|
||||
if (!getScene() != SCENE_AOD)
|
||||
hmUI.createWidget(hmUI.widget.IMG, {
|
||||
x: 10,
|
||||
y: 365,
|
||||
src: 'misc/hb.PNG'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function updateHeartWidget(hbpm) {
|
||||
@ -24,7 +25,7 @@ function updateHeartWidget(hbpm) {
|
||||
if (heartRateWg) {
|
||||
hmUI.deleteWidget(heartRateWg)
|
||||
}
|
||||
if (!getScene() != SCENE_AOD) {
|
||||
if (getScene() != SCENE_AOD) {
|
||||
heartRateWg = hmUI.createWidget(hmUI.widget.TEXT_IMG, {
|
||||
x: 100,
|
||||
y: 365,
|
||||
|
Loading…
x
Reference in New Issue
Block a user