]> git.earman.xyz Git - sensor-watch.git/commitdiff
If the alarm is enabled show bell not signal
authorRuben Nic <RubenSandwich@users.noreply.github.com>
Sat, 18 May 2024 14:44:43 +0000 (10:44 -0400)
committerRuben Nic <RubenSandwich@users.noreply.github.com>
Sat, 18 May 2024 14:44:43 +0000 (10:44 -0400)
movement/watch_faces/clock/close_enough_clock_face.c

index 19bde697ccfd063581266507172170a19b77ae30..341942e728e3cf09ff128585bcce6b0429036d96 100644 (file)
@@ -49,9 +49,9 @@ static const int hour_switch_index = 9;
 static void _update_alarm_indicator(bool settings_alarm_enabled, close_enough_clock_state_t *state) {
     state->alarm_enabled = settings_alarm_enabled;
     if (state->alarm_enabled) {
-        watch_set_indicator(WATCH_INDICATOR_SIGNAL);
+        watch_set_indicator(WATCH_INDICATOR_BELL);
     } else {
-        watch_clear_indicator(WATCH_INDICATOR_SIGNAL);
+        watch_clear_indicator(WATCH_INDICATOR_BELL);
     };
 }