VHS-watch/watchface/modules/heartRate.js
Савелий Савенок 0c961f777a fix: cleanup, AOD fixes
2024-10-20 03:27:14 +03:00

38 lines
1.0 KiB
JavaScript

import { getScene, SCENE_AOD } from '@zos/app'
import * as hmSensor from '@zos/sensor'
import * as hmUI from '@zos/ui';
import secondaryFont from '../fontData/secondaryFont';
let heartRateWg;
export default function () {
console.log("[modules]: heartrate module init")
let heart = new hmSensor.HeartRate();
updateHeartWidget(heart.getCurrent())
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) {
if (!hbpm) {
hbpm = 0
}
if (heartRateWg) {
hmUI.deleteWidget(heartRateWg)
}
if (!getScene() != SCENE_AOD) {
heartRateWg = hmUI.createWidget(hmUI.widget.TEXT_IMG, {
x: 100,
y: 365,
type: hmUI.data_type.BATTERY,
font_array: secondaryFont,
h_space: 1,
align_h: hmUI.align.LEFT,
text: hbpm
})
}
}