mirror of
https://github.com/firewalkwithm3/Sensor-Watch.git
synced 2024-11-22 19:20:30 +08:00
Merge pull request #273 from hchargois/atchar-pos-0
Turn on the funky segment of pos 0 for char '@'
This commit is contained in:
commit
ae6ccfd637
|
@ -93,7 +93,7 @@ void watch_display_character(uint8_t character, uint8_t position) {
|
|||
}
|
||||
|
||||
if (character == 'T' && position == 1) watch_set_pixel(1, 12); // add descender
|
||||
else if (position == 0 && (character == 'B' || character == 'D')) watch_set_pixel(0, 15); // add funky ninth segment
|
||||
else if (position == 0 && (character == 'B' || character == 'D' || character == '@')) watch_set_pixel(0, 15); // add funky ninth segment
|
||||
else if (position == 1 && (character == 'B' || character == 'D' || character == '@')) watch_set_pixel(0, 12); // add funky ninth segment
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue