-
Notifications
You must be signed in to change notification settings - Fork 0
/
texts.h
43 lines (38 loc) · 954 Bytes
/
texts.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// clearing display
uint8_t clearMe[] = {
0, 0, 0, 0
};
// displays "IP" text
uint8_t ipText[] = {
SEG_B | SEG_C,
SEG_A | SEG_B | SEG_E | SEG_F | SEG_G
};
// displays "HI" text
uint8_t hiText[] = {
SEG_B | SEG_C | SEG_E | SEG_F | SEG_G,
SEG_B | SEG_C
};
// displays "SEt" text
uint8_t setText[] = {
SEG_A | SEG_C | SEG_D | SEG_F | SEG_G,
SEG_A | SEG_D | SEG_E | SEG_F | SEG_G,
SEG_D | SEG_E | SEG_F | SEG_G
};
// displays "rEPO" text
uint8_t repoText[] = {
SEG_E | SEG_G,
SEG_A | SEG_D | SEG_E | SEG_F | SEG_G,
SEG_A | SEG_B | SEG_E | SEG_F | SEG_G,
SEG_A | SEG_B | SEG_C | SEG_D | SEG_E | SEG_F
};
// TIP:
// Each of the four digits has 7 segments that can be addressed each individually.
// Each segment is represented by a letter as shown below which is addressed by one bit.
//
// A
// ----
// F | | B
// -G-
// E | | C
// ----
// D