BODY_TEMP
Creating Sensors
const thermometer = hmSensor.createSensor(hmSensor.id.BODY_TEMP)
BODY_TEMP instance
thermometer: object
| Properties | Description | Type |
|---|---|---|
| current | current temperature | number |
| timeinterval | time elapsed since the value was set | number |
Code example
console.log(
'the current temp: ' + thermometer.current + ' interval:' + thermometer.timeinterval + '\r\n'
)