Hi i'm new here
because i want to run specific function on high power mode, i use Timer to call callback function on onExitSleep() event .
function onExitSleep() {
myTimer.start(method(:DoSomething), 1000, true);
}
function onEnterSleep() {
myTimer.stop();
}
on device (Forerunner 645), it works well until Move bar notification appears. (Move and move bar clear)
after that, Watch face somehow doesn't respond to gesture anymore but other function on onUpdate() still works fine.
Is Move bar notification somehow interrupt onExitSleep() event or Timer ?
Is there way to manage move bar notification ?