From 21a627aad6ed79949e642e2881f3029c8394cdc5 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Tue, 14 Sep 2021 15:19:21 -0400 Subject: lcd: add special case for T in position 1 (fixes #10) --- watch-library/watch/watch_slcd.c | 1 + 1 file changed, 1 insertion(+) (limited to 'watch-library/watch') diff --git a/watch-library/watch/watch_slcd.c b/watch-library/watch/watch_slcd.c index cdade07f..7210713a 100644 --- a/watch-library/watch/watch_slcd.c +++ b/watch-library/watch/watch_slcd.c @@ -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) { -- cgit v1.2.3