forked from russp81/LEDLAMP_FASTLEDs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Griswold-LED-Controller.ino
562 lines (473 loc) · 17.6 KB
/
Griswold-LED-Controller.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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
// Copyright (c) 2016 @jake-b, @russp81, @toblum
// Griswold LED Lighting Controller
// Griswold is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// Griswold is a fork of the LEDLAMP project at
// https://github.com/russp81/LEDLAMP_FASTLEDs
// The LEDLAMP project is a fork of the McLighting Project at
// https://github.com/toblum/McLighting
// ***************************************************************************
// Load libraries for: WebServer / WiFiManager / WebSockets
// ***************************************************************************
#include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
// needed for library WiFiManager
#include <DNSServer.h>
#include <ESP8266WebServer.h>
#include <WiFiManager.h> //https://github.com/tzapu/WiFiManager
#include <ArduinoOTA.h>
#include <ESP8266mDNS.h>
#include <FS.h>
#include <WiFiClient.h>
#include <Ticker.h>
#include "RemoteDebug.h" //https://github.com/JoaoLopesF/RemoteDebug
#include <WebSockets.h> //https://github.com/Links2004/arduinoWebSockets
#include <WebSocketsServer.h>
// ***************************************************************************
// Sub-modules of this application
// ***************************************************************************
#include "definitions.h"
#include "eepromsettings.h"
#include "palettes.h"
#include "colormodes.h"
// ***************************************************************************
// Instanciate HTTP(80) / WebSockets(81) Server
// ***************************************************************************
ESP8266WebServer server(80);
WebSocketsServer webSocket = WebSocketsServer(81);
// ***************************************************************************
// Load library "ticker" for blinking status led
// ***************************************************************************
Ticker ticker;
void tick() {
// toggle state
int state = digitalRead(BUILTIN_LED); // get the current state of GPIO1 pin
digitalWrite(BUILTIN_LED, !state); // set pin to the opposite state
}
// ***************************************************************************
// Callback for WiFiManager library when config mode is entered
// ***************************************************************************
// gets called when WiFiManager enters configuration mode
void configModeCallback(WiFiManager *myWiFiManager) {
DBG_OUTPUT_PORT.println("Entered config mode");
DBG_OUTPUT_PORT.println(WiFi.softAPIP());
// if you used auto generated SSID, print it
DBG_OUTPUT_PORT.println(myWiFiManager->getConfigPortalSSID());
// entered config mode, make led toggle faster
ticker.attach(0.2, tick);
}
// ***************************************************************************
// Include: Webserver & Request Handlers
// ***************************************************************************
#include "spiffs_webserver.h" // must be included after the 'server' object
#include "request_handlers.h" // is declared.
// ***************************************************************************
// MAIN
// ***************************************************************************
void setup() {
// Generate a pseduo-unique hostname
char hostname[strlen(HOSTNAME_PREFIX)+6];
uint16_t chipid = ESP.getChipId() & 0xFFFF;
sprintf(hostname, "%s-%04x",HOSTNAME_PREFIX, chipid);
#ifdef REMOTE_DEBUG
Debug.begin(hostname); // Initiaze the telnet server - hostname is the used
// in MDNS.begin
Debug.setResetCmdEnabled(true); // Enable the reset command
#endif
// ***************************************************************************
// Setup: EEPROM
// ***************************************************************************
initSettings(); // setting loaded from EEPROM or defaults if fail
printSettings();
///*** Random Seed***
randomSeed(analogRead(0));
//********color palette setup stuff****************
currentPalette = RainbowColors_p;
loadPaletteFromFile(settings.palette_ndx, &targetPalette);
currentBlending = LINEARBLEND;
//**************************************************
#ifndef REMOTE_DEBUG
DBG_OUTPUT_PORT.begin(115200);
#endif
DBG_OUTPUT_PORT.printf("system_get_cpu_freq: %d\n", system_get_cpu_freq());
// set builtin led pin as output
pinMode(BUILTIN_LED, OUTPUT);
// start ticker with 0.5 because we start in AP mode and try to connect
ticker.attach(0.6, tick);
// ***************************************************************************
// Setup: WiFiManager
// ***************************************************************************
// Local intialization. Once its business is done, there is no need to keep it
// around
WiFiManager wifiManager;
// reset settings - for testing
// wifiManager.resetSettings();
// set callback that gets called when connecting to previous WiFi fails, and
// enters Access Point mode
wifiManager.setAPCallback(configModeCallback);
// fetches ssid and pass and tries to connect
// if it does not connect it starts an access point with the specified name
// here "AutoConnectAP"
// and goes into a blocking loop awaiting configuration
if (!wifiManager.autoConnect(hostname)) {
DBG_OUTPUT_PORT.println("failed to connect and hit timeout");
// reset and try again, or maybe put it to deep sleep
ESP.reset();
delay(1000);
}
// if you get here you have connected to the WiFi
DBG_OUTPUT_PORT.println("connected...yeey :)");
ticker.detach();
// keep LED on
digitalWrite(BUILTIN_LED, LOW);
// ***************************************************************************
// Setup: WiFiManager
// ***************************************************************************
ArduinoOTA.setHostname(hostname);
ArduinoOTA.onStart([]() {
String type;
if (ArduinoOTA.getCommand() == U_FLASH)
type = "sketch";
else
type = "filesystem";
SPIFFS.end(); // unmount SPIFFS for update.
DBG_OUTPUT_PORT.println("Start updating " + type);
});
ArduinoOTA.onEnd([]() {
DBG_OUTPUT_PORT.println("\nEnd... remounting SPIFFS");
SPIFFS.begin();
paletteCount = getPaletteCount();
});
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
DBG_OUTPUT_PORT.printf("Progress: %u%%\r", (progress / (total / 100)));
});
ArduinoOTA.onError([](ota_error_t error) {
DBG_OUTPUT_PORT.printf("Error[%u]: ", error);
if (error == OTA_AUTH_ERROR)
DBG_OUTPUT_PORT.println("Auth Failed");
else if (error == OTA_BEGIN_ERROR)
DBG_OUTPUT_PORT.println("Begin Failed");
else if (error == OTA_CONNECT_ERROR)
DBG_OUTPUT_PORT.println("Connect Failed");
else if (error == OTA_RECEIVE_ERROR)
DBG_OUTPUT_PORT.println("Receive Failed");
else if (error == OTA_END_ERROR)
DBG_OUTPUT_PORT.println("End Failed");
});
ArduinoOTA.begin();
DBG_OUTPUT_PORT.println("OTA Ready");
DBG_OUTPUT_PORT.print("IP address: ");
DBG_OUTPUT_PORT.println(WiFi.localIP());
// ***************************************************************************
// Setup: FASTLED
// ***************************************************************************
delay(3000); // 3 second delay for recovery
// tell FastLED about the LED strip configuration
FastLED.addLeds<LED_TYPE, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS)
.setCorrection(TypicalLEDStrip);
// FastLED.addLeds<LED_TYPE,DATA_PIN,CLK_PIN,COLOR_ORDER>(leds,
// NUM_LEDS).setCorrection(TypicalLEDStrip);
// set master brightness control
FastLED.setBrightness(settings.overall_brightness);
// ***************************************************************************
// Setup: MDNS responder
// ***************************************************************************
MDNS.begin(hostname);
DBG_OUTPUT_PORT.print("Open http://");
DBG_OUTPUT_PORT.print(hostname);
DBG_OUTPUT_PORT.println(".local/edit to see the file browser");
// ***************************************************************************
// Setup: WebSocket server
// ***************************************************************************
webSocket.begin();
webSocket.onEvent(webSocketEvent);
// ***************************************************************************
// Setup: SPIFFS
// ***************************************************************************
SPIFFS.begin();
{
Dir dir = SPIFFS.openDir("/");
while (dir.next()) {
String fileName = dir.fileName();
size_t fileSize = dir.fileSize();
DBG_OUTPUT_PORT.printf("FS File: %s, size: %s\n", fileName.c_str(),
formatBytes(fileSize).c_str());
}
DBG_OUTPUT_PORT.printf("\n");
}
// ***************************************************************************
// Setup: SPIFFS Webserver handler
// ***************************************************************************
// list directory
server.on("/list", HTTP_GET, handleFileList);
// load editor
server.on("/edit", HTTP_GET, []() {
if (!handleFileRead("/edit.htm"))
server.send(404, "text/plain", "FileNotFound");
});
// create file
server.on("/edit", HTTP_PUT, handleFileCreate);
// delete file
server.on("/edit", HTTP_DELETE, handleFileDelete);
// first callback is called after the request has ended with all parsed
// arguments
// second callback handles file uploads at that location
server.on("/edit", HTTP_POST, []() { server.send(200, "text/plain", ""); },
handleFileUpload);
// get heap status, analog input value and all GPIO statuses in one json call
server.on("/esp_status", HTTP_GET, []() {
String json = "{";
json += "\"heap\":" + String(ESP.getFreeHeap());
json += ", \"analog\":" + String(analogRead(A0));
json += ", \"gpio\":" +
String((uint32_t)(((GPI | GPO) & 0xFFFF) | ((GP16I & 0x01) << 16)));
json += "}";
server.send(200, "text/json", json);
json = String();
});
// called when the url is not defined here
// use it to load content from SPIFFS
server.onNotFound([]() {
if (!handleFileRead(server.uri())) handleNotFound();
});
server.on("/upload", handleMinimalUpload);
server.on("/restart", []() {
DBG_OUTPUT_PORT.printf("/restart:\n");
server.send(200, "text/plain", "restarting...");
ESP.restart();
});
server.on("/reset_wlan", []() {
DBG_OUTPUT_PORT.printf("/reset_wlan:\n");
server.send(200, "text/plain", "Resetting WLAN and restarting...");
WiFiManager wifiManager;
wifiManager.resetSettings();
ESP.restart();
});
// ***************************************************************************
// Setup: SPIFFS Webserver handler
// ***************************************************************************
server.on("/set_brightness", []() {
if (server.arg("c").toInt() > 0) {
settings.overall_brightness = (int)server.arg("c").toInt() * 2.55;
} else {
settings.overall_brightness = server.arg("p").toInt();
}
if (settings.overall_brightness > 255) {
settings.overall_brightness = 255;
}
if (settings.overall_brightness < 0) {
settings.overall_brightness = 0;
}
FastLED.setBrightness(settings.overall_brightness);
if (settings.mode == HOLD) {
settings.mode = ALL;
}
getStatusJSON();
});
server.on("/get_brightness", []() {
String str_brightness = String((int)(settings.overall_brightness / 2.55));
server.send(200, "text/plain", str_brightness);
DBG_OUTPUT_PORT.print("/get_brightness: ");
DBG_OUTPUT_PORT.println(str_brightness);
});
server.on("/get_switch", []() {
server.send(200, "text/plain", (settings.mode == OFF) ? "0" : "1");
DBG_OUTPUT_PORT.printf("/get_switch: %s\n",
(settings.mode == OFF) ? "0" : "1");
});
server.on("/get_color", []() {
String rgbcolor = String(settings.main_color.red, HEX) +
String(settings.main_color.green, HEX) +
String(settings.main_color.blue, HEX);
server.send(200, "text/plain", rgbcolor);
DBG_OUTPUT_PORT.print("/get_color: ");
DBG_OUTPUT_PORT.println(rgbcolor);
});
server.on("/status", []() { getStatusJSON(); });
server.on("/off", []() {
//exit_func = true;
settings.mode = OFF;
getArgs();
getStatusJSON();
});
server.on("/all", []() {
//exit_func = true;
settings.mode = ALL;
getArgs();
getStatusJSON();
});
server.on("/rainbow", []() {
//exit_func = true;
settings.mode = RAINBOW;
getArgs();
getStatusJSON();
});
server.on("/confetti", []() {
//exit_func = true;
settings.mode = CONFETTI;
getArgs();
getStatusJSON();
});
server.on("/sinelon", []() {
//exit_func = true;
settings.mode = SINELON;
getArgs();
getStatusJSON();
});
server.on("/juggle", []() {
//exit_func = true;
settings.mode = JUGGLE;
getArgs();
getStatusJSON();
});
server.on("/bpm", []() {
//exit_func = true;
settings.mode = BPM;
getArgs();
getStatusJSON();
});
server.on("/ripple", []() {
//exit_func = true;
settings.mode = RIPPLE;
getArgs();
getStatusJSON();
});
server.on("/comet", []() {
//exit_func = true;
settings.mode = COMET;
getArgs();
getStatusJSON();
});
server.on("/wipe", []() {
settings.mode = WIPE;
getArgs();
getStatusJSON();
});
server.on("/tv", []() {
settings.mode = TV;
getArgs();
getStatusJSON();
});
server.on("/palette_anims", []() {
settings.mode = PALETTE_ANIMS;
if (server.arg("p") != "") {
uint8_t pal = (uint8_t) strtol(server.arg("p").c_str(), NULL, 10);
if (pal > paletteCount)
pal = paletteCount;
settings.palette_ndx = pal;
loadPaletteFromFile(settings.palette_ndx, &targetPalette);
currentPalette = targetPalette; //PaletteCollection[settings.palette_ndx];
DBG_OUTPUT_PORT.printf("Palette is: %d", pal);
}
getStatusJSON();
});
server.begin();
paletteCount = getPaletteCount();
}
void loop() {
EVERY_N_MILLISECONDS(int(float(1000 / settings.fps))) {
gHue++; // slowly cycle the "base color" through the rainbow
}
// Simple statemachine that handles the different modes
switch (settings.mode) {
default:
case OFF:
fill_solid(leds, NUM_LEDS, CRGB(0,0,0));
break;
case ALL:
fill_solid(leds, NUM_LEDS, CRGB(settings.main_color.red, settings.main_color.green,
settings.main_color.blue));
break;
case MIXEDSHOW:
{
gPatterns[gCurrentPatternNumber]();
// send the 'leds' array out to the actual LED strip
int showlength_Millis = settings.show_length * 1000;
// DBG_OUTPUT_PORT.println("showlengthmillis = " +
// String(showlength_Millis));
if (((millis()) - (lastMillis)) >= showlength_Millis) {
nextPattern();
DBG_OUTPUT_PORT.println( "void nextPattern was called at " + String(millis()) +
" and the current show length set to " + String(showlength_Millis));
}
}
break;
case RAINBOW:
rainbow();
break;
case CONFETTI:
confetti();
break;
case SINELON:
sinelon();
break;
case JUGGLE:
juggle();
break;
case BPM:
bpm();
break;
case PALETTE_ANIMS:
palette_anims();
break;
case RIPPLE:
ripple();
break;
case COMET:
comet();
break;
case THEATERCHASE:
theaterChase();
break;
case WIPE:
colorWipe();
break;
case TV:
tv();
break;
}
// Add glitter if necessary
if (settings.glitter_on == true) {
addGlitter(settings.glitter_density);
}
// Get the current time
unsigned long continueTime = millis() + int(float(1000 / settings.fps));
// Do our main loop functions, until we hit our wait time
do {
//long int now = micros();
FastLED.show(); // Display whats rendered.
//long int later = micros();
//DBG_OUTPUT_PORT.printf("Show time is %ld\n", later-now);
server.handleClient(); // Handle requests to the web server
webSocket.loop(); // Handle websocket traffic
ArduinoOTA.handle(); // Handle OTA requests.
#ifdef REMOTE_DEBUG
Debug.handle(); // Handle telent server
#endif
yield(); // Yield for ESP8266 stuff
if (WiFi.status() != WL_CONNECTED) {
// Blink the LED quickly to indicate WiFi connection lost.
EVERY_N_MILLISECONDS(250) {
int state = digitalRead(BUILTIN_LED); // get the current state of GPIO1 pin
digitalWrite(BUILTIN_LED, !state);
}
} else {
// Light on-steady indicating WiFi is connected.
digitalWrite(BUILTIN_LED, false);
}
} while (millis() < continueTime);
}
void nextPattern() {
// add one to the current pattern number, and wrap around at the end
// gCurrentPatternNumber = (gCurrentPatternNumber + random(0,
// ARRAY_SIZE(gPatterns))) % ARRAY_SIZE( gPatterns);
gCurrentPatternNumber = random(0, ARRAY_SIZE(gPatterns));
lastMillis = millis();
}