]> git.earman.xyz Git - sensor-watch.git/commitdiff
fix documentation of default loop handler in template
authorjoeycastillo <joeycastillo@utexas.edu>
Sun, 15 Jan 2023 15:31:12 +0000 (09:31 -0600)
committerjoeycastillo <joeycastillo@utexas.edu>
Sun, 15 Jan 2023 15:31:12 +0000 (09:31 -0600)
movement/template/template.c

index ea1d05a02443e3db8758f9511de543817b16be89..f0669d376f03cc0c4f49fa21383de28eeeae4a56 100644 (file)
@@ -75,8 +75,8 @@ bool <#watch_face_name#>_face_loop(movement_event_t event, movement_settings_t *
         default:
             // Movement's default loop handler will step in for any cases you don't handle above:
             // * EVENT_LIGHT_BUTTON_DOWN lights the LED
-            // * EVENT_ALARM_BUTTON_UP moves to the next watch face in the list
-            // * EVENT_MODE_LONG_PRESS returns to the first watch face in the list
+            // * EVENT_MODE_BUTTON_UP moves to the next watch face in the list
+            // * EVENT_MODE_LONG_PRESS returns to the first watch face (or skips to the secondary watch face, if configured)
             // You can override any of these behaviors by adding a case for these events to this switch statement.
             return movement_default_loop_handler(event, settings);
     }