diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-03-04 14:52:49 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-04 14:52:49 -0600 |
commit | ccdf08da876d2c66bbc54cc246443676c4f9bf2e (patch) | |
tree | 77473da9df40f9b1f7cec5f8bd03c1b52c26b8e7 /watch-library/shared | |
parent | ea988208e10dbcf62eff65522ec9f92231d880e9 (diff) | |
download | Sensor-Watch-ccdf08da876d2c66bbc54cc246443676c4f9bf2e.tar.gz Sensor-Watch-ccdf08da876d2c66bbc54cc246443676c4f9bf2e.tar.bz2 Sensor-Watch-ccdf08da876d2c66bbc54cc246443676c4f9bf2e.zip |
Movement: Astronomy and Orrery watch faces (#55)
Diffstat (limited to 'watch-library/shared')
-rw-r--r-- | watch-library/shared/watch/watch_private_display.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/watch-library/shared/watch/watch_private_display.c b/watch-library/shared/watch/watch_private_display.c index 87e3f1ae..1454a3b6 100644 --- a/watch-library/shared/watch/watch_private_display.c +++ b/watch-library/shared/watch/watch_private_display.c @@ -52,6 +52,7 @@ void watch_display_character(uint8_t character, uint8_t position) { if (character == 'T') character = 't'; // uppercase T only works in positions 0 and 1 } if (position == 1) { + if (character == 'a') character = 'A'; // A needs to be uppercase if (character == 'o') character = 'O'; // O needs to be uppercase if (character == 'i') character = 'l'; // I needs to be uppercase (use an l, it looks the same) if (character == 'n') character = 'N'; // N needs to be uppercase |