mirror of
https://github.com/firewalkwithm3/Sensor-Watch.git
synced 2024-11-22 19:20:30 +08:00
lcd: add special case for T in position 1 (fixes #10)
This commit is contained in:
parent
cb98f29e57
commit
21a627aad6
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue