diff options
author | Wesley Aptekar-Cassels <me@wesleyac.com> | 2023-11-18 23:09:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-18 23:09:17 -0500 |
commit | ae6ccfd6377f027a9f8c9acdbaa525a6f54f734f (patch) | |
tree | 3a5e41b07a3d948d8b93e682376d6e00f3aa21d3 | |
parent | cda66e8c312ba36483a9e152c588f508ec8053c2 (diff) | |
parent | ebfeb1f21a290f91dc21b28a9eb707ebbaf5615c (diff) | |
download | Sensor-Watch-ae6ccfd6377f027a9f8c9acdbaa525a6f54f734f.tar.gz Sensor-Watch-ae6ccfd6377f027a9f8c9acdbaa525a6f54f734f.tar.bz2 Sensor-Watch-ae6ccfd6377f027a9f8c9acdbaa525a6f54f734f.zip |
Merge pull request #273 from hchargois/atchar-pos-0
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 } |