-
Notifications
You must be signed in to change notification settings - Fork 0
/
LedDriverUeberPixel.cpp
180 lines (163 loc) · 4.4 KB
/
LedDriverUeberPixel.cpp
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/**
* LedDriverUeberPixel.cpp
* Implementierung auf der Basis von 4 MAX7219 wie es der Ueberpixel verwendet.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 1.2
* @created 18.1.2013
* @updated 18.8.2013
*
* Versionshistorie:
* V 1.0: - Erstellt.
* V 1.1: - printSignature() eingefuehrt.
* - Bennenung verbessert.
* V 1.2: - Anpassung auf Helligkeit 0-100%
*/
#include "LedDriverUeberPixel.h"
// #define DEBUG
#include "Debug.h"
/**
* Initialisierung.
*
* @param data Pin, an dem die Data-Line haengt.
* @param clock Pin, an dem die Clock-Line haengt.
* @param latch Pin, an dem die Latch-Line haengt.
*/
LedDriverUeberPixel::LedDriverUeberPixel(byte data, byte clock, byte load) {
_ledControl = new LedControl(data, clock, load, 4);
}
/**
* init() wird im Hauptprogramm in init() aufgerufen.
* Hier sollten die LED-Treiber in eine definierten
* Ausgangszustand gebracht werden.
*/
void LedDriverUeberPixel::init() {
setBrightness(100);
wakeUp();
_ledControl->setLed(0, 6, 5, true); // 1
delay(250);
_ledControl->setLed(1, 5, 5, true); // 2
delay(250);
_ledControl->setLed(2, 6, 5, true); // 3
delay(250);
_ledControl->setLed(3, 5, 5, true); // 4
delay(250);
}
void LedDriverUeberPixel::printSignature() {
Serial.println(F("UeberPixel - MAX7219"));
}
/**
* Den Bildschirm-Puffer auf die LED-Matrix schreiben.
*
* @param onChange: TRUE, wenn es Aenderungen in dem Bildschirm-Puffer gab,
* FALSE, wenn es ein Refresh-Aufruf war.
*/
void LedDriverUeberPixel::writeScreenBufferToMatrix(word matrix[16], boolean onChange) {
if(onChange) {
for(byte y=0; y<16; y++) {
for(byte x=0; x<16; x++) {
word t = 1 << x;
if((matrix[y] & t) == t) {
setPixel(15-x, y, true);
} else {
setPixel(15-x, y, false);
}
}
}
// wir muessen die Eck-LEDs umsetzten...
if((matrix[1] & 0b0000000000011111) == 0b0000000000011111) {
_ledControl->setLed(0, 6, 5, true); // 1
} else {
_ledControl->setLed(0, 6, 5, false); // 1
}
if((matrix[0] & 0b0000000000011111) == 0b0000000000011111) {
_ledControl->setLed(1, 5, 5, true); // 2
} else {
_ledControl->setLed(1, 5, 5, false); // 2
}
if((matrix[3] & 0b0000000000011111) == 0b0000000000011111) {
_ledControl->setLed(2, 6, 5, true); // 3
} else {
_ledControl->setLed(2, 6, 5, false); // 3
}
if((matrix[2] & 0b0000000000011111) == 0b0000000000011111) {
_ledControl->setLed(3, 5, 5, true); // 4
} else {
_ledControl->setLed(3, 5, 5, false); // 4
}
}
}
/**
* Die Helligkeit des Displays anpassen.
*
* @param brightnessInPercent Die Helligkeit.
*/
void LedDriverUeberPixel::setBrightness(unsigned int brightnessInPercent) {
if(_brightness != brightnessInPercent) {
_brightness = brightnessInPercent;
DEBUG_PRINT(F("MAX7219: Brightness: "));
DEBUG_PRINTLN(_brightness);
DEBUG_FLUSH();
byte val = map(_brightness, 0, 100, 1, 15);
DEBUG_PRINT(F(" val: "));
DEBUG_PRINTLN(val);
DEBUG_FLUSH();
for(byte i = 0; i < 4; i++) {
_ledControl->setIntensity(i, val);
}
}
}
/**
* Anpassung der Groesse des Bildspeichers.
*
* @param linesToWrite Wieviel Zeilen aus dem Bildspeicher sollen
* geschrieben werden?
*/
void LedDriverUeberPixel::setLinesToWrite(byte linesToWrite) {
}
/**
* Das Display ausschalten.
*/
void LedDriverUeberPixel::shutDown() {
for(byte i = 0; i < 4; i++) {
_ledControl->shutdown(i, true);
}
}
/**
* Das Display einschalten.
*/
void LedDriverUeberPixel::wakeUp() {
for(byte i = 0; i < 4; i++) {
_ledControl->shutdown(i, false);
}
}
/**
* Den Dateninhalt des LED-Treibers loeschen.
*/
void LedDriverUeberPixel::clearData() {
for(byte i = 0; i < 4; i++) {
_ledControl->clearDisplay(i);
}
}
/**
* Einen X/Y-koordinierten Pixel in der Matrix setzen.
*/
void LedDriverUeberPixel::setPixel(byte x, byte y, boolean state) {
// 1. MAX7219
if((x < 6) && (y < 5)) {
_ledControl->setLed(0, x, y, state);
}
// 2. MAX7219
if((x < 6) && (y > 4) && (y < 10)) {
_ledControl->setLed(2, x, y-5, state);
}
// 3. MAX7219
if((x > 5) && (x < 11) && (y < 5)) {
_ledControl->setLed(1, x-6, y, state);
}
// 4. MAX7219
if((x > 5) && (x < 11) && (y > 4) && (y < 10)) {
_ledControl->setLed(3, x-6, y-5, state);
}
}