File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 38
38
// This is the combined array that contains all the segment configurations for many different characters and symbols
39
39
const uint8_t characterArray[] PROGMEM = {
40
40
// ABCDEFG Segments 7-segment map:
41
- 0b1111110 , // 0 AAA
42
- 0b0110000 , // 1 F B
43
- 0b1101101 , // 2 F B
44
- 0b1111001 , // 3 GGG
45
- 0b0110011 , // 4 E C
46
- 0b1011011 , // 5 E C
47
- 0b1011111 , // 6 DDD
48
- 0b1110000 , // 7
49
- 0b1111111 , // 8
50
- 0b1111011 , // 9
41
+ 0b1111110 , // 0 "0" AAA
42
+ 0b0110000 , // 1 "1" F B
43
+ 0b1101101 , // 2 "2" F B
44
+ 0b1111001 , // 3 "3" GGG
45
+ 0b0110011 , // 4 "4" E C
46
+ 0b1011011 , // 5 "5" E C
47
+ 0b1011111 , // 6 "6" DDD
48
+ 0b1110000 , // 7 "7"
49
+ 0b1111111 , // 8 "8"
50
+ 0b1111011 , // 9 "9"
51
51
0b1110111 , // 10 "A"
52
52
0b0011111 , // 11 "b"
53
53
0b1001110 , // 12 "C"
You can’t perform that action at this time.
0 commit comments