From: Lorenzo Prosseda Date: Mon, 4 Aug 2025 09:32:32 +0000 (+0200) Subject: Avoid confusion between T and E on classic display X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=3baff2f5a7989387e1f5bfe6be2e0a7e51c86dae;p=sensor-watch.git Avoid confusion between T and E on classic display In place of T, display a + character in positions 4 and 6 --- diff --git a/watch-library/shared/watch/watch_common_display.c b/watch-library/shared/watch/watch_common_display.c index ed558a1..86ab352 100644 --- a/watch-library/shared/watch/watch_common_display.c +++ b/watch-library/shared/watch/watch_common_display.c @@ -57,6 +57,7 @@ void watch_display_character(uint8_t character, uint8_t position) { else if (character == 'c') character = 'C'; // C needs to be uppercase else if (character == 'J') character = 'j'; // same else if (character == 'v' || character == 'V' || character == 'U' || character == 'W' || character == 'w') character = 'u'; // bottom segment duplicated, so show in top half + else if (character == 't' || character == 'T') character = '+'; // avoid confusion with uppercase E } else { if (character == 'u') character = 'v'; // we can use the bottom segment; move to lower half else if (character == 'j') character = 'J'; // same but just display a normal J