BangleApps/apps/coretemp
nravanelli f6b8aa5942 updates to coretemp 2025-04-25 10:53:51 +08:00
..
ChangeLog updates to coretemp 2025-04-25 10:53:51 +08:00
README.md updates to coretemp 2025-04-25 10:53:51 +08:00
app-settings.json updates to coretemp 2025-04-25 10:53:51 +08:00
boot.js updates to coretemp 2025-04-25 10:53:51 +08:00
coretemp-icon.js
coretemp.js updates to coretemp 2025-04-25 10:53:51 +08:00
coretemp.png
lib.js updates to coretemp 2025-04-25 10:53:51 +08:00
metadata.json updates to coretemp 2025-04-25 10:53:51 +08:00
recorder.js updates to coretemp 2025-04-25 10:53:51 +08:00
screenshot.png Cleanup app and widget and fix B2 drawing compatibility 2021-12-30 06:04:12 +00:00
settings.js updates to coretemp 2025-04-25 10:53:51 +08:00
widget.js updates to coretemp 2025-04-25 10:53:51 +08:00

README.md

CoreTemp display

Application to connect to the CORE or calera devices from greenteg and display the current skin and body core temperature readings.

This also includes a module (heavily influenced by the BTHRM app) so you can integrate the core sensor into your own apps/widgets. You can also pair an ANT+ heart rate strap to the CORE/calera sensor as well in the App Settings so that you can leverage the exertional algorthim for estimating core temperature.

Usage

Background task connects to a paired and emits a CORESensor signal value for each reading. Application contains three components, one is a background task that monitors the sensor and emits a 'CORESensor' signal on activity if activated in settings. The widget shows when the sensor is enabled and connected (green) or disconnected (grey). The app listens for 'CORESensor' signals and shows the current data.

CORESensor Module

With the module, you can add the CORE Sensor to your own app. Simply power on the module and listen to CORESensor:

Bangle.setCORESensorPower(1,appName);
Bangle.on('CORESensor', (x) =>{ ... });

The CORESensor emits an object with following keys:

  • core: Estimated/Predicted core temperature
  • skin: Measured skin temperature
  • unit: "F" or "C"
  • hr: Heart Rate (only when ANT+ heart rate monitor is paired)
  • heatflux: (calera device only - needs encryption level b released by greenteg)
  • hsi: Heat Strain Index (read more here, exertional algorithm only)
  • battery: battery level
  • quality: Used to indicate the quality or trust level of the current measurement values

TODO

  • Integrate with other tracking/sports apps to log data.
  • Emit Bangle.js heart rate to device as a heart rate for internal algorthim

Creators/Contributors

Ivor Hewitt

Nicholas Ravanelli