Skip to main content
Version: v3

FatBurning

Start from API_LEVEL 2.0 . Please refer to API_LEVEL.

FatBurning Sensor.

info

permission code: data:user.hd.fat_burning

Methods

getCurrent

Get current fat burning minutes

getCurrent(): number

getTarget

Get current fat burning target minutes

getTarget(): number

onChange

Register a callback function to listen to the fat burning minutes change event

onChange(callback: () => void): void

offChange

Cancel a callback function to listen to the fat burning minutes change event

offChange(callback: () => void): void

Example

import { FatBurning } from '@zos/sensor'

const fatBurning = new FatBurning()
const current = fatBurning.getCurrent()
const target = fatBurning.getTarget()
const callback = () => {
console.log(fatBurning.getCurrent())
}

fatBurning.onChange(callback)

// When not needed for use
fatBurning.offChange(callback)