drained: turn off wake-on-twist etc

pull/2684/head
Rob Pilling 2023-04-07 21:27:46 +01:00
parent a36e705d79
commit 92ff678ac0
2 changed files with 8 additions and 1 deletions

View File

@ -18,7 +18,7 @@ With this app installed, your Bangle will automatically switch into low power mo
[x] Turn off already-running GPS / HRM
## Features
[ ] Wake on twist -> off (#2502)
[x] Wake on twist -> off (#2502)
# Creator

View File

@ -24,6 +24,13 @@ forceOff("HRM");
// events
Bangle.removeAllListeners();
// UI
Bangle.setOptions({
wakeOnFaceUp: false,
wakeOnTouch: false,
wakeOnTwist: false,
});
// clock
let nextDraw: number | undefined;
const draw = () => {