summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoeycastillo <joeycastillo@utexas.edu>2023-01-15 09:31:12 -0600
committerjoeycastillo <joeycastillo@utexas.edu>2023-01-15 09:31:12 -0600
commita610382f89165370bd9239546dcc4f2fe9bf9e1c (patch)
tree0f18ff9feff4f6bef6faedf0e6147e2d9cf74b3d
parent9d47eb9a119f4dde78063316f6ff0a1668b4c1e0 (diff)
downloadSensor-Watch-a610382f89165370bd9239546dcc4f2fe9bf9e1c.tar.gz
Sensor-Watch-a610382f89165370bd9239546dcc4f2fe9bf9e1c.tar.bz2
Sensor-Watch-a610382f89165370bd9239546dcc4f2fe9bf9e1c.zip
fix documentation of default loop handler in template
-rw-r--r--movement/template/template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/movement/template/template.c b/movement/template/template.c
index ea1d05a0..f0669d37 100644
--- a/movement/template/template.c
+++ b/movement/template/template.c
@@ -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);
}