-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLED.ino
505 lines (414 loc) · 11.4 KB
/
LED.ino
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
/* *****************************************************************
*
* Smart Light Strip
*
* *****************************************************************/
/*******************************CONFIG******************************/
#define PIN D8 // arduino control pin
#define NUMPIXELS 30 // light numbers
char auth[] = "";
char ssid[] = "Redmi_4ECD"; // wifi ssid/name
char pswd[] = ""; // wifi password
/* *****************************************************************/
#define BLINKER_WIFI
#define BLINKER_MIOT_LIGHT
#include <Adafruit_NeoPixel.h>
#include <ArduinoJson.h>
#include <Blinker.h>
#ifdef __AVR__
#include <avr/power.h>
#endif
#define ON "on"
#define OFF "off"
#define SWITCH "switch"
#define COLORWHEEL "colorWheel"
#define BRIGHTNESS "brightness"
#define RGB_1 "colorWheel"
Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
BlinkerButton Switch("btn-switch"); // 灯带开关
BlinkerSlider Slider1("brightness"); // 亮度滑条
BlinkerRGB WS2812(RGB_1); // 颜色亮度
int color[4] = {255, 255, 255, 255}; // RGBW note: W is brightness in ws2812B.
bool wsState = true; // ligth state
uint8_t wsMode = BLINKER_CMD_MIOT_DAY; // light mode
uint8_t colorR = 255, colorG = 255, colorB = 255, colorW = 255;
uint32_t color32;
/**
* 开关控制回调函数
*/
void button1_callback(const String &state)
{
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("get button state: ", state);
if (state == ON)
{
Switch.print(ON);
digitalWrite(LED_BUILTIN, LOW);
lightSwitch(ON);
digitalWrite(5, HIGH);
wsState = true;
}
else if (state == OFF)
{
Switch.print(OFF);
digitalWrite(LED_BUILTIN, HIGH);
lightSwitch(OFF);
digitalWrite(5, LOW);
wsState = false;
}
}
/**
* 亮度控制回调函数
*/
void slider1_callback(const int32_t value)
{
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("get slider value: ", value);
colorW = value * 2.55;
BLINKER_LOG("color: ", colorW);
colorW = colorW > 5 ? colorW : 5;
pixelShow();
WS2812.print(colorR, colorG, colorB, colorW);
}
/**
* 灯带回调函数
*/
void ws2812_callback(uint8_t r_value, uint8_t g_value, uint8_t b_value, uint8_t bright_value)
{
BLINKER_LOG("----------------------------------------------------------------");
digitalWrite(LED_BUILTIN, !digitalRead(LED_BUILTIN));
BLINKER_LOG("R value: ", r_value);
BLINKER_LOG("G value: ", g_value);
BLINKER_LOG("B value: ", b_value);
BLINKER_LOG("Rrightness value: ", bright_value);
colorR = r_value;
colorG = g_value;
colorB = b_value;
colorW = bright_value > 5 ? bright_value : 5;
pixelShow();
Slider1.print((int)(colorW / 2.55));
}
/**
* Blinker数据解析
*/
void parseJson(const String &json, String &key, String &value)
{
DynamicJsonDocument doc(200);
DeserializationError err = deserializeJson(doc, json);
if (err)
{
BLINKER_LOG("parse json error.");
BLINKER_LOG(err.f_str());
key = "error";
return;
}
JsonObject obj = doc.as<JsonObject>();
for (JsonPair p : obj)
{
key = p.key().c_str();
if (key == SWITCH)
{
value = p.value().as<char *>();
}
else if (key == COLORWHEEL)
{
JsonArray arr = p.value().as<JsonArray>();
int i = 0;
for (JsonVariant v : arr)
{
color[i++] = v.as<int>();
}
colorR = color[0];
colorG = color[1];
colorB = color[2];
colorW = color[3];
}
else if (key == BRIGHTNESS)
{
colorW = p.value().as<int>() * 255 / 100;
BLINKER_LOG("brightness:", colorW);
}
return;
}
}
/**
* 开关控制
*/
void lightSwitch(const String &state)
{
// BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("light stat:", state);
if (state == ON)
{
pixelShow();
}
else if (state == OFF)
{
pixels.clear();
// after emptying the lights, you need to use the show function to update
pixels.show();
}
}
/**
* 颜色更新
*/
void pixelShow()
{
BLINKER_LOG("pixelShow wsState: ", wsState);
if (wsState)
{
BLINKER_LOG("COLOR:", colorR, " ", colorG, " ", colorB, " BRIGHTNESS:", colorW);
pixels.setBrightness(colorW);
for (int i = 0; i < NUMPIXELS; i++)
{
// GRB
pixels.setPixelColor(i, pixels.Color(colorR, colorG, colorB));
}
pixels.show();
}
else
{
BLINKER_LOG("wsState: ", wsState);
pixels.clear();
// after emptying the lights, you need to use the show function to update
pixels.show();
}
}
uint32_t getColor()
{
return colorR << 16 | colorG << 8 | colorB;
}
/* *****************************************************************
*
* MIOT 回调函数
*
* *****************************************************************/
void miotPowerState(const String &state)
{
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("need set power state: ", state);
if (state == BLINKER_CMD_ON)
{
digitalWrite(LED_BUILTIN, LOW);
Switch.print(ON);
BlinkerMIOT.powerState(ON);
BlinkerMIOT.print();
wsState = true;
if (colorW == 0)
colorW = 255;
lightSwitch(ON);
}
else if (state == BLINKER_CMD_OFF)
{
digitalWrite(LED_BUILTIN, HIGH);
Switch.print(OFF);
BlinkerMIOT.powerState(OFF);
BlinkerMIOT.print();
wsState = false;
colorW = 0;
lightSwitch(OFF);
}
}
/**
* 颜色回调函数
*/
void miotColor(int32_t color)
{
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("need set color: ", color);
colorR = color >> 16 & 0xFF;
colorG = color >> 8 & 0xFF;
colorB = color & 0xFF;
BLINKER_LOG("colorR: ", colorR, ", colorG: ", colorG, ", colorB: ", colorB);
pixelShow();
WS2812.print(colorR, colorG, colorB, colorW);
BlinkerMIOT.color(color);
BlinkerMIOT.print();
}
/**
* 模式回调函数
*/
void miotMode(uint8_t mode)
{
BLINKER_LOG("need set mode: ", mode);
if (mode == BLINKER_CMD_MIOT_DAY)
{
// Your mode function
}
else if (mode == BLINKER_CMD_MIOT_NIGHT)
{
// Your mode function
}
else if (mode == BLINKER_CMD_MIOT_COLOR)
{
// Your mode function
}
else if (mode == BLINKER_CMD_MIOT_WARMTH)
{
// Your mode function
}
else if (mode == BLINKER_CMD_MIOT_TV)
{
// Your mode function
}
else if (mode == BLINKER_CMD_MIOT_READING)
{
// Your mode function
}
else if (mode == BLINKER_CMD_MIOT_COMPUTER)
{
// Your mode function
}
wsMode = mode;
BlinkerMIOT.mode(mode);
BlinkerMIOT.print();
}
/**
* 亮度回调函数 1-100
*/
void miotBright(const String &bright)
{
int brightTmp;
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("need set brightness: ", bright);
// update ligth strip
brightTmp = bright.toInt();
// prevent the brightness from being too low
brightTmp = brightTmp > 5 ? brightTmp : 5;
colorW = (int)(brightTmp * 2.55);
pixelShow();
// update app layout
Slider1.print(brightTmp);
WS2812.print(colorR, colorG, colorB, colorW);
BLINKER_LOG("now set brightness: ", brightTmp);
BlinkerMIOT.brightness(brightTmp);
BlinkerMIOT.print();
}
/**
* 色温控制回调函数 1000-10000
*/
void miotColorTemp(int32_t colorTemp)
{
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("need set colorTemperature: ", colorTemp);
int32_t colorT = colorTemp;
BlinkerMIOT.colorTemp(colorTemp);
BlinkerMIOT.print();
}
/**
* 设备查询接口
*/
void miotQuery(int32_t queryCode)
{
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("MIOT Query codes: ", queryCode);
switch (queryCode)
{
case BLINKER_CMD_QUERY_ALL_NUMBER: // 0
BlinkerMIOT.powerState(wsState ? ON : OFF);
BlinkerMIOT.color(getColor());
BlinkerMIOT.mode(wsMode);
BlinkerMIOT.brightness(colorW);
break;
case BLINKER_CMD_QUERY_POWERSTATE_NUMBER: // 1
BlinkerMIOT.powerState(wsState ? ON : OFF);
break;
case BLINKER_CMD_QUERY_COLOR_NUMBER: // 2
BlinkerMIOT.color(getColor());
break;
case BLINKER_CMD_QUERY_MODE_NUMBER: // 3
BlinkerMIOT.mode(wsMode);
break;
case BLINKER_CMD_QUERY_COLORTEMP_NUMBER: // 4
break;
case BLINKER_CMD_QUERY_BRIGHTNESS_NUMBER: // 5
BlinkerMIOT.brightness(colorW);
break;
default:
BLINKER_LOG("queryCode error: ", queryCode);
break;
}
BlinkerMIOT.print();
}
/**
* APP数据读取
*/
void dataRead(const String &data)
{
String key;
String value;
BLINKER_LOG("----------------------------------------------------------------");
BLINKER_LOG("Blinker readString: ", data);
parseJson(data, key, value);
BLINKER_LOG("key : ", key);
BLINKER_LOG("value: ", value);
if (key == "error")
{
BLINKER_LOG("processing error.");
return;
}
if (key == COLORWHEEL)
{
colorW = colorW > 5 ? colorW : 5;
lightSwitch(ON);
Slider1.print((int)(colorW / 2.55));
}
else if (key == BRIGHTNESS)
{
BLINKER_LOG("brightness2: ", colorW);
pixels.setBrightness(colorW);
pixels.show();
WS2812.print(colorR, colorG, colorB, colorW);
}
}
void heartbeat()
{
BLINKER_LOG("################################################################");
Switch.print(wsState ? ON : OFF);
Slider1.print((int)(colorW / 2.55));
WS2812.print(colorR, colorG, colorB, colorW);
}
void setup()
{
/* 默认端口 BLE RX-3 TX-2 */
Serial.begin(9600);
BLINKER_DEBUG.stream(Serial);
BLINKER_DEBUG.debugAll();
BLINKER_LOG("pixels config");
pixels.begin();
// pixels.setBrightness(colorW);
// pixels.show();
// pixelShow();
BLINKER_LOG("build in led config");
pinMode(LED_BUILTIN, OUTPUT);
digitalWrite(LED_BUILTIN, HIGH);
// pinMode(5, OUTPUT);
// digitalWrite(5, HIGH);
// config wifi
BLINKER_LOG("config wifi");
Blinker.begin(auth, ssid, pswd);
Blinker.attachData(dataRead);
Blinker.attachHeartbeat(heartbeat);
// register MIOT feedback function
BlinkerMIOT.attachPowerState(miotPowerState);
BlinkerMIOT.attachColor(miotColor);
BlinkerMIOT.attachMode(miotMode);
BlinkerMIOT.attachBrightness(miotBright);
BlinkerMIOT.attachColorTemperature(miotColorTemp);
BlinkerMIOT.attachQuery(miotQuery);
// bind UI callback function
Switch.attach(button1_callback);
WS2812.attach(ws2812_callback);
Slider1.attach(slider1_callback);
// initialize the UI state
Switch.print(ON);
WS2812.print(colorR, colorG, colorB, colorW);
Slider1.print((int)(colorW / 2.55));
}
void loop()
{
Blinker.run();
#if defined(__AVR__ATtiny85__) && (F_CPU == 16000000)
clock_prescale_set(clock_div_1);
#endif
}