-
I'm writing an application and need to check and record the watch's power draw while it runs.
If you mostly care only about CPU activity = your code running too long/too much/in busy loop, there is
https://www.espruino.com/Reference#l__global_setBusyIndicator
https://www.espruino.com/Reference#l__global_setSleepIndicator
on some watches it helped me to set it to motor pin to feel how busy the device is. Ideally you don't feel anything most of the time. Did not try with Bangle 2 yet. vibration pin is D19 sosetBusyIndicator(D19)
could enable it. Also turning off normal vibration could be good idea. It will of course drain battery so it is just temporary test to be sure device is idling most of the time.
I'm writing an application and need to check and record the watch's power draw while it runs.
Is there any command I can run, or alternative method, to check the power draw?
Thanks.