-
When using Heart Rate Monitoring on the Health app, does it pause HRM readings whenever the watch is motionless (e.g. set on a table) and the accelerometer goes into idle/low-power standby mode?
As far as I can tell from reading the Health app's boot.js, there's no attempt to pause HRM readings when motionless. I've tried searching these forums and didn't find any remarks on it, either. But I may be missing something in the underlying Espruino firmware.
Aside: Yesterday, I got my Bangle.js 2, and so far, it's been fantastic! Thank you to everyone who has contributed.
I've noticed some apps on the Bangle.js 2 feature a back button widget in the top-left of the touchscreen (e.g. Agenda, Settings), and other apps do not (e.g. Weather).
From reading a recent commit to the Health app, it seems like supporting the back button widget is the intended way forward (instead of having to install
widclose
or such). When using the Quick Launcher to access apps from the clock screen with swipes, having the back button is convenient to avoid needing to press the physical button. And this saves on wear to the watch physical button, which I'm a bit concerned about after hearing that others' buttons have become dislodged.However, the Weather app already calls for the
clock
UI, which sounds like it'd conflict with usingBangle.setUI({mode : "custom", back : function() … })
to provide a back button.As someone new to Bangle.js/Espruino, what would be the proper way to solve this?