-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfastledServer.ino
382 lines (334 loc) · 9.99 KB
/
fastledServer.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
/*********
Twofingerrightclick
Complete project details at
*********/
#define FASTLED_ESP8266_NODEMCU_PIN_ORDER //always first
#include <Arduino.h>
// Load Wi-Fi library
#include <ESP8266WiFi.h>
#include <ESP8266WiFiMulti.h>
#include <ArduinoJson.h>
#include <ESPAsyncWebServer.h>
#include <FastLED.h>
#include "AsyncJson.h"
#include <FS.h> // Include the SPIFFS library
#define STRIP_RGB_ORDER BRG
#define NUM_LEDS 50
#define LED_PIN 1
CRGB _Leds[NUM_LEDS];
// variables that can be set via the web page
uint8_t _brightness = 100;
uint8_t _GradientStep = 255 / NUM_LEDS;
uint_fast16_t _speed = 200;
uint8_t _numberOfLedsPerPaletteColor = 5;
uint8_t _currentMode = 0;
CRGBPalette16 _CurrentPalette;
uint8_t _wifiCheckInterval = 200; // seconds
String _lastErrorMessage = "no error logged";
//define functions that need to be defined prior to use for compiling
void fillLEDsFromPaletteColors(uint8_t startingIndex = 0);
void initializeWifi(ESP8266WiFiMulti wifiMulti);
// Mode is probably a bad term, as it includes server request "events" as well
// like speed_ which just sets the speed of animation
enum Mode
{
none_,
solidColor_,
brightness_,
gradient_,
rainbow_,
flowPalette_,
breathePalette_,
speed_,
gradientStep_,
numLedsPerPaletteColor_
};
ESP8266WiFiMulti WifiMulti;
// Set web server port number to 80
AsyncWebServer server(80);
void setup()
{
Serial.begin(115200);
delay(20);
FastLED.addLeds<WS2811, LED_PIN, STRIP_RGB_ORDER>(_Leds, NUM_LEDS);
FastLED.setBrightness(_brightness);
FastLED.setCorrection(TypicalPixelString);
_CurrentPalette = RainbowColors_p;
_currentMode = Mode::none_;
// Initialize SPIFFS
if (!SPIFFS.begin())
{
_lastErrorMessage = "An Error has occurred while mounting SPIFFS";
Serial.println(_lastErrorMessage);
}
// ---- Connect to Wi-Fi network with SSID and password
WiFi.mode(WIFI_STA); // client only
initializeWifi(WifiMulti);
Serial.print("Connected to ");
Serial.println(WiFi.SSID());
//show on the _Leds the host portion of the IP i.e. 192.168.0.<#red><#green><#blue>)
showHostId(WiFi.localIP());
//------- end wifi
// ----- server
// Handle CORS
DefaultHeaders::Instance().addHeader("Access-Control-Allow-Origin", "*");
DefaultHeaders::Instance().addHeader("Access-Control-Allow-Headers", "Content-Type");
//when accessing the post end point the browser will do a preflight check with an HTTP OPTIONS call to check for the Access-Control-Allow-Orgin headers
server.on("/post", HTTP_OPTIONS, [](AsyncWebServerRequest *request)
{ request->send(200); });
server.on("/hello", HTTP_GET, [](AsyncWebServerRequest *request)
{
Serial.println("hello request");
request->send(200, "text/plain", "Hello World");
});
server.on("/error", HTTP_GET, [](AsyncWebServerRequest *request)
{ request->send(200, "text/plain", _lastErrorMessage); });
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request)
{
String path = "/index.html";
if (SPIFFS.exists(path))
{
request->send(SPIFFS, "/index.html", String(), false);
}
else
{
request->send(200, "text/plain", "error - index.html not found");
}
});
server.on("/favicon", HTTP_GET, [](AsyncWebServerRequest *request)
{
String path = "/favicon.ico";
if (SPIFFS.exists(path))
{
request->send(SPIFFS, "/favicon.ico", "image/x-icon");
}
else
{
request->send(200, "text/plain", "error - index.html not found");
}
});
AsyncCallbackJsonWebHandler *jsonPostHandler =
new AsyncCallbackJsonWebHandler(
"/post", [](AsyncWebServerRequest *request, JsonVariant &json)
{
Serial.println("json post request");
StaticJsonDocument<800> root;
root = json.as<JsonObject>();
if (json.is<JsonArray>())
{
root = json.as<JsonArray>();
}
else if (json.is<JsonObject>())
{
root = json.as<JsonObject>();
}
uint8_t data_type = root["type"].as<uint8_t>();
Serial.println(data_type);
switch (data_type)
{
case Mode::rainbow_:
//statement
break;
case Mode::speed_:
_speed = root["data"].as<uint_fast16_t>();
Serial.println(_speed);
break;
case Mode::solidColor_:
// statements
setSolid(root);
break;
case Mode::gradient_:
setGradient(root);
// statements
break;
case Mode::brightness_:
Serial.println("brightness");
setBrightness(root);
// statements
break;
case Mode::gradientStep_:
_GradientStep = root["data"].as<uint8_t>();
if (_currentMode == Mode::none_)
{
fillLEDsFromPaletteColors(0);
}
Serial.println(_GradientStep);
// statements
break;
case Mode::none_:
_currentMode = Mode::none_;
break;
case Mode::flowPalette_:
Serial.println("flow");
_currentMode = Mode::flowPalette_;
// statements
break;
case Mode::numLedsPerPaletteColor_:
Serial.println("numLeds");
_numberOfLedsPerPaletteColor = root["data"].as<uint8_t>();
if (_currentMode == Mode::none_)
{
fillLEDsFromPaletteColors(0);
}
Serial.println(_numberOfLedsPerPaletteColor);
// statements
break;
default:
// statements
break;
}
request->send(200, "text/plain", "json post");
});
server.addHandler(jsonPostHandler);
server.begin();
// ----end server
}
void loop()
{
checkWifiStatus();
switch (_currentMode)
{
case Mode::flowPalette_:
flow();
break;
default:
EVERY_N_MILLISECONDS(200)
{
FastLED.show();
}
break;
}
}
void setGradient(StaticJsonDocument<800U> &root)
{
JsonArray palette = root["data"].as<JsonArray>();
//fill_gradient_RGB(_Leds, 40, CRGB::Magenta, CRGB::Yellow);
uint8_t length = root["length"].as<uint8_t>();
uint8_t convertedPalette[length];
for (int i = 0; i < length; i++)
{
convertedPalette[i] = palette[i].as<uint8_t>();
Serial.println(convertedPalette[i]);
}
_CurrentPalette.loadDynamicGradientPalette(convertedPalette);
fillLEDsFromPaletteColors();
}
uint8_t _flowStartingIndex = 0;
void flow()
{
EVERY_N_MILLISECONDS_I(thistimer, _speed)
{
thistimer.setPeriod(_speed);
fillLEDsFromPaletteColors(_flowStartingIndex);
_flowStartingIndex += _GradientStep;
FastLED.show();
}
}
void setSolid(StaticJsonDocument<800U> root)
{
JsonArray rgb = root["data"].as<JsonArray>();
CRGB color = CRGB(rgb[0].as<uint8_t>(), rgb[1].as<uint8_t>(), rgb[2].as<uint8_t>());
fill_solid(_Leds, NUM_LEDS, color);
}
void setBrightness(StaticJsonDocument<800U> root)
{
_brightness = root["data"].as<uint8_t>();
FastLED.setBrightness(_brightness);
Serial.println(_brightness);
}
void fillLEDsFromPaletteColors(uint8_t startingIndex /*=0*/)
{
uint8_t index = startingIndex;
uint8_t interval = NUM_LEDS / _numberOfLedsPerPaletteColor;
for (uint8_t i = 0; i < interval; i++)
{
uint8_t startingLed = (i * _numberOfLedsPerPaletteColor);
uint8_t endLed = startingLed + _numberOfLedsPerPaletteColor;
//if this is the last iteration then set it cover the rest of the _Leds
if (((i + 1) - interval) == 0)
{
endLed = NUM_LEDS;
}
for (uint8_t led = startingLed; led < endLed; ++led)
{
_Leds[led] = ColorFromPalette(_CurrentPalette, index, 255, LINEARBLEND);
}
index += _GradientStep;
}
}
//check on wifi status every 200 seconds
void checkWifiStatus()
{
EVERY_N_SECONDS_I(thistimer, _wifiCheckInterval)
{
if (WifiMulti.run() != WL_CONNECTED)
{
_wifiCheckInterval = 5;
}
else
{
_wifiCheckInterval = 200;
}
thistimer.setPeriod(_wifiCheckInterval);
}
}
void showHostId(IPAddress ip)
{
Serial.println("");
Serial.println("WiFi connected.");
Serial.println("IP address: ");
Serial.println(ip);
u_int ipAsInt = (uint32_t)ip;
uint8_t hostId = (ipAsInt & 0xFF000000) >> 24;
CRGB redGreenBlue[] = {CRGB::Red, CRGB::Green, CRGB::Blue};
uint8_t startLedIndex = 0;
for (uint8_t i = 0; i < 3; i++)
{
uint8_t digit = digitAtPos(hostId, 2 - i);
uint8_t endIndex = digit + startLedIndex;
if (digit == 0)
{
endIndex++;
}
for (uint8_t index = startLedIndex; index < endIndex; index++)
{
if (digit != 0)
{
_Leds[index] = redGreenBlue[i];
}
else
{
_Leds[index] = CRGB::Black;
}
startLedIndex++;
}
}
FastLED.show();
}
//for getting the digit of integer
int digitAtPos(int number, int pos)
{
return (number / (int)pow(10.0, pos)) % 10;
}
void initializeWifi(ESP8266WiFiMulti wifiMulti)
{
File configFile = SPIFFS.open("/wifi.config.json", "r");
StaticJsonDocument<800> wifiConfigDoc;
deserializeJson(wifiConfigDoc, configFile);
JsonObject root = wifiConfigDoc.as<JsonObject>();
uint8_t numAps = root["numAps"].as<uint8_t>();
JsonArray aps = root["aps"].as<JsonArray>();
configFile.close();
for (size_t i = 0; i < numAps; i++)
{
const char *ssid = aps[i]["ssid"].as<const char*>();
const char *secret = aps[i]["secret"].as<const char*>();
wifiMulti.addAP(ssid, secret);
}
Serial.print("Connecting to wifi");
while (wifiMulti.run() != WL_CONNECTED)
{ // Wait for the Wi-Fi to connect
delay(250);
Serial.print('.');
}
}