Skip to content

Commit f242f1a

Browse files
authored
Fix type: unsigned char -> uint8_t (#334)
1 parent d4b8234 commit f242f1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/SSD1306ClockDemo/images.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const unsigned char activeSymbol[] PROGMEM = {
1+
const uint8_t activeSymbol[] PROGMEM = {
22
B00000000,
33
B00000000,
44
B00011000,
@@ -9,7 +9,7 @@ const unsigned char activeSymbol[] PROGMEM = {
99
B00011000
1010
};
1111

12-
const unsigned char inactiveSymbol[] PROGMEM = {
12+
const uint8_t inactiveSymbol[] PROGMEM = {
1313
B00000000,
1414
B00000000,
1515
B00000000,

0 commit comments

Comments
 (0)