Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhanced character set #39 #40

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The codes for W and w were reversed. Fixed.

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
Loading