Would it be possible to add Bangle.getGPSPower() and Bangle.getHRMPower() in v2.09 of the firmware.
These would be useful for ensuring that the right decision is made in Apps.
For example
if (Bangle.getGPSPower() == false) {
// only need to turn on the GPS if it is switched off
Bangle.setGPSPower(true);
}
Bangle.on('GPS', print);
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Would it be possible to add Bangle.getGPSPower() and Bangle.getHRMPower() in v2.09 of the firmware.
These would be useful for ensuring that the right decision is made in Apps.
For example