Skip to content

Commit

Permalink
Fix W and w characters so Ww works.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Jul 15, 2024
1 parent 6f8a106 commit dcd2f46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions TM1637TinyDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const uint8_t asciiToSegment[] PROGMEM = {
0b01111000, // 084 T
0b00111110, // 085 U
0b00111110, // 086 V
0b00011110, // 087 W (For display use Ww)
0b00111100, // 087 W (For display use Ww)
0b01110110, // 088 X
0b01101110, // 089 Y
0b01011011, // 090 Z
Expand Down Expand Up @@ -148,7 +148,7 @@ const uint8_t asciiToSegment[] PROGMEM = {
0b01111000, // 116 t
0b00011100, // 117 u
0b00011100, // 118 v
0b00111100, // 119 w (For display use vv)
0b00011110, // 119 w (For display use uu)
0b01110110, // 120 x
0b01101110, // 121 y
0b01011011, // 122 z
Expand Down
4 changes: 2 additions & 2 deletions TM1637TinyDisplay6.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const uint8_t asciiToSegment[] PROGMEM = {
0b01111000, // 084 T
0b00111110, // 085 U
0b00111110, // 086 V
0b00011110, // 087 W (For display use Ww)
0b00111100, // 087 W (For display use Ww)
0b01110110, // 088 X
0b01101110, // 089 Y
0b01011011, // 090 Z
Expand Down Expand Up @@ -151,7 +151,7 @@ const uint8_t asciiToSegment[] PROGMEM = {
0b01111000, // 116 t
0b00011100, // 117 u
0b00011100, // 118 v
0b00111100, // 119 w (For display use vv)
0b00011110, // 119 w (For display use uu)
0b01110110, // 120 x
0b01101110, // 121 y
0b01011011, // 122 z
Expand Down

0 comments on commit dcd2f46

Please sign in to comment.