I am looking to turn off GPS, WIFI, BLE, Screen, (basically use minimal power while still tracking HB and other features) when using an app on the watch.
It appears that for GPS it would be:
- Position.enableLocationEvents(Position.LOCATION_DISABLE, method(:onPosition));
For BLE its:
- setScanState(false); // Or something to that effect?
- Would love to disconnect from the phone for an extended period of time. This is only turning off scanning.
For Wifi:
- I have no idea.
For screen:
- I have no idea. Would love to not have the watch display anything, my end user wouldn't care and it kills battery.
Any help would be appreciated.