diff options
author | Hugo Chargois <hugo.chargois@free.fr> | 2023-09-09 02:22:08 +0200 |
---|---|---|
committer | Hugo Chargois <hugo.chargois@free.fr> | 2023-09-09 02:22:08 +0200 |
commit | ebfeb1f21a290f91dc21b28a9eb707ebbaf5615c (patch) | |
tree | 1bc7ecd54130b4ec03c578500e0d65c672140d7c | |
parent | 7fd51caa25681c43173be77075c268cede87efb6 (diff) | |
download | Sensor-Watch-ebfeb1f21a290f91dc21b28a9eb707ebbaf5615c.tar.gz Sensor-Watch-ebfeb1f21a290f91dc21b28a9eb707ebbaf5615c.tar.bz2 Sensor-Watch-ebfeb1f21a290f91dc21b28a9eb707ebbaf5615c.zip |
Turn on the funky segment of pos 0 for char '@'
-rw-r--r-- | watch-library/shared/watch/watch_private_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/watch-library/shared/watch/watch_private_display.c b/watch-library/shared/watch/watch_private_display.c index 245b20ed..c12957d9 100644 --- a/watch-library/shared/watch/watch_private_display.c +++ b/watch-library/shared/watch/watch_private_display.c @@ -93,7 +93,7 @@ void watch_display_character(uint8_t character, uint8_t position) { } if (character == 'T' && position == 1) watch_set_pixel(1, 12); // add descender - else if (position == 0 && (character == 'B' || character == 'D')) watch_set_pixel(0, 15); // add funky ninth segment + else if (position == 0 && (character == 'B' || character == 'D' || character == '@')) watch_set_pixel(0, 15); // add funky ninth segment else if (position == 1 && (character == 'B' || character == 'D' || character == '@')) watch_set_pixel(0, 12); // add funky ninth segment } |