Skip to content

Commit d916694

Browse files
committed
Changed font glyphs for numbers and the colon
As suggested by bperrybap http://forum.arduino.cc//index.php?topic=193107.msg1428845#msg1428845
1 parent c25e461 commit d916694

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

BigFont.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ uint8_t BF_width1[] PROGMEM = {
173173
0x02, 0x05, // 0x29 )
174174
0x20, 0x05, // 0x2C ,
175175
0x20, 0x04, // 0x2E .
176-
0x04, 0x04, // 0x3A :
176+
0x6F, 0x6F, // 0x3A :
177177
0x01, 0x05 // 0x3B ;
178178
};
179179

@@ -184,14 +184,14 @@ uint8_t BF_width2[] PROGMEM = {
184184

185185
uint8_t BF_width3[] PROGMEM = {
186186
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, // 0x30 0, 0x4F O
187-
0x01, 0x02, 0x20, 0x20, 0x05, 0x20, // 0x31 1
188-
0x06, 0x06, 0x02, 0x03, 0x07, 0x07, // 0x32 2
189-
0x06, 0x06, 0x02, 0x07, 0x07, 0x05, // 0x33 3
187+
0x01, 0x02, 0x20, 0x04, 0xFF, 0x04, // 0x31 1
188+
0x06, 0x06, 0x02, 0x03, 0x04, 0x04, // 0x32 2
189+
0x06, 0x06, 0x02, 0x04, 0x04, 0x05, // 0x33 3
190190
0x03, 0x04, 0x02, 0x20, 0x20, 0x05, // 0x34 4
191-
0xFF, 0x06, 0x06, 0x07, 0x07, 0x05, // 0x35 5
192-
0x00, 0x06, 0x06, 0x03, 0x07, 0x05, // 0x36 6
191+
0xFF, 0x06, 0x06, 0x04, 0x04, 0x05, // 0x35 5
192+
0x00, 0x06, 0x06, 0x03, 0x04, 0x05, // 0x36 6
193193
0x01, 0x01, 0x02, 0x20, 0x00, 0x20, // 0x37 7
194-
0x00, 0x06, 0x02, 0x03, 0x07, 0x05, // 0x38 8
194+
0x00, 0x06, 0x02, 0x03, 0x04, 0x05, // 0x38 8
195195
0x00, 0x06, 0x02, 0x20, 0x20, 0x05, // 0x39 9
196196
0x00, 0x06, 0x02, 0xFF, 0x20, 0xFF, // 0x41 A
197197
0xFF, 0x06, 0x05, 0xFF, 0x07, 0x02, // 0x42 B

0 commit comments

Comments
 (0)