-
Notifications
You must be signed in to change notification settings - Fork 0
/
WS2812Serial.h
76 lines (68 loc) · 2.5 KB
/
WS2812Serial.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
/* WS2812Serial - Non-blocking WS2812 LED Display Library
https://github.com/PaulStoffregen/WS2812Serial
Copyright (c) 2017 Paul Stoffregen, PJRC.COM, LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
#ifndef WS2812Serial_h_
#define WS2812Serial_h_
#include <Arduino.h>
#include "DMAChannel.h"
#define WS2812_RGB 0 // The WS2811 datasheet documents this way
#define WS2812_RBG 1
#define WS2812_GRB 2 // Most LED strips are wired this way
#define WS2812_GBR 3
#define WS2812_BRG 4
#define WS2812_BGR 5
class WS2812Serial {
public:
constexpr WS2812Serial(uint16_t num, void *fb, void *db, uint8_t pin, uint8_t cfg) :
numled(num), pin(pin), config(cfg),
frameBuffer((uint8_t *)fb), drawBuffer((uint8_t *)db) {
}
bool begin();
void setPixel(uint32_t num, int color) {
if (num >= numled) return;
num *= 3;
drawBuffer[num+0] = color & 255;
drawBuffer[num+1] = (color >> 8) & 255;
drawBuffer[num+2] = (color >> 16) & 255;
}
void setPixel(uint32_t num, uint8_t red, uint8_t green, uint8_t blue) {
if (num >= numled) return;
num *= 3;
drawBuffer[num+0] = blue;
drawBuffer[num+1] = green;
drawBuffer[num+2] = red;
}
void clear() {
memset(drawBuffer, 0, numled * 3);
}
void show();
bool busy();
uint16_t numPixels() {
return numled;
}
private:
const uint16_t numled;
const uint8_t pin;
const uint8_t config;
uint8_t *frameBuffer;
uint8_t *drawBuffer;
DMAChannel *dma = nullptr;
uint32_t prior_micros = 0;
};
#endif