Avoid confusion between T and E on classic display

In place of T, display a + character in positions 4 and 6
This commit is contained in:
Lorenzo Prosseda 2025-08-04 11:32:32 +02:00 committed by Joey Castillo
parent 3d86e14f05
commit 3baff2f5a7

View File

@ -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