Skip to content

Commit c483480

Browse files
committed
Added new ticker program, which shows a rotating
text. Text can changed by sending a text (terminated with newline) to RX pin. Added 'const' to font data in font.h to allow it to be stored as program data.
1 parent 6c4a2b9 commit c483480

File tree

3 files changed

+861
-1
lines changed

3 files changed

+861
-1
lines changed

software/cp437/font.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#endif
66

77

8-
byte cp437_font [256] [8] PROGMEM = {
8+
const byte cp437_font [256] [8] PROGMEM = {
99
{
1010
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
1111
, // 0x00

0 commit comments

Comments
 (0)