diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-08-07 13:26:05 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-08-07 13:26:05 -0400 |
commit | a2573d7e0ada9e601273fa37308f16c90cd662ae (patch) | |
tree | 9730d0496c9384c2bc9fdc1aae0f74a0ca8b6c3c /watch-library | |
parent | f102be48642235a9d72b2159cc1c32cc83d0de8a (diff) | |
download | Sensor-Watch-a2573d7e0ada9e601273fa37308f16c90cd662ae.tar.gz Sensor-Watch-a2573d7e0ada9e601273fa37308f16c90cd662ae.tar.bz2 Sensor-Watch-a2573d7e0ada9e601273fa37308f16c90cd662ae.zip |
rename 'sensing' indicator to 'signal'
Diffstat (limited to 'watch-library')
-rw-r--r-- | watch-library/watch/watch.c | 2 | ||||
-rw-r--r-- | watch-library/watch/watch.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/watch-library/watch/watch.c b/watch-library/watch/watch.c index 5d046925..e4f210f1 100644 --- a/watch-library/watch/watch.c +++ b/watch-library/watch/watch.c @@ -134,7 +134,7 @@ static const uint64_t Segment_Map[] = { static const uint8_t Num_Chars = 10; static const uint32_t IndicatorSegments[6] = { - SLCD_SEGID(0, 17), // WATCH_INDICATOR_SENSING + SLCD_SEGID(0, 17), // WATCH_INDICATOR_SIGNAL SLCD_SEGID(0, 16), // WATCH_INDICATOR_BELL SLCD_SEGID(2, 17), // WATCH_INDICATOR_PM SLCD_SEGID(2, 16), // WATCH_INDICATOR_24H diff --git a/watch-library/watch/watch.h b/watch-library/watch/watch.h index 0f70890c..6711353c 100644 --- a/watch-library/watch/watch.h +++ b/watch-library/watch/watch.h @@ -110,7 +110,7 @@ void _watch_init(); /// @{ typedef enum WatchIndicatorSegment { - WATCH_INDICATOR_SENSING = 0, + WATCH_INDICATOR_SIGNAL = 0, WATCH_INDICATOR_BELL, WATCH_INDICATOR_PM, WATCH_INDICATOR_24H, |