forked from bracci/Qlockthree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Zahlen.h
139 lines (135 loc) · 2.37 KB
/
Zahlen.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/**
* Zahlen
* Definition der Zahlen fuer die Sekundenanzeige der QLOCKTWO.
* Die Zahlen sind wie die Woerter Bitmasken fuer die Matrix.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 1.3
* @created 18.2.2011
* @updated 18.1.2013
*
* Versionshistorie:
* V 1.1: - A/M fuer die Umschaltung zwischen LDR auto/manuell hinzugefuegt (Danke an Alexander).
* V 1.2: - Bitmaps in den PROGMEM ausgelagert.
* V 1.3: - Staben von V 1.1 in eigene Datei ausgelagert und das Alphabet komplettiert.
*/
#ifndef ZAHLEN_H
#define ZAHLEN_H
#include <avr/pgmspace.h>
//extern const char ziffern[][7] PROGMEM;
const char ziffern[][7] PROGMEM = {
{ // 0:0
0b00001110,
0b00010001,
0b00010011,
0b00010101,
0b00011001,
0b00010001,
0b00001110
}
,
{ // 1:1
0b00000100,
0b00001100,
0b00000100,
0b00000100,
0b00000100,
0b00000100,
0b00001110
}
,
{ // 2:2
0b00001110,
0b00010001,
0b00000001,
0b00000010,
0b00000100,
0b00001000,
0b00011111
}
,
{ // 3:3
0b00011111,
0b00000010,
0b00000100,
0b00000010,
0b00000001,
0b00010001,
0b00001110
}
,
{ // 4:4
0b00000010,
0b00000110,
0b00001010,
0b00010010,
0b00011111,
0b00000010,
0b00000010
}
,
{ // 5:5
0b00011111,
0b00010000,
0b00011110,
0b00000001,
0b00000001,
0b00010001,
0b00001110
}
,
{ // 6:6
0b00000110,
0b00001000,
0b00010000,
0b00011110,
0b00010001,
0b00010001,
0b00001110
}
,
{ // 7:7
0b00011111,
0b00000001,
0b00000010,
0b00000100,
0b00001000,
0b00001000,
0b00001000
}
,
{ // 8:8
0b00001110,
0b00010001,
0b00010001,
0b00001110,
0b00010001,
0b00010001,
0b00001110
}
,
{ // 9:9
0b00001110,
0b00010001,
0b00010001,
0b00001111,
0b00000001,
0b00000010,
0b00001100
}
};
//kleinere Zahlen f?r Eventzeitauswahl
const char ziffernB[][5] PROGMEM = {
{0x1e, 0x12, 0x12, 0x12, 0x1e},
{0x04, 0x0c, 0x04, 0x04, 0x0e},
{0x1e, 0x02, 0x1e, 0x10, 0x1e},
{0x1e, 0x02, 0x0e, 0x02, 0x1e},
{0x12, 0x12, 0x1e, 0x02, 0x02},
{0x1e, 0x10, 0x1e, 0x02, 0x1e},
{0x1e, 0x10, 0x1e, 0x12, 0x1e},
{0x1e, 0x02, 0x02, 0x02, 0x02},
{0x1e, 0x12, 0x1e, 0x12, 0x1e},
{0x1e, 0x12, 0x1e, 0x02, 0x1e}
};
#endif