lcd: add special case for T in position 1 (fixes #10)

This commit is contained in:
Joey Castillo 2021-09-14 15:19:21 -04:00
parent cb98f29e57
commit 21a627aad6

View file

@ -181,6 +181,7 @@ void watch_display_character(uint8_t character, uint8_t position) {
segmap = segmap >> 8;
segdata = segdata >> 1;
}
if (character == 'T' && position == 1) slcd_sync_seg_on(&SEGMENT_LCD_0, SLCD_SEGID(1, 12));
}
void watch_display_string(char *string, uint8_t position) {