You are reading a single comment by @AxelRHD and its replies.
Click here to read the full conversation.
-
Maybe just disable locking in your app?
Perhaps aBangle.setLockTimeout
like Bangle.setLCDTimeout would be useful?Right now you could do:
Bangle.on("lock", (state) => {if (state) Bangle.setLocked(false);});
I have a similar problem on the Bangle.js 2:
I am creating a special countdown app fot football referees. So the button has to start / stop the stopwatch. But right now I have to press the button twice (wake up the watch and then start the clock). Can this be done in one step? Or what would be best practice in this case?