From: Spencer Bywater Date: Wed, 20 Apr 2022 15:40:55 +0000 (-0700) Subject: Add break statement for EVENT_TICK in watch_face template (#64) X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=949ca2227ffca6a3f05c5ae0972fbc2c1a54d255;p=sensor-watch.git Add break statement for EVENT_TICK in watch_face template (#64) --- diff --git a/movement/template/template.c b/movement/template/template.c index c9c174b..91611d0 100644 --- a/movement/template/template.c +++ b/movement/template/template.c @@ -52,6 +52,7 @@ bool <#watch_face_name#>_face_loop(movement_event_t event, movement_settings_t * break; case EVENT_TICK: // If needed, update your display here. + break; case EVENT_MODE_BUTTON_UP: // You shouldn't need to change this case; Mode almost always moves to the next watch face. movement_move_to_next_face();