-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathled.h
200 lines (119 loc) · 4.42 KB
/
led.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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#ifndef __led_h__
#define __led_h__
#include "../color/color.h"
#include "interrupt.h"
enum LED_MODE {
LED_RGB = 0x01,
LED_GRB = 0x02,
LED_WRGB = 0x09,
LED_WGRB = 0x0A,
};
enum LED_TYPE {
LED_BASIC = 0x10,
LED_ARRAY = 0x20,
LED_GRID = 0x30,
};
class led {
public:
////////////////////////////////////////////////////////////////////////////
// CONSTRUCTOR - PASS IN THE PIN FOR THE LEDS, AS WELL AS THE LED COUNT
////////////////////////////////////////////////////////////////////////////
INLINE led(uint8_t led_pin, uint16_t led_total, LED_MODE led_mode=LED_GRB) {
_pin = led_pin;
_total = led_total;
_mode = led_mode;
_type = LED_BASIC;
clock();
}
////////////////////////////////////////////////////////////////////////////
// RE-CALCULATE THE CURRENT CLOCK SPEED AND DELAYS
////////////////////////////////////////////////////////////////////////////
void clock();
////////////////////////////////////////////////////////////////////////////
// DRAW A SINGLE PIXEL TO THE LED STRIP - USING COLOR_T STRUCT
// NOTE: implemented differently for each board.
// This is the only unique method between implementations.
// See existing versions for an idea of how to port this to a new board.
////////////////////////////////////////////////////////////////////////////
void pixel(const color_t &color);
////////////////////////////////////////////////////////////////////////////
// DRAW A SINGLE PIXEL, SIMILAR TO ABOVE
////////////////////////////////////////////////////////////////////////////
INLINE void pixel(volatile const color_t &color) {
pixel(color_t(color));
}
////////////////////////////////////////////////////////////////////////////
// DRAW A SINGLE PIXEL TO THE LED STRIP - USING INDIVIDUAL R,G,B VALUES
////////////////////////////////////////////////////////////////////////////
INLINE void pixel(uint8_t r, uint8_t g, uint8_t b) {
pixel(color_t(r, g, b));
}
////////////////////////////////////////////////////////////////////////////
// CLEAR THE ENTIRE PIXEL ARRAY
////////////////////////////////////////////////////////////////////////////
void clear() {
begin();
for (uint16_t i=0; i<_total; i++) {
pixel(0, 0, 0);
}
end();
}
////////////////////////////////////////////////////////////////////////////
// INITIAL SETUP OF THE LED STRIP - CALL AT BEGINNING OF RENDER LOOP
////////////////////////////////////////////////////////////////////////////
INLINE void begin() {
intr_disable();
pinMode(_pin, OUTPUT);
}
////////////////////////////////////////////////////////////////////////////
// FINALIZE AND SHOW LED STRIP - CALL AT END OF RENDER LOOP
////////////////////////////////////////////////////////////////////////////
INLINE void end() {
digitalWrite(_pin, LOW);
intr_enable();
}
////////////////////////////////////////////////////////////////////////////
// GET THE PIN USED FOR THIS LED STRIP
////////////////////////////////////////////////////////////////////////////
INLINE uint8_t pin() const {
return _pin;
}
////////////////////////////////////////////////////////////////////////////
// GET THE NUMBER OF LEDS IN THIS STRIP
////////////////////////////////////////////////////////////////////////////
INLINE uint16_t total() const {
return _total;
}
////////////////////////////////////////////////////////////////////////////
// GET THE CURRENT LED STRIP MODE: RGB VS GRB DATA ORDER
////////////////////////////////////////////////////////////////////////////
INLINE LED_MODE mode() const {
return _mode;
}
////////////////////////////////////////////////////////////////////////////
// SET THE CURRENT LED STRIP MODE: RGB VS GRB DATA ORDER
////////////////////////////////////////////////////////////////////////////
INLINE LED_MODE mode(LED_MODE led_mode) {
LED_MODE mode = _mode;
_mode = led_mode;
return mode;
}
////////////////////////////////////////////////////////////////////////////
// GET THE CURRENT LED RENDERING TYPE
////////////////////////////////////////////////////////////////////////////
INLINE LED_TYPE type() {
return _type;
}
private:
uint8_t _pin;
LED_MODE _mode;
uint16_t _total;
#if defined(ARDUINO_ARCH_RP2040) || defined(ESP8266) || defined(ESP32)
uint32_t CYCLES_T0H;
uint32_t CYCLES_T1H;
uint32_t CYCLES;
#endif // defined(ARDUINO_ARCH_RP2040) || defined(ESP8266) || defined(ESP32)
protected:
LED_TYPE _type;
};
#endif //__led_h__