Skip to content

Commit 99586f8

Browse files
Merge PR #394 - keep LED lit while buttons held
Keeps the LED turned on while the user is interacting with the watch. Reviewed-by: Matheus Afonso Martins Moreira <[email protected]> GitHub-Pull-Request: #394
2 parents b9dbc4e + 5f1a651 commit 99586f8

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

movement/movement.c

+11
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,17 @@ bool app_loop(void) {
612612
event.subsecond = movement_state.subsecond;
613613
// the first trip through the loop overrides the can_sleep state
614614
can_sleep = wf->loop(event, &movement_state.settings, watch_face_contexts[movement_state.current_face_idx]);
615+
616+
// Keep light on if user is still interacting with the watch.
617+
if (movement_state.light_ticks > 0) {
618+
switch (event.event_type) {
619+
case EVENT_LIGHT_BUTTON_DOWN:
620+
case EVENT_MODE_BUTTON_DOWN:
621+
case EVENT_ALARM_BUTTON_DOWN:
622+
movement_illuminate_led();
623+
}
624+
}
625+
615626
event.event_type = EVENT_NONE;
616627
}
617628

watch-library/simulator/main.c

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ void main_loop_sleep(uint32_t ms) {
8989
main_loop_set_sleeping(true);
9090
emscripten_sleep(ms);
9191
main_loop_set_sleeping(false);
92+
animation_frame_id = ANIMATION_FRAME_ID_INVALID;
9293
}
9394

9495
bool main_loop_is_sleeping(void) {

0 commit comments

Comments
 (0)