From 4679a51b4cb6a871d94536ff28dcd188b30832b7 Mon Sep 17 00:00:00 2001 From: Craig McQueen Date: Thu, 16 Jul 2026 18:19:46 +1000 Subject: [PATCH] Fix comments for bell and signal indicators * `WATCH_INDICATOR_SIGNAL` is for indicating alarm is on. * `WATCH_INDICATOR_BELL` is for indicating hourly chime in on. --- watch-library/shared/watch/watch_slcd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/watch-library/shared/watch/watch_slcd.h b/watch-library/shared/watch/watch_slcd.h index 43a4f849..2afe55dd 100644 --- a/watch-library/shared/watch/watch_slcd.h +++ b/watch-library/shared/watch/watch_slcd.h @@ -48,8 +48,8 @@ /// An enum listing the icons and indicators available on the watch. typedef enum { - WATCH_INDICATOR_SIGNAL = 0, ///< The hourly signal indicator; also useful for indicating that sensors are on. - WATCH_INDICATOR_BELL, ///< The small bell indicating that an alarm is set. + WATCH_INDICATOR_SIGNAL = 0, ///< The signal indicator indicating alarm is set; also useful for indicating that sensors are on. + WATCH_INDICATOR_BELL, ///< The small bell indicating hourly chime is on. WATCH_INDICATOR_PM, ///< The PM indicator, indicating that a time is in the afternoon. WATCH_INDICATOR_24H, ///< The 24H indicator, indicating that the watch is in a 24-hour mode. WATCH_INDICATOR_LAP, ///< The LAP indicator; the F-91W uses this in its stopwatch UI. On custom LCD it's a looped arrow.