Thank you!
I had the exact same problem draining the battery helped!
I did not think of trying the power-off function (i only restarted multiple times to no avail).
My cause may be similar, although i did not try power-cycling it myself.
Instead i tried to copy the workaround from the barometer app and apparently failed.
My pressure handler is currently
function handlePressure(p) {
if (p===undefined) {
setTimeout(() => Bangle.getPressure().then(handlePressure), 500);
return;
}
[do handling here]
}
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.
Thank you!
I had the exact same problem draining the battery helped!
I did not think of trying the power-off function (i only restarted multiple times to no avail).
My cause may be similar, although i did not try power-cycling it myself.
Instead i tried to copy the workaround from the barometer app and apparently failed.
My pressure handler is currently
and i call it every minute by
which seems to confuse the sensor.