-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFastLEDLight.h
191 lines (130 loc) · 2.87 KB
/
FastLEDLight.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
#ifndef _FASTLEDLIGHT_H_
#define _FASTLEDLIGHT_H_
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
#include <LEDLine.h>
typedef void (*EventOnEffectChanged)(void);
class FastLEDLight
{
protected:
LEDLine* ledLine;
MillisTimer effectsTicker;
EventOnEffectChanged onNextEffect = nullptr;
public:
FastLEDLight(LEDLine* ledLine, uint16_t effectDuration = 60);
static void setup(uint8_t startBrightness = 255);
static uint8_t getBrightness();
static void setBrightness(uint8_t newBrightness);
static void adjustBrightness(int8_t delta);
static void show();
static void clear();
void setEventOnEffectChanged(EventOnEffectChanged onNextEffect);
bool process();
virtual void powerON();
virtual void powerOFF();
bool isON() const;
bool isOFF() const;
LedEffectName getEffectName() const;
LedEffectName const* getEffectsList() const;
uint8_t getEffectsCount() const;
void setEffectByName(const char* data);
void nextEffect();
void holdEffect();
};
FastLEDLight::FastLEDLight(LEDLine* ledLine, uint16_t effectDuration)
: ledLine(ledLine), effectsTicker(effectDuration* MillisTimer::CLOCKS_IN_SEC)
{
}
void FastLEDLight::setup(uint8_t startBrightness)
{
FastLED.setBrightness(startBrightness);
FastLED.clear(true);
}
uint8_t FastLEDLight::getBrightness()
{
return FastLED.getBrightness();
}
void FastLEDLight::setBrightness(uint8_t newBrightness)
{
FastLED.setBrightness(newBrightness);
}
void FastLEDLight::adjustBrightness(int8_t delta)
{
FastLED.setBrightness(FastLED.getBrightness() + delta);
}
void FastLEDLight::show()
{
FastLED.show();
}
void FastLEDLight::clear()
{
FastLED.clear(true);
}
void FastLEDLight::setEventOnEffectChanged(EventOnEffectChanged onNextEffect)
{
this->onNextEffect = onNextEffect;
}
bool FastLEDLight::process()
{
if (effectsTicker.isReady())
{
nextEffect();
if (onNextEffect != nullptr)
onNextEffect();
}
return ledLine->refresh();
}
void FastLEDLight::powerON()
{
effectsTicker.start();
ledLine->setEffectByIdx(0);
ledLine->turnOn();
}
void FastLEDLight::powerOFF()
{
effectsTicker.stop();
ledLine->turnOff();
}
inline bool FastLEDLight::isON() const
{
return ledLine->isOn();
}
inline bool FastLEDLight::isOFF() const
{
return !ledLine->isOn();
}
LedEffectName FastLEDLight::getEffectName() const
{
return ledLine->getEffectName();
}
LedEffectName const* FastLEDLight::getEffectsList() const
{
return ledLine->getAllEffectsNames();
}
uint8_t FastLEDLight::getEffectsCount() const
{
return ledLine->howManyEffects();
}
void FastLEDLight::setEffectByName(const char* data)
{
if (isOFF()) return;
if (ledLine->setEffectByName(data))
{
effectsTicker.stop();
}
}
void FastLEDLight::nextEffect()
{
if (isOFF()) return;
effectsTicker.reset();
ledLine->setNextEffect();
}
void FastLEDLight::holdEffect()
{
if (isOFF()) return;
effectsTicker.stop();
}
#endif