You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If brightnessController.Level() is not set to Off before going to sleep then the watch locks up at some point. Dim the screen all the way off regardless of AlwaysOn status
225
-
while (brightnessController.Level() != Controllers::BrightnessController::Levels::Off) {
224
+
while (brightnessController.Level() != Controllers::BrightnessController::Levels::Low) {
226
225
brightnessController.Lower();
227
226
vTaskDelay(100);
228
227
}
229
228
// Don't actually turn off the display for AlwaysOn mode
0 commit comments