-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCLOCK_FIRMWARE_V1.1.ino
2401 lines (2093 loc) · 75.1 KB
/
CLOCK_FIRMWARE_V1.1.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
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Clock firmware 1.0
*
* Written by JGE
*
* 2018
*/
//-------------------------------------------------------------------------------
#include "clock_libs.h"
#include <WiFi.h>
#include <FS.h>
#include <time.h>
#include <Preferences.h>
#include <ESPmDNS.h>
#include <WiFiUdp.h>
//-------------------------------------------------------------------------------
#define RECONINTERVAL 10
//#define DEBUG //uncomment to enable debug messages over serial
#ifdef DEBUG
#define DEBUG_PRINT(x) Serial.print (x)
#define DEBUG_PRINTDEC(x) Serial.print (x, DEC)
#define DEBUG_PRINTLN(x) Serial.println (x)
#else
#define DEBUG_PRINT(x)
#define DEBUG_PRINTDEC(x)
#define DEBUG_PRINTLN(x)
#endif
//-------------------------------------------------------------------------------
Preferences preferences; //Preferences class
//-------------------------------------------------------------------------------
TaskHandle_t LEDtask; //Handle name for LEDtask pinned to core
//-------------------------------------------------------------------------------
const char *ssidown = "My K2400"; //SSID for when device acts as AP
const char *passwordown = "K2400PWD"; //password for when deice acts as AP
AsyncWebServer server(80); //Creating webserver instance
//-------------------------------------------------------------------------------
const char * udpAddress = "255.255.255.255"; //UDP broadcast for discover app
const int udpPort = 30303; //Port for UDP broadcast
WiFiUDP udp; //create UDP instance
struct tm timeinfo; //Timeinfo will hold all current time data
String NTPstring = "time.google.com"; //Webaddress for timeserver
String NTPstringbackup; //backup string for when NTP server is reset
float gmtOffset_hour = 0; //Greenwich Mean Time offset (in hours)
float daylightOffset_hour = 0; //Daylight Saving Time offset (in seconds)
//-------------------------------------------------------------------------------
const uint16_t PixelCount = 60; //Number of pixels/LEDS in the clock
const uint8_t PixelPin = 2; //Physical data pin to which the LED strip is connected
bool pendantDir = true; //Direction of pendant animation
int pendantTail = 5; //Fadeout number of the pendant tail
int secondHandTail = 1; //Fadeout number of the second hand tail
//bool fadeDir = true; //Fade direction for five minute marks
//bool fadeDir2 = true; //Fade direction for quarter marks
int state = 0; //Holds the global state for the clock (first start-up, connected, not connected).
int animationState = 0; //Holds the the animation state for the clock, what animations need to be displayed
int totalBrightness = 255; //Holds total brightness value
int maxBrightness = 255; //Holds the maximum brightness value (to insure no current overload), total brightness gets mapped to this value... This value changes between displaymodes to achieve max possible brightness (some are heavier than others)
int checkPeriod = 1000; //Variable for timechecking delay
unsigned long checkTime_now = 0; //Variable for timechecking delay
String validationString; //String that wil hold data to be validated
bool validation = false; //bool that will be false when validation is not OK
int secCalc = 0; //0-59 global second data gets updated every second
int minCalc = 0; //0-59 global minutes data gets updated every second
int hourCalc = 0; //0-59 global hour data gets updated every second (to show intermediate hour position)
int hourDirectCalc = 0; //0-23 global hour data gets updated every second
bool WLANOn = false; //Are WIFI preferences stored or not?
String SSIDstring; //SSID string of network the clock will try to connect with. Max. length 32 char
String passwordstring; //password string of network the clock will try to connect with. Max. length 63 char
String deviceName; //name of the device (can be changed by user). Max. length 16 char
int dimOn = 0; //Is auto dimming on or off?
int hourStartDim = 0; //Start hour of auto dim feature
int hourStopDim = 0; //Stop hour of auto dim feature
int valueDim = 0; //Value to dim to
int dimBrightness = 255; //Default value
int alarmOn = 0; //Is alarm on or off?
int minAlarm = 0; //Start minute of alarm
int hourAlarm = 0; //Start hour of alarm
#define DURATIONALARM 60 //How long does the alarm last
int durationAlarm; //variable for counting down
int invert = 0; //Inverts all the colors on the clockface
bool smartConfig = 0; //switches smartconfig on or off (default is off as it needs the ESPRESSIF app to work)
int reconnectCounter = 0;
RgbColor pendantColor(0,0,0); //Default color of the pendant
RgbColor fiveMinuteColor(0,0,0); //Default color of the 5 minutes indication
RgbColor quarterColor(0,0,0); //Default color of the 15 minutes indication
RgbColor secondHandColor(0,0,255); //Default color of the second hand
RgbColor minuteHandColor(0,255,0); //Default color of the minute hand
RgbColor hourHandColor(255,0,0); //Default color of the hour hand
RgbColor animationArray1[60]; //Different arrays to store the animations before blending
RgbColor animationArray2[60];
RgbColor animationArray3[60];
RgbColor animationArray4[60];
RgbColor animationArray5[60];
RgbColor animationArray6[60];
RgbColor animationArray7[60];
int circleArray[61] = {0,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,0};
int fiveMinuteNumbers[] = {0,5,10,15,20,25,30,35,40,45,50,55};
int quarterNumbers[] = {0,15,30,45};
//-------------------------------------------------------------------------------
NeoPixelBus<NeoGrbFeature, NeoEsp32RmtWS2813_V3Method> strip(PixelCount, PixelPin);
NeoGamma<NeoGammaTableMethod> colorGamma;
NeoPixelAnimator animations(12);
AnimEaseFunction animation1 = NeoEase::QuadraticInOut;
AnimEaseFunction animation2 = NeoEase::QuadraticInOut;
AnimEaseFunction animation3 = NeoEase::QuadraticInOut;
AnimEaseFunction animation4 = NeoEase::Linear;
AnimEaseFunction animation5 = NeoEase::QuadraticIn;
//-------------------------------------------------------------------------------
/*
* setup starts serial communication,
* starts task that is run on seperate core for the LEDs,
* Init's Wlan stuff,
* and syncs time with NTP server for the first time when WLAN stuff has been handled.
*/
//-------------------------------------------------------------------------------
void setup(){
Serial.begin(115200);
DEBUG_PRINTLN();
DEBUG_PRINTLN("Booted");
NTPstringbackup = NTPstring;
strip.Begin();
strip.Show();
LoadPreferences();
delay(500);
xTaskCreatePinnedToCore(
codeForLEDtask, /* Task Function */
"LEDtask", /* Name of task */
1000, /* Stack size of task */
NULL, /* Parameter of the task */
1, /* Priority of the Task */
&LEDtask, /* Task handle */
0); /* Core */
WLANInit();
delay(500);
//init and get the time
SyncWithServer();
CheckLocalTime();
delay(500);
//This initializes udp and transfer buffer
udp.begin(udpPort);
delay(500);
}
//-------------------------------------------------------------------------------
/*
* codeForLEDtask is the only task running on core 1.
* It controls all things LED related (animations, output, etc.)
*/
//-------------------------------------------------------------------------------
void codeForLEDtask( void * parameter){
int currentAnimationState;
for(;;){
switch (state) {
//First start-up
case 0:
for (int i=0; i <= 59; i++){
strip.SetPixelColor(i, RgbColor (0,0,255));
strip.Show();
delay(16);
if( state != 0){break;}
}
for (int i=0; i <= 59; i++){
strip.SetPixelColor(i, RgbColor (0,0,0));
strip.Show();
delay(16);
if( state != 0){break;}
}
break;
//Unconnected
case 1:
for (int i=0; i <= 59; i++){
strip.SetPixelColor(i, RgbColor (0,255,0));
strip.Show();
delay(16);
if( state != 1){break;}
}
for (int i=0; i <= 59; i++){
strip.SetPixelColor(i, RgbColor (0,0,0));
strip.Show();
delay(16);
if( state != 1){break;}
}
break;
//Connected
case 2:
currentAnimationState = animationState;
switch (animationState) {
case 0:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(6,10, HourHand0);
animations.StartAnimation(5,10, MinuteHand0);
animations.StartAnimation(4,25, SecondHand0Tail);
animations.StartAnimation(3,10, SecondHand0);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 1:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,10, HourHand1);
animations.StartAnimation(9,10, MinuteHand1);
animations.StartAnimation(8,10, SecondHand1);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 2:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,10, HourHand2);
animations.StartAnimation(9,10, MinuteHand2);
animations.StartAnimation(8,1000, SecondHand2);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 3:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,10, HourHand3);
animations.StartAnimation(9,10, MinuteHand3);
animations.StartAnimation(8,10, SecondHand3);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 4:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,1000, HourHand4);
animations.StartAnimation(9,1000, MinuteHand4);
animations.StartAnimation(8,1000, SecondHand4);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 5:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,10, HourHand5);
animations.StartAnimation(9,10, MinuteHand5);
animations.StartAnimation(8,10, SecondHand5);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 6:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,1000, HourHand6);
animations.StartAnimation(9,1000, MinuteHand6);
animations.StartAnimation(8,1000, SecondHand6);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 7:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,1000, HourHand7);
animations.StartAnimation(9,1000, MinuteHand7);
animations.StartAnimation(8,1000, SecondHand7);
animations.StartAnimation(4,5, AllTails);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
case 8:
AnimSwitch();
//maxBrightness = 230;
animations.StartAnimation(10,1000, HourHand8);
animations.StartAnimation(9,1000, MinuteHand8);
animations.StartAnimation(8,1000, SecondHand8);
animations.StartAnimation(4,5, AllTails);
animations.StartAnimation(7,10, QuarterMarks);
animations.StartAnimation(2,10, FiveMinuteMarks);
animations.StartAnimation(1,10, Pendanttail);
animations.StartAnimation(0,1000, Pendant);
break;
default:
animationState = 0;
}
while((state == 2) && currentAnimationState == animationState){
animations.UpdateAnimations();
BlendArrays();
strip.Show();
}
break;
}
}
}
//-------------------------------------------------------------------------------
/*
* CheckAutoDim checks if all requirements are met to start auto dimming.
* Auto Dimming is diming the total brightness for a predefined time from a predefined start time,
* for example at night the clock does not need to be very bright.
*/
//-------------------------------------------------------------------------------
void CheckAutoDim(void){
if(dimOn)
{
if((hourDirectCalc > hourStartDim) || (hourDirectCalc < hourStopDim)){
dimBrightness = valueDim;
}
else{
dimBrightness = 255;
}
}
else{
dimBrightness = 255;
}
}
//-------------------------------------------------------------------------------
/*
* CheckAlarm checks if all requirements are met to start the alarm.
*/
//-------------------------------------------------------------------------------
void CheckAlarm(void){
if(alarmOn)
{
if((hourDirectCalc == hourAlarm) && (minCalc == minAlarm) && (secCalc == 0)){
durationAlarm = DURATIONALARM;
animations.StartAnimation(11,1000,AlarmAnimation);
DEBUG_PRINTLN("");
DEBUG_PRINTLN("Alarm triggered");
DEBUG_PRINTLN("");
}
}
}
//-------------------------------------------------------------------------------
/*
* AnimSwitch makes sure all the animation are stopped, all the animation arrays are empty and updates the time global vars.
* Should be called when you switch between main animations.
*/
//-------------------------------------------------------------------------------
void AnimSwitch(void){
animations.StopAll();
ClearArrays();
ProcessTime();
}
//-------------------------------------------------------------------------------
/*
* LoadPreferences checks if any preferences are stored and wil load these accordingly. Is called on setup.
*/
//-------------------------------------------------------------------------------
void LoadPreferences(void){
preferences.begin("WLAN", false);
if(preferences.getBool("WLANStored", 0)){
LoadWLAN();
}
preferences.end();
preferences.begin("alarm", false);
if(preferences.getBool("alarmStored", 0)){
LoadAlarm();
}
preferences.end();
preferences.begin("dim", false);
if(preferences.getBool("dimStored", 0)){
LoadDim();
}
preferences.end();
preferences.begin("color", false);
if (preferences.getUInt("colorStored", 0)){
LoadColor();
}
preferences.end();
preferences.begin("NTP", false);
if (preferences.getUInt("NTPStored", 0)){
LoadNTP();
}
else {
SaveNTP();
}
preferences.end();
}
//-------------------------------------------------------------------------------
/*
* WLANInit takes care of the WLAN setup. When first startup it will put the device in AP mode.
* When stored WLAN credentials are present it will try to connect to this network.
* Upon a press of the WLANreset button it will remove all stored credentials and restart the device.
*/
//-------------------------------------------------------------------------------
void WLANInit(void){
if(WLANOn && digitalRead(0)){
state = 1;
while ((WiFi.status() != WL_CONNECTED)) {
if(millis() > checkTime_now + checkPeriod){
checkTime_now = millis();
if (reconnectCounter > RECONINTERVAL){
reconnectCounter = 0;
}
if(reconnectCounter == 0){
DEBUG_PRINTLN("Trying to connect to ");
DEBUG_PRINT(SSIDstring);
DEBUG_PRINTLN(" using stored credentials");
char cssid[SSIDstring.length()+1];
char cpass[passwordstring.length()+1];
SSIDstring.toCharArray(cssid, SSIDstring.length()+1);
passwordstring.toCharArray(cpass, passwordstring.length()+1);
WiFi.begin(cssid, cpass);
}
reconnectCounter++;
DEBUG_PRINT(".");
}
if(!digitalRead(0)){
ResetWLAN();
RestartDevice();
}
}
DEBUG_PRINTLN("");
DEBUG_PRINTLN("");
DEBUG_PRINTLN("WLAN connected");
DEBUG_PRINT("IP address is: ");
DEBUG_PRINTLN(WiFi.localIP());
DEBUG_PRINTLN("");
}
else{
state = 0;
ResetWLAN();
if(smartConfig == true){
DEBUG_PRINTLN("Starting WLAN initialisation");
//Init WLAN as Station, start SmartConfig
WiFi.mode(WIFI_AP_STA);
WiFi.beginSmartConfig();
//Wait for SmartConfig packet from mobile
DEBUG_PRINTLN("Waiting for SmartConfig.");
DEBUG_PRINTLN("Waiting for WLAN");
while (WiFi.status() != WL_CONNECTED) {
delay(500);
DEBUG_PRINT(".");
}
DEBUG_PRINTLN("");
DEBUG_PRINTLN("SmartConfig received.");
//Wait for WLAN to connect to AP
DEBUG_PRINTLN("Waiting for WLAN");
while (WiFi.status() != WL_CONNECTED) {
delay(500);
DEBUG_PRINT(".");
}
DEBUG_PRINT("IP Address: ");
DEBUG_PRINTLN(WiFi.localIP());
DEBUG_PRINTLN(" ");
}
else if (smartConfig == false)
{
DEBUG_PRINTLN("configuring AP...");
WiFi.softAPConfig(IPAddress(192,168,0,1), IPAddress(192,168,0,1) ,IPAddress(255,255,255,0));
delay(500);
DEBUG_PRINTLN("configuring AP...");
WiFi.softAPConfig(IPAddress(192,168,0,1), IPAddress(192,168,0,1) ,IPAddress(255,255,255,0));
delay(500);
DEBUG_PRINTLN("Acting as AP...");
WiFi.softAP(ssidown, passwordown, 13, 0, 4);
delay(500);
DEBUG_PRINT("IP address is: ");
DEBUG_PRINTLN(WiFi.softAPIP());
DEBUG_PRINTLN("");
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){request->send(200, "text/html", HTML1);});
server.on("/wifisave", HTTP_POST, [](AsyncWebServerRequest *request){
if (ValidateWLAN(request)){
SaveWLAN();
request->send(200, "text/message", "");
RestartDevice();
}
else{
request->send(400, "text/message", "");
DEBUG_PRINTLN("");
DEBUG_PRINTLN("ERROR");
DEBUG_PRINTLN("");
}
});
MDNSService("K2400");
server.begin();
while(1){}
}
}
MDNSService(deviceName);
WebServer();
state = 2;
}
//-------------------------------------------------------------------------------
/*
* MDNSService makes sure that the device can be reaced via the .local webaddres on a apple device.
*/
//-------------------------------------------------------------------------------
void MDNSService(String URL){
char cURL[URL.length()+1];
URL.toCharArray(cURL, URL.length()+1);
// Set up mDNS responder:
if (!MDNS.begin(cURL)) {
DEBUG_PRINTLN("Error setting up MDNS responder!");
while(1) {
delay(1000);
}
}
DEBUG_PRINTLN("mDNS responder started");
DEBUG_PRINTLN("Go to http://" + URL + ".local to connect...");
DEBUG_PRINTLN("");
// Add service to MDNS-SD
MDNS.addService("http", "tcp", 80);
}
//-------------------------------------------------------------------------------
/*
* ValidateNTP validates the incoming NTP data.
* Stores the incoming data when correct.
* Returns false when something is wrong.
*/
//-------------------------------------------------------------------------------
bool ValidateNTP(AsyncWebServerRequest *request){
int paramsNr = request->params();
if(paramsNr == 3){
AsyncWebParameter* p = request->getParam(0);
NTPstring = p->value();
p = request->getParam(1);
String NTPData = p->value();
gmtOffset_hour = NTPData.toFloat();
p = request->getParam(2);
NTPData = p->value();
daylightOffset_hour = NTPData.toFloat();
return true;
}
else {
return false;
}
}
//-------------------------------------------------------------------------------
/*
* ValidateWLAN validates the incoming WLAN data.
* Stores the incoming data when correct.
* Returns false when something is wrong.
*/
//-------------------------------------------------------------------------------
bool ValidateWLAN(AsyncWebServerRequest *request){
int paramsNr = request->params();
if(paramsNr == 3){
AsyncWebParameter* p = request->getParam(0);
validationString = p->value();
if (validationString.length() <= 32){
SSIDstring = validationString;
}
else{
return false;
}
p = request->getParam(1);
validationString = p->value();
if (validationString.length() <= 63){
passwordstring = validationString;
}
else{
return false;
}
p = request->getParam(2);
validationString = p->value();
if (validationString.length() <= 16){
deviceName = validationString;
}
else{
return false;
}
return true;
}
else {
return false;
}
}
//-------------------------------------------------------------------------------
/*
* ValidateAlarm validates the incoming Alarm data.
* Stores the incoming data when correct.
* Returns false when something is wrong.
*/
//-------------------------------------------------------------------------------
bool ValidateAlarm(AsyncWebServerRequest *request){
int paramsNr = request->params();
if(paramsNr == 3){
AsyncWebParameter* p = request->getParam(0);
validationString = p->value();
if ((validationString.toInt() == 0) || (validationString.toInt() == 1)){
alarmOn = validationString.toInt();
}
else{
return false;
}
p = request->getParam(1);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 23)){
hourAlarm = validationString.toInt();
}
else{
return false;
}
p = request->getParam(2);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 59)){
minAlarm = validationString.toInt();
}
else{
return false;
}
return true;
}
else {
return false;
}
}
//-------------------------------------------------------------------------------
/*
* ValidateDim validates the incoming Auto Dim data.
* Stores the incoming data when correct.
* Returns false when something is wrong.
*/
//-------------------------------------------------------------------------------
bool ValidateDim(AsyncWebServerRequest *request){
int paramsNr = request->params();
if(paramsNr == 4){
AsyncWebParameter* p = request->getParam(0);
validationString = p->value();
if ((validationString.toInt() == 0) || (validationString.toInt() == 1)){
dimOn = validationString.toInt();
}
else{
return false;
}
p = request->getParam(1);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 23)){
hourStartDim = validationString.toInt();
}
else{
return false;
}
p = request->getParam(2);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 23)){
hourStopDim = validationString.toInt();
}
else{
return false;
}
p = request->getParam(3);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
valueDim = validationString.toInt();
}
else{
return false;
}
return true;
}
else {
return false;
}
}
//-------------------------------------------------------------------------------
/*
* ValidateData validates the incoming Color data.
* Stores the incoming data when correct.
* Returns false when something is wrong.
*/
//-------------------------------------------------------------------------------
bool ValidateData(AsyncWebServerRequest *request){
int paramsNr = request->params();
if(paramsNr == 21){
AsyncWebParameter* p = request->getParam(0);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
totalBrightness = validationString.toInt();
}
else{
return false;
}
p = request->getParam(1);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
hourHandColor.R = validationString.toInt();
}
else{
return false;
}
p = request->getParam(2);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
hourHandColor.G = validationString.toInt();
}
else{
return false;
}
p = request->getParam(3);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
hourHandColor.B = validationString.toInt();
}
else{
return false;
}
p = request->getParam(4);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
minuteHandColor.R = validationString.toInt();
}
else{
return false;
}
p = request->getParam(5);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
minuteHandColor.G = validationString.toInt();
}
else{
return false;
}
p = request->getParam(6);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
minuteHandColor.B = validationString.toInt();
}
else{
return false;
}
p = request->getParam(7);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
secondHandColor.R = validationString.toInt();
}
else{
return false;
}
p = request->getParam(8);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
secondHandColor.G = validationString.toInt();
}
else{
return false;
}
p = request->getParam(9);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
secondHandColor.B = validationString.toInt();
}
else{
return false;
}
p = request->getParam(10);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
pendantColor.R = validationString.toInt();
}
else{
return false;
}
p = request->getParam(11);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
pendantColor.G = validationString.toInt();
}
else{
return false;
}
p = request->getParam(12);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
pendantColor.B = validationString.toInt();
}
else{
return false;
}
p = request->getParam(13);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
fiveMinuteColor.R = validationString.toInt();
}
else{
return false;
}
p = request->getParam(14);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
fiveMinuteColor.G = validationString.toInt();
}
else{
return false;
}
p = request->getParam(15);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
fiveMinuteColor.B = validationString.toInt();
}
else{
return false;
}
p = request->getParam(16);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
quarterColor.R = validationString.toInt();
}
else{
return false;
}
p = request->getParam(17);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
quarterColor.G = validationString.toInt();
}
else{
return false;
}
p = request->getParam(18);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
quarterColor.B = validationString.toInt();
}
else{
return false;
}
p = request->getParam(19);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 255)){
animationState = validationString.toInt();
}
else{
return false;
}
p = request->getParam(20);
validationString = p->value();
if ((validationString.toInt() >= 0) && (validationString.toInt() <= 1)){
invert = validationString.toInt();
}
else{
return false;
}
return true;
}
else {
return false;
}
}
//-------------------------------------------------------------------------------
/*
* WebServer takes care of all the webrequests
*/
//-------------------------------------------------------------------------------
void WebServer(void){
server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
request->send(200, "text/html", HTML2);
});
server.on("/ntpreset", HTTP_POST, [](AsyncWebServerRequest *request){
ResetNTP();
SyncWithServer();
request->send(200, "text/message", "");
});
server.on("/ntpsave", HTTP_POST, [](AsyncWebServerRequest *request){
if (ValidateNTP(request)){
SaveNTP();
SyncWithServer();
request->send(200, "text/message", "");
}
else{
request->send(400, "text/message", "");
DEBUG_PRINTLN("");
DEBUG_PRINTLN("ERROR");
DEBUG_PRINTLN("");
}
});
server.on("/wifisave", HTTP_POST, [](AsyncWebServerRequest *request){
if (ValidateWLAN(request)){
SaveWLAN();
request->send(200, "text/message", "");
RestartDevice();
}
else{
request->send(400, "text/message", "");
DEBUG_PRINTLN("");
DEBUG_PRINTLN("ERROR");
DEBUG_PRINTLN("");
}
});