2016-12-31 00:38:51 +01:00
|
|
|
/*
|
|
|
|
* Receives client input
|
|
|
|
*/
|
|
|
|
|
2018-03-15 13:03:50 +01:00
|
|
|
void _setRandomColor(bool _sec,bool fromButton=false)
|
2017-12-11 23:59:12 +01:00
|
|
|
{
|
|
|
|
lastRandomIndex = strip.get_random_wheel_index(lastRandomIndex);
|
|
|
|
if (_sec){
|
2018-03-15 13:03:50 +01:00
|
|
|
colorHStoRGB(lastRandomIndex*256,255,colSec);
|
2017-12-11 23:59:12 +01:00
|
|
|
} else {
|
2018-03-15 13:03:50 +01:00
|
|
|
colorHStoRGB(lastRandomIndex*256,255,col);
|
2017-12-11 23:59:12 +01:00
|
|
|
}
|
2018-03-15 13:03:50 +01:00
|
|
|
if (fromButton) colorUpdated(2);
|
2017-12-11 23:59:12 +01:00
|
|
|
}
|
|
|
|
|
2018-09-17 11:15:08 +02:00
|
|
|
|
|
|
|
//called upon POST settings form submit
|
2018-03-14 13:16:28 +01:00
|
|
|
void handleSettingsSet(byte subPage)
|
2016-11-19 19:39:17 +01:00
|
|
|
{
|
2018-02-20 22:29:48 +01:00
|
|
|
//0: menu 1: wifi 2: leds 3: ui 4: sync 5: time 6: sec
|
|
|
|
if (subPage <1 || subPage >6) return;
|
|
|
|
|
|
|
|
//WIFI SETTINGS
|
|
|
|
if (subPage == 1)
|
2016-11-19 19:39:17 +01:00
|
|
|
{
|
2018-09-17 11:15:08 +02:00
|
|
|
strcpy(clientSSID,server.arg("CS").c_str());
|
|
|
|
if (server.arg("CP").charAt(0) != '*') strcpy(clientPass, server.arg("CP").c_str());
|
|
|
|
|
|
|
|
strcpy(cmDNS, server.arg("CM").c_str());
|
|
|
|
|
|
|
|
int t = server.arg("AT").toInt(); if (t > 9 && t <= 255) apWaitTimeSecs = t;
|
|
|
|
strcpy(apSSID, server.arg("AS").c_str());
|
2018-03-14 19:05:51 +01:00
|
|
|
apHide = server.hasArg("AH");
|
2018-09-17 11:15:08 +02:00
|
|
|
if (server.arg("AP").charAt(0) != '*') strcpy(apPass, server.arg("AP").c_str());
|
|
|
|
t = server.arg("AC").toInt(); if (t > 0 && t < 14) apChannel = t;
|
|
|
|
|
|
|
|
char k[3]; k[2] = 0;
|
2018-07-21 23:21:07 +02:00
|
|
|
for (int i = 0; i<4; i++)
|
2018-01-27 23:28:20 +01:00
|
|
|
{
|
2018-09-17 11:15:08 +02:00
|
|
|
k[1] = i+48;//ascii 0,1,2,3
|
|
|
|
|
2018-07-21 23:21:07 +02:00
|
|
|
k[0] = 'I'; //static IP
|
2018-09-17 11:15:08 +02:00
|
|
|
staticIP[i] = server.arg(k).toInt();
|
|
|
|
|
2018-07-21 23:21:07 +02:00
|
|
|
k[0] = 'G'; //gateway
|
2018-09-17 11:15:08 +02:00
|
|
|
staticGateway[i] = server.arg(k).toInt();
|
|
|
|
|
2018-07-21 23:21:07 +02:00
|
|
|
k[0] = 'S'; //subnet
|
2018-09-17 11:15:08 +02:00
|
|
|
staticSubnet[i] = server.arg(k).toInt();
|
2016-11-27 16:45:54 +01:00
|
|
|
}
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
|
|
|
//LED SETTINGS
|
|
|
|
if (subPage == 2)
|
2016-12-11 20:11:14 +01:00
|
|
|
{
|
2018-09-17 11:15:08 +02:00
|
|
|
int t = server.arg("LC").toInt();
|
|
|
|
if (t > 0 && t <= 1200) ledCount = t;
|
|
|
|
//RMT eats up too much RAM
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
if (ledCount > 600) ledCount = 600;
|
|
|
|
#endif
|
2018-04-14 18:56:35 +02:00
|
|
|
useRGBW = server.hasArg("EW");
|
2018-05-31 19:26:16 +02:00
|
|
|
autoRGBtoRGBW = server.hasArg("AW");
|
2018-03-14 19:05:51 +01:00
|
|
|
if (server.hasArg("IS")) //ignore settings and save current brightness, colors and fx as default
|
2018-02-20 22:29:48 +01:00
|
|
|
{
|
2018-03-14 13:16:28 +01:00
|
|
|
colS[0] = col[0];
|
|
|
|
colS[1] = col[1];
|
|
|
|
colS[2] = col[2];
|
2018-09-17 11:15:08 +02:00
|
|
|
colSecS[0] = colSec[0];
|
|
|
|
colSecS[1] = colSec[1];
|
|
|
|
colSecS[2] = colSec[2];
|
|
|
|
whiteS = white;
|
|
|
|
whiteSecS = whiteSec;
|
2018-03-14 13:16:28 +01:00
|
|
|
briS = bri;
|
2018-02-20 22:29:48 +01:00
|
|
|
effectDefault = effectCurrent;
|
|
|
|
effectSpeedDefault = effectSpeed;
|
2018-09-06 02:05:56 +02:00
|
|
|
effectIntensityDefault = effectIntensity;
|
|
|
|
effectPaletteDefault = effectPalette;
|
2018-02-20 22:29:48 +01:00
|
|
|
} else {
|
2018-09-17 11:15:08 +02:00
|
|
|
colS[0] = server.arg("CR").toInt();
|
|
|
|
colS[1] = server.arg("CG").toInt();
|
|
|
|
colS[2] = server.arg("CB").toInt();
|
|
|
|
colSecS[0] = server.arg("SR").toInt();
|
|
|
|
colSecS[1] = server.arg("SG").toInt();
|
|
|
|
colSecS[2] = server.arg("SB").toInt();
|
|
|
|
whiteS = server.arg("CW").toInt();
|
|
|
|
whiteSecS = server.arg("SW").toInt();
|
|
|
|
briS = server.arg("CA").toInt();
|
|
|
|
effectDefault = server.arg("FX").toInt();
|
|
|
|
effectSpeedDefault = server.arg("SX").toInt();
|
|
|
|
effectIntensityDefault = server.arg("IX").toInt();
|
|
|
|
effectPaletteDefault = server.arg("FP").toInt();
|
2018-02-20 22:29:48 +01:00
|
|
|
}
|
2018-06-24 01:20:15 +02:00
|
|
|
saveCurrPresetCycConf = server.hasArg("PC");
|
2018-03-14 19:05:51 +01:00
|
|
|
turnOnAtBoot = server.hasArg("BO");
|
2018-09-17 11:15:08 +02:00
|
|
|
t = server.arg("BP").toInt();
|
|
|
|
if (t <= 25) bootPreset = t;
|
2018-03-14 19:05:51 +01:00
|
|
|
useGammaCorrectionBri = server.hasArg("GB");
|
|
|
|
useGammaCorrectionRGB = server.hasArg("GC");
|
2018-09-17 11:15:08 +02:00
|
|
|
|
2018-03-14 19:05:51 +01:00
|
|
|
fadeTransition = server.hasArg("TF");
|
2018-09-17 11:15:08 +02:00
|
|
|
t = server.arg("TD").toInt();
|
|
|
|
if (t > 0) transitionDelay = t;
|
2018-09-28 23:53:51 +02:00
|
|
|
transitionDelayDefault = t;
|
2018-09-08 16:21:44 +02:00
|
|
|
strip.paletteFade = server.hasArg("PF");
|
2018-09-15 17:29:01 +02:00
|
|
|
enableSecTransition = server.hasArg("T2");
|
2018-09-17 11:15:08 +02:00
|
|
|
|
|
|
|
nightlightTargetBri = server.arg("TB").toInt();
|
|
|
|
t = server.arg("TL").toInt();
|
|
|
|
if (t > 0) nightlightDelayMins = t;
|
2018-03-14 19:05:51 +01:00
|
|
|
nightlightFade = server.hasArg("TW");
|
2018-09-17 11:15:08 +02:00
|
|
|
|
|
|
|
t = server.arg("PB").toInt();
|
|
|
|
if (t >= 0 && t < 4) strip.paletteBlend = t;
|
2018-03-15 12:04:14 +01:00
|
|
|
initLedsLast = server.hasArg("EI");
|
2018-09-17 11:15:08 +02:00
|
|
|
reverseMode = server.hasArg("RV");
|
2018-03-14 11:41:24 +01:00
|
|
|
strip.setReverseMode(reverseMode);
|
2018-06-24 01:20:15 +02:00
|
|
|
skipFirstLed = server.hasArg("SL");
|
2018-09-17 11:15:08 +02:00
|
|
|
t = server.arg("BF").toInt();
|
|
|
|
if (t > 0) briMultiplier = t;
|
2016-12-11 20:11:14 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
|
|
|
//UI
|
|
|
|
if (subPage == 3)
|
2016-11-19 19:39:17 +01:00
|
|
|
{
|
2018-09-17 11:15:08 +02:00
|
|
|
int t = server.arg("UI").toInt();
|
|
|
|
if (t >= 0 && t < 3) uiConfiguration = t;
|
|
|
|
strcpy(serverDescription, server.arg("DS").c_str());
|
2018-03-14 19:05:51 +01:00
|
|
|
useHSBDefault = server.hasArg("MD");
|
2018-02-20 22:29:48 +01:00
|
|
|
useHSB = useHSBDefault;
|
2018-09-17 11:15:08 +02:00
|
|
|
currentTheme = server.arg("TH").toInt();
|
2018-07-21 23:21:07 +02:00
|
|
|
char k[3]; k[0]='C'; k[2]=0;
|
2018-02-23 01:33:32 +01:00
|
|
|
for(int i=0;i<6;i++)
|
2018-02-20 22:29:48 +01:00
|
|
|
{
|
2018-07-21 23:21:07 +02:00
|
|
|
k[1] = i+48;
|
2018-09-17 11:15:08 +02:00
|
|
|
strcpy(cssCol[i],server.arg(k).c_str());
|
2018-02-20 22:29:48 +01:00
|
|
|
}
|
2018-09-17 11:15:08 +02:00
|
|
|
strcpy(cssFont,server.arg("CF").c_str());
|
2018-02-20 22:29:48 +01:00
|
|
|
buildCssColorString();
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
|
|
|
//SYNC
|
|
|
|
if (subPage == 4)
|
2017-02-24 23:21:48 +01:00
|
|
|
{
|
2018-03-14 19:05:51 +01:00
|
|
|
buttonEnabled = server.hasArg("BT");
|
2018-09-17 11:15:08 +02:00
|
|
|
int t = server.arg("UP").toInt();
|
|
|
|
if (t > 0) udpPort = t;
|
2018-03-14 19:05:51 +01:00
|
|
|
receiveNotificationBrightness = server.hasArg("RB");
|
|
|
|
receiveNotificationColor = server.hasArg("RC");
|
|
|
|
receiveNotificationEffects = server.hasArg("RX");
|
2018-02-20 22:29:48 +01:00
|
|
|
receiveNotifications = (receiveNotificationBrightness || receiveNotificationColor || receiveNotificationEffects);
|
2018-03-14 19:05:51 +01:00
|
|
|
notifyDirectDefault = server.hasArg("SD");
|
2018-02-20 22:29:48 +01:00
|
|
|
notifyDirect = notifyDirectDefault;
|
2018-03-14 19:05:51 +01:00
|
|
|
notifyButton = server.hasArg("SB");
|
|
|
|
notifyTwice = server.hasArg("S2");
|
2018-09-17 11:15:08 +02:00
|
|
|
|
2018-05-10 19:55:58 +02:00
|
|
|
receiveDirect = server.hasArg("RD");
|
2018-10-11 21:38:00 +02:00
|
|
|
e131Multicast = server.hasArg("EM");
|
2018-09-17 11:15:08 +02:00
|
|
|
t = server.arg("EU").toInt();
|
|
|
|
if (t > 0 && t <= 63999) e131Universe = t;
|
|
|
|
t = server.arg("ET").toInt();
|
|
|
|
if (t > 99 && t <= 65000) realtimeTimeoutMs = t;
|
2018-08-11 22:57:13 +02:00
|
|
|
arlsForceMaxBri = server.hasArg("FB");
|
|
|
|
arlsDisableGammaCorrection = server.hasArg("RG");
|
2018-09-17 11:15:08 +02:00
|
|
|
t = server.arg("WO").toInt();
|
|
|
|
if (t >= -255 && t <= 255) arlsOffset = t;
|
2018-05-10 19:55:58 +02:00
|
|
|
enableRealtimeUI = server.hasArg("RU");
|
2018-09-17 11:15:08 +02:00
|
|
|
|
2018-03-14 19:05:51 +01:00
|
|
|
alexaEnabled = server.hasArg("AL");
|
2018-09-17 11:15:08 +02:00
|
|
|
strcpy(alexaInvocationName, server.arg("AI").c_str());
|
2018-09-15 17:29:01 +02:00
|
|
|
notifyAlexa = server.hasArg("SA");
|
2018-09-17 11:15:08 +02:00
|
|
|
|
2018-07-21 23:21:07 +02:00
|
|
|
if (server.hasArg("BK") && !server.arg("BK").equals("Hidden")) {strcpy(blynkApiKey,server.arg("BK").c_str()); initBlynk(blynkApiKey);}
|
2018-10-04 16:50:12 +02:00
|
|
|
|
|
|
|
strcpy(mqttServer, server.arg("MS").c_str());
|
|
|
|
strcpy(mqttDeviceTopic, server.arg("MD").c_str());
|
|
|
|
strcpy(mqttGroupTopic, server.arg("MG").c_str());
|
2018-09-17 11:15:08 +02:00
|
|
|
|
2018-03-14 19:05:51 +01:00
|
|
|
notifyHue = server.hasArg("SH");
|
2018-02-28 00:27:10 +01:00
|
|
|
for (int i=0;i<4;i++){
|
2018-03-14 19:05:51 +01:00
|
|
|
String a = "H"+String(i);
|
2018-09-17 11:15:08 +02:00
|
|
|
hueIP[i] = server.arg(a).toInt();
|
2018-02-28 00:27:10 +01:00
|
|
|
}
|
2018-09-17 11:15:08 +02:00
|
|
|
|
|
|
|
t = server.arg("HL").toInt();
|
|
|
|
if (t > 0) huePollLightId = t;
|
|
|
|
|
|
|
|
t = server.arg("HI").toInt();
|
|
|
|
if (t > 50) huePollIntervalMs = t;
|
|
|
|
|
2018-03-14 19:05:51 +01:00
|
|
|
hueApplyOnOff = server.hasArg("HO");
|
|
|
|
hueApplyBri = server.hasArg("HB");
|
|
|
|
hueApplyColor = server.hasArg("HC");
|
|
|
|
if (server.hasArg("HP"))
|
2018-02-28 00:27:10 +01:00
|
|
|
{
|
|
|
|
if (!huePollingEnabled) hueAttempt = true;
|
|
|
|
if (!setupHue()) hueAttempt = true;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
huePollingEnabled = false;
|
2018-07-21 23:21:07 +02:00
|
|
|
strcpy(hueError,"Inactive");
|
2018-02-28 00:27:10 +01:00
|
|
|
}
|
2017-02-24 23:21:48 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
|
|
|
//TIME
|
|
|
|
if (subPage == 5)
|
2017-02-24 23:21:48 +01:00
|
|
|
{
|
2018-03-14 19:05:51 +01:00
|
|
|
ntpEnabled = server.hasArg("NT");
|
|
|
|
useAMPM = !server.hasArg("CF");
|
2018-09-17 11:15:08 +02:00
|
|
|
currentTimezone = server.arg("TZ").toInt();
|
|
|
|
utcOffsetSecs = server.arg("UO").toInt();
|
2018-02-23 01:33:32 +01:00
|
|
|
if (ntpEnabled && WiFi.status() == WL_CONNECTED && !ntpConnected) ntpConnected = ntpUdp.begin(ntpLocalPort); //start if not already connected
|
2018-03-14 00:25:54 +01:00
|
|
|
|
2018-03-14 19:05:51 +01:00
|
|
|
if (server.hasArg("OL")){
|
|
|
|
overlayDefault = server.arg("OL").toInt();
|
2018-10-18 18:31:25 +02:00
|
|
|
if (overlayCurrent != overlayDefault) strip.unlockAll();
|
2018-03-14 00:25:54 +01:00
|
|
|
overlayCurrent = overlayDefault;
|
|
|
|
}
|
2018-09-17 11:15:08 +02:00
|
|
|
|
|
|
|
overlayMin = server.arg("O1").toInt();
|
|
|
|
overlayMax = server.arg("O2").toInt();
|
|
|
|
analogClock12pixel = server.arg("OM").toInt();
|
2018-03-14 19:05:51 +01:00
|
|
|
analogClock5MinuteMarks = server.hasArg("O5");
|
|
|
|
analogClockSecondsTrail = server.hasArg("OS");
|
2018-03-14 00:25:54 +01:00
|
|
|
|
2018-09-17 11:15:08 +02:00
|
|
|
strcpy(cronixieDisplay,server.arg("CX").c_str());
|
2018-03-14 00:25:54 +01:00
|
|
|
bool cbOld = cronixieBacklight;
|
2018-03-14 19:05:51 +01:00
|
|
|
cronixieBacklight = server.hasArg("CB");
|
2018-09-22 22:49:24 +02:00
|
|
|
if (cbOld != cronixieBacklight && overlayCurrent == 3)
|
2018-03-14 00:25:54 +01:00
|
|
|
{
|
|
|
|
strip.setCronixieBacklight(cronixieBacklight); overlayRefreshedTime = 0;
|
|
|
|
}
|
2018-03-14 19:05:51 +01:00
|
|
|
countdownMode = server.hasArg("CE");
|
2018-09-17 11:15:08 +02:00
|
|
|
countdownYear = server.arg("CY").toInt();
|
|
|
|
countdownMonth = server.arg("CI").toInt();
|
|
|
|
countdownDay = server.arg("CD").toInt();
|
|
|
|
countdownHour = server.arg("CH").toInt();
|
|
|
|
countdownMin = server.arg("CM").toInt();
|
|
|
|
countdownSec = server.arg("CS").toInt();
|
2018-03-14 00:25:54 +01:00
|
|
|
|
|
|
|
for (int i=1;i<17;i++)
|
|
|
|
{
|
2018-03-14 19:05:51 +01:00
|
|
|
String a = "M"+String(i);
|
2018-03-14 00:25:54 +01:00
|
|
|
if (server.hasArg(a)) saveMacro(i,server.arg(a),false);
|
|
|
|
}
|
2018-09-22 22:49:24 +02:00
|
|
|
|
2018-09-17 11:15:08 +02:00
|
|
|
macroBoot = server.arg("MB").toInt();
|
|
|
|
macroAlexaOn = server.arg("A0").toInt();
|
|
|
|
macroAlexaOff = server.arg("A1").toInt();
|
|
|
|
macroButton = server.arg("MP").toInt();
|
|
|
|
macroLongPress = server.arg("ML").toInt();
|
|
|
|
macroCountdown = server.arg("MC").toInt();
|
|
|
|
macroNl = server.arg("MN").toInt();
|
2018-09-22 22:49:24 +02:00
|
|
|
|
|
|
|
char k[3]; k[2] = 0;
|
|
|
|
for (int i = 0; i<8; i++)
|
|
|
|
{
|
|
|
|
k[1] = i+48;//ascii 0,1,2,3
|
|
|
|
|
|
|
|
k[0] = 'H'; //timer hours
|
|
|
|
timerHours[i] = server.arg(k).toInt();
|
|
|
|
|
|
|
|
k[0] = 'N'; //minutes
|
|
|
|
timerMinutes[i] = server.arg(k).toInt();
|
|
|
|
|
|
|
|
k[0] = 'T'; //macros
|
|
|
|
timerMacro[i] = server.arg(k).toInt();
|
|
|
|
}
|
2017-02-24 23:21:48 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
|
|
|
//SECURITY
|
|
|
|
if (subPage == 6)
|
2016-11-20 01:47:15 +01:00
|
|
|
{
|
2018-09-08 20:26:04 +02:00
|
|
|
if (server.hasArg("RS")) //complete factory reset
|
2016-11-20 01:47:15 +01:00
|
|
|
{
|
2018-02-20 22:29:48 +01:00
|
|
|
clearEEPROM();
|
2018-02-23 01:33:32 +01:00
|
|
|
serveMessage(200, "All Settings erased.", "Connect to WLED-AP to setup again...",255);
|
2018-02-20 22:29:48 +01:00
|
|
|
reset();
|
|
|
|
}
|
2018-02-23 01:33:32 +01:00
|
|
|
|
|
|
|
bool pwdCorrect = !otaLock; //always allow access if ota not locked
|
2018-03-14 19:05:51 +01:00
|
|
|
if (server.hasArg("OP"))
|
2016-11-20 01:47:15 +01:00
|
|
|
{
|
2018-07-21 23:21:07 +02:00
|
|
|
if (otaLock && strcmp(otaPass,server.arg("OP").c_str()) == 0)
|
2018-02-20 22:29:48 +01:00
|
|
|
{
|
2018-02-23 01:33:32 +01:00
|
|
|
pwdCorrect = true;
|
|
|
|
}
|
2018-03-14 19:05:51 +01:00
|
|
|
if (!otaLock && server.arg("OP").length() > 0)
|
2016-11-20 01:47:15 +01:00
|
|
|
{
|
2018-07-21 23:21:07 +02:00
|
|
|
strcpy(otaPass,server.arg("OP").c_str());
|
2016-11-20 01:47:15 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-23 01:33:32 +01:00
|
|
|
|
|
|
|
if (pwdCorrect) //allow changes if correct pwd or no ota active
|
2018-02-20 22:29:48 +01:00
|
|
|
{
|
2018-03-14 19:05:51 +01:00
|
|
|
otaLock = server.hasArg("NO");
|
|
|
|
wifiLock = server.hasArg("OW");
|
|
|
|
recoveryAPDisabled = server.hasArg("NA");
|
|
|
|
aOtaEnabled = server.hasArg("AO");
|
2018-02-20 22:29:48 +01:00
|
|
|
}
|
2016-11-20 01:47:15 +01:00
|
|
|
}
|
2016-11-19 19:39:17 +01:00
|
|
|
saveSettingsToEEPROM();
|
2018-09-04 15:51:38 +02:00
|
|
|
if (subPage == 2) strip.init(useRGBW,ledCount,skipFirstLed);
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
|
|
|
|
2018-03-14 13:16:28 +01:00
|
|
|
bool handleSet(String req)
|
2016-11-19 19:39:17 +01:00
|
|
|
{
|
2018-03-14 13:16:28 +01:00
|
|
|
bool effectUpdated = false;
|
2018-09-17 11:15:08 +02:00
|
|
|
if (!(req.indexOf("win") >= 0)) return false;
|
|
|
|
|
2016-11-19 19:39:17 +01:00
|
|
|
int pos = 0;
|
2017-12-30 01:16:00 +01:00
|
|
|
DEBUG_PRINT("API req: ");
|
|
|
|
DEBUG_PRINTLN(req);
|
2017-12-28 00:37:13 +01:00
|
|
|
|
2017-12-30 01:16:00 +01:00
|
|
|
//save macro, requires &MS=<slot>(<macro>) format
|
2017-12-28 00:37:13 +01:00
|
|
|
pos = req.indexOf("&MS=");
|
|
|
|
if (pos > 0) {
|
|
|
|
int i = req.substring(pos + 4).toInt();
|
2017-12-30 01:16:00 +01:00
|
|
|
pos = req.indexOf('(') +1;
|
2017-12-28 00:37:13 +01:00
|
|
|
if (pos > 0) {
|
2017-12-30 01:16:00 +01:00
|
|
|
int en = req.indexOf(')');
|
2017-12-28 00:37:13 +01:00
|
|
|
String mc = req.substring(pos);
|
|
|
|
if (en > 0) mc = req.substring(pos, en);
|
|
|
|
saveMacro(i, mc);
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = req.indexOf("IN");
|
2018-09-28 23:53:51 +02:00
|
|
|
if (pos < 1) XML_response(true);
|
2017-12-28 00:37:13 +01:00
|
|
|
return true;
|
|
|
|
//if you save a macro in one request, other commands in that request are ignored due to unwanted behavior otherwise
|
|
|
|
}
|
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//set brigthness
|
2017-12-02 23:58:22 +01:00
|
|
|
pos = req.indexOf("&A=");
|
2016-11-19 19:39:17 +01:00
|
|
|
if (pos > 0) {
|
2017-12-02 23:58:22 +01:00
|
|
|
bri = req.substring(pos + 3).toInt();
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2018-02-28 00:27:10 +01:00
|
|
|
|
|
|
|
//set hue
|
|
|
|
pos = req.indexOf("HU=");
|
|
|
|
if (pos > 0) {
|
|
|
|
uint16_t temphue = req.substring(pos + 3).toInt();
|
2018-03-14 13:16:28 +01:00
|
|
|
byte tempsat = 255;
|
2018-02-28 00:27:10 +01:00
|
|
|
pos = req.indexOf("SA=");
|
|
|
|
if (pos > 0) {
|
|
|
|
tempsat = req.substring(pos + 3).toInt();
|
|
|
|
}
|
2018-03-14 13:16:28 +01:00
|
|
|
colorHStoRGB(temphue,tempsat,(req.indexOf("H2")>0)? colSec:col);
|
2018-02-28 00:27:10 +01:00
|
|
|
}
|
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//set red value
|
2017-12-11 23:59:12 +01:00
|
|
|
pos = req.indexOf("&R=");
|
2016-11-19 19:39:17 +01:00
|
|
|
if (pos > 0) {
|
2017-12-11 23:59:12 +01:00
|
|
|
col[0] = req.substring(pos + 3).toInt();
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2017-11-19 15:31:17 +01:00
|
|
|
//set green value
|
2017-12-11 23:59:12 +01:00
|
|
|
pos = req.indexOf("&G=");
|
2016-11-19 19:39:17 +01:00
|
|
|
if (pos > 0) {
|
2017-12-11 23:59:12 +01:00
|
|
|
col[1] = req.substring(pos + 3).toInt();
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2017-11-19 15:31:17 +01:00
|
|
|
//set blue value
|
2017-12-11 23:59:12 +01:00
|
|
|
pos = req.indexOf("&B=");
|
2016-11-19 19:39:17 +01:00
|
|
|
if (pos > 0) {
|
2017-12-11 23:59:12 +01:00
|
|
|
col[2] = req.substring(pos + 3).toInt();
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2017-11-19 15:31:17 +01:00
|
|
|
//set white value
|
2017-12-11 23:59:12 +01:00
|
|
|
pos = req.indexOf("&W=");
|
2017-10-12 17:09:59 +02:00
|
|
|
if (pos > 0) {
|
2017-12-11 23:59:12 +01:00
|
|
|
white = req.substring(pos + 3).toInt();
|
2017-10-12 17:09:59 +02:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
2017-11-28 16:04:11 +01:00
|
|
|
//set 2nd red value
|
|
|
|
pos = req.indexOf("R2=");
|
|
|
|
if (pos > 0) {
|
2018-03-14 13:16:28 +01:00
|
|
|
colSec[0] = req.substring(pos + 3).toInt();
|
2017-11-28 16:04:11 +01:00
|
|
|
}
|
|
|
|
//set 2nd green value
|
|
|
|
pos = req.indexOf("G2=");
|
|
|
|
if (pos > 0) {
|
2018-03-14 13:16:28 +01:00
|
|
|
colSec[1] = req.substring(pos + 3).toInt();
|
2017-11-28 16:04:11 +01:00
|
|
|
}
|
|
|
|
//set 2nd blue value
|
|
|
|
pos = req.indexOf("B2=");
|
|
|
|
if (pos > 0) {
|
2018-03-14 13:16:28 +01:00
|
|
|
colSec[2] = req.substring(pos + 3).toInt();
|
2017-11-28 16:04:11 +01:00
|
|
|
}
|
|
|
|
//set 2nd white value
|
|
|
|
pos = req.indexOf("W2=");
|
|
|
|
if (pos > 0) {
|
2018-03-14 13:16:28 +01:00
|
|
|
whiteSec = req.substring(pos + 3).toInt();
|
2017-11-28 16:04:11 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
2018-09-28 23:53:51 +02:00
|
|
|
//set color from HEX or 32bit DEC
|
|
|
|
pos = req.indexOf("CL=");
|
|
|
|
if (pos > 0) {
|
|
|
|
colorFromDecOrHexString(col, &white, (char*)req.substring(pos + 3).c_str());
|
|
|
|
}
|
|
|
|
pos = req.indexOf("C2=");
|
|
|
|
if (pos > 0) {
|
|
|
|
colorFromDecOrHexString(colSec, &whiteSec, (char*)req.substring(pos + 3).c_str());
|
|
|
|
}
|
|
|
|
|
2017-12-11 23:59:12 +01:00
|
|
|
//set 2nd to white
|
|
|
|
pos = req.indexOf("SW");
|
|
|
|
if (pos > 0) {
|
|
|
|
if(useRGBW) {
|
2018-03-14 13:16:28 +01:00
|
|
|
whiteSec = 255;
|
|
|
|
colSec[0] = 0;
|
|
|
|
colSec[1] = 0;
|
|
|
|
colSec[2] = 0;
|
2017-12-11 23:59:12 +01:00
|
|
|
} else {
|
2018-03-14 13:16:28 +01:00
|
|
|
colSec[0] = 255;
|
|
|
|
colSec[1] = 255;
|
|
|
|
colSec[2] = 255;
|
2017-12-11 23:59:12 +01:00
|
|
|
}
|
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-12-11 23:59:12 +01:00
|
|
|
//set 2nd to black
|
|
|
|
pos = req.indexOf("SB");
|
|
|
|
if (pos > 0) {
|
2018-03-14 13:16:28 +01:00
|
|
|
whiteSec = 0;
|
|
|
|
colSec[0] = 0;
|
|
|
|
colSec[1] = 0;
|
|
|
|
colSec[2] = 0;
|
2017-12-11 23:59:12 +01:00
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-12-11 23:59:12 +01:00
|
|
|
//set to random hue SR=0->1st SR=1->2nd
|
|
|
|
pos = req.indexOf("SR");
|
|
|
|
if (pos > 0) {
|
|
|
|
_setRandomColor(req.substring(pos + 3).toInt());
|
|
|
|
}
|
|
|
|
//set 2nd to 1st
|
|
|
|
pos = req.indexOf("SP");
|
|
|
|
if (pos > 0) {
|
2018-03-14 13:16:28 +01:00
|
|
|
colSec[0] = col[0];
|
|
|
|
colSec[1] = col[1];
|
|
|
|
colSec[2] = col[2];
|
|
|
|
whiteSec = white;
|
2017-12-11 23:59:12 +01:00
|
|
|
}
|
|
|
|
//swap 2nd & 1st
|
|
|
|
pos = req.indexOf("SC");
|
|
|
|
if (pos > 0) {
|
2018-03-14 13:16:28 +01:00
|
|
|
byte _temp[4];
|
2017-12-11 23:59:12 +01:00
|
|
|
for (int i = 0; i<3; i++)
|
|
|
|
{
|
|
|
|
_temp[i] = col[i];
|
2018-03-14 13:16:28 +01:00
|
|
|
col[i] = colSec[i];
|
|
|
|
colSec[i] = _temp[i];
|
2017-12-11 23:59:12 +01:00
|
|
|
}
|
|
|
|
_temp[3] = white;
|
2018-03-14 13:16:28 +01:00
|
|
|
white = whiteSec;
|
|
|
|
whiteSec = _temp[3];
|
2017-12-11 23:59:12 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//set current effect index
|
2016-12-14 21:40:09 +01:00
|
|
|
pos = req.indexOf("FX=");
|
|
|
|
if (pos > 0) {
|
2016-12-17 23:43:07 +01:00
|
|
|
if (effectCurrent != req.substring(pos + 3).toInt())
|
|
|
|
{
|
|
|
|
effectCurrent = req.substring(pos + 3).toInt();
|
|
|
|
strip.setMode(effectCurrent);
|
|
|
|
effectUpdated = true;
|
|
|
|
}
|
2016-12-14 21:40:09 +01:00
|
|
|
}
|
2017-11-19 15:31:17 +01:00
|
|
|
//set effect speed
|
2016-12-31 00:38:51 +01:00
|
|
|
pos = req.indexOf("SX=");
|
2016-12-14 21:40:09 +01:00
|
|
|
if (pos > 0) {
|
2016-12-17 23:43:07 +01:00
|
|
|
if (effectSpeed != req.substring(pos + 3).toInt())
|
|
|
|
{
|
|
|
|
effectSpeed = req.substring(pos + 3).toInt();
|
|
|
|
strip.setSpeed(effectSpeed);
|
|
|
|
effectUpdated = true;
|
|
|
|
}
|
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
//set effect intensity
|
|
|
|
pos = req.indexOf("IX=");
|
|
|
|
if (pos > 0) {
|
|
|
|
if (effectIntensity != req.substring(pos + 3).toInt())
|
|
|
|
{
|
|
|
|
effectIntensity = req.substring(pos + 3).toInt();
|
|
|
|
strip.setIntensity(effectIntensity);
|
|
|
|
effectUpdated = true;
|
|
|
|
}
|
|
|
|
}
|
2018-09-06 02:05:56 +02:00
|
|
|
//set effect palette (only for FastLED effects)
|
|
|
|
pos = req.indexOf("FP=");
|
|
|
|
if (pos > 0) {
|
|
|
|
if (effectPalette != req.substring(pos + 3).toInt())
|
|
|
|
{
|
|
|
|
effectPalette = req.substring(pos + 3).toInt();
|
|
|
|
strip.setPalette(effectPalette);
|
|
|
|
effectUpdated = true;
|
|
|
|
}
|
|
|
|
}
|
2018-02-28 00:27:10 +01:00
|
|
|
|
|
|
|
//set hue polling light: 0 -off
|
|
|
|
pos = req.indexOf("HP=");
|
|
|
|
if (pos > 0) {
|
|
|
|
int id = req.substring(pos + 3).toInt();
|
|
|
|
if (id > 0)
|
|
|
|
{
|
|
|
|
if (id < 100) huePollLightId = id;
|
|
|
|
setupHue();
|
|
|
|
} else {
|
|
|
|
huePollingEnabled = false;
|
|
|
|
}
|
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//set default control mode (0 - RGB, 1 - HSB)
|
2017-05-07 23:51:42 +02:00
|
|
|
pos = req.indexOf("MD=");
|
|
|
|
if (pos > 0) {
|
|
|
|
useHSB = req.substring(pos + 3).toInt();
|
|
|
|
}
|
2017-11-19 15:31:17 +01:00
|
|
|
//set advanced overlay
|
2016-12-31 21:10:33 +01:00
|
|
|
pos = req.indexOf("OL=");
|
|
|
|
if (pos > 0) {
|
|
|
|
overlayCurrent = req.substring(pos + 3).toInt();
|
|
|
|
strip.unlockAll();
|
|
|
|
}
|
2017-11-19 15:31:17 +01:00
|
|
|
//(un)lock pixel (ranges)
|
2017-11-29 23:56:02 +01:00
|
|
|
pos = req.indexOf("&L=");
|
2017-11-19 15:31:17 +01:00
|
|
|
if (pos > 0){
|
2017-11-29 23:56:02 +01:00
|
|
|
int index = req.substring(pos + 3).toInt();
|
2017-11-19 15:31:17 +01:00
|
|
|
pos = req.indexOf("L2=");
|
|
|
|
if (pos > 0){
|
|
|
|
int index2 = req.substring(pos + 3).toInt();
|
2017-12-12 15:54:23 +01:00
|
|
|
if (req.indexOf("UL") > 0)
|
2017-11-19 15:31:17 +01:00
|
|
|
{
|
|
|
|
strip.unlockRange(index, index2);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
strip.lockRange(index, index2);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
2017-12-12 15:54:23 +01:00
|
|
|
if (req.indexOf("UL") > 0)
|
2017-11-19 15:31:17 +01:00
|
|
|
{
|
|
|
|
strip.unlock(index);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
strip.lock(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-12-28 00:37:13 +01:00
|
|
|
//apply macro
|
|
|
|
pos = req.indexOf("&M=");
|
|
|
|
if (pos > 0) {
|
|
|
|
applyMacro(req.substring(pos + 3).toInt());
|
|
|
|
}
|
2017-11-19 15:31:17 +01:00
|
|
|
//toggle send UDP direct notifications
|
2017-05-07 23:51:42 +02:00
|
|
|
if (req.indexOf("SN=") > 0)
|
2016-12-14 21:40:09 +01:00
|
|
|
{
|
2017-05-08 21:46:04 +02:00
|
|
|
notifyDirect = true;
|
2017-05-07 23:51:42 +02:00
|
|
|
if (req.indexOf("SN=0") > 0)
|
2016-12-14 21:40:09 +01:00
|
|
|
{
|
2017-05-08 21:46:04 +02:00
|
|
|
notifyDirect = false;
|
2016-12-14 21:40:09 +01:00
|
|
|
}
|
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//toggle receive UDP direct notifications
|
2017-05-07 23:51:42 +02:00
|
|
|
if (req.indexOf("RN=") > 0)
|
2016-12-14 21:40:09 +01:00
|
|
|
{
|
|
|
|
receiveNotifications = true;
|
2017-05-07 23:51:42 +02:00
|
|
|
if (req.indexOf("RN=0") > 0)
|
2016-12-14 21:40:09 +01:00
|
|
|
{
|
|
|
|
receiveNotifications = false;
|
|
|
|
}
|
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//toggle nightlight mode
|
2018-04-15 15:27:54 +02:00
|
|
|
bool aNlDef = false;
|
|
|
|
if (req.indexOf("&ND") > 0) aNlDef = true;
|
2018-02-23 01:33:32 +01:00
|
|
|
pos = req.indexOf("NL=");
|
|
|
|
if (pos > 0)
|
2016-11-19 19:39:17 +01:00
|
|
|
{
|
|
|
|
if (req.indexOf("NL=0") > 0)
|
|
|
|
{
|
|
|
|
nightlightActive = false;
|
2018-03-14 13:16:28 +01:00
|
|
|
bri = briT;
|
2016-11-19 19:39:17 +01:00
|
|
|
} else {
|
|
|
|
nightlightActive = true;
|
2018-04-15 15:27:54 +02:00
|
|
|
if (!aNlDef) nightlightDelayMins = req.substring(pos + 3).toInt();
|
2016-11-19 19:39:17 +01:00
|
|
|
nightlightStartTime = millis();
|
|
|
|
}
|
2018-04-15 15:27:54 +02:00
|
|
|
} else if (aNlDef)
|
|
|
|
{
|
|
|
|
nightlightActive = true;
|
|
|
|
nightlightStartTime = millis();
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-12-19 16:12:51 +01:00
|
|
|
//set nightlight target brightness
|
|
|
|
pos = req.indexOf("NT=");
|
|
|
|
if (pos > 0) {
|
2018-02-20 22:29:48 +01:00
|
|
|
nightlightTargetBri = req.substring(pos + 3).toInt();
|
2018-03-14 13:16:28 +01:00
|
|
|
nightlightActiveOld = false; //re-init
|
2017-12-19 16:12:51 +01:00
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-12-19 16:12:51 +01:00
|
|
|
//toggle nightlight fade
|
|
|
|
if (req.indexOf("NF=") > 0)
|
|
|
|
{
|
|
|
|
if (req.indexOf("NF=0") > 0)
|
|
|
|
{
|
|
|
|
nightlightFade = false;
|
|
|
|
} else {
|
|
|
|
nightlightFade = true;
|
|
|
|
}
|
2018-03-14 13:16:28 +01:00
|
|
|
nightlightActiveOld = false; //re-init
|
2017-12-19 16:12:51 +01:00
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//toggle general purpose output
|
2017-01-27 22:59:01 +01:00
|
|
|
pos = req.indexOf("AX=");
|
|
|
|
if (pos > 0) {
|
2017-02-07 13:00:33 +01:00
|
|
|
auxTime = req.substring(pos + 3).toInt();
|
|
|
|
auxActive = true;
|
|
|
|
if (auxTime == 0) auxActive = false;
|
|
|
|
}
|
2018-04-11 23:50:35 +02:00
|
|
|
pos = req.indexOf("TT=");
|
|
|
|
if (pos > 0) {
|
|
|
|
transitionDelay = req.substring(pos + 3).toInt();
|
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//main toggle on/off
|
2017-12-11 23:59:12 +01:00
|
|
|
pos = req.indexOf("&T=");
|
2017-02-07 13:00:33 +01:00
|
|
|
if (pos > 0) {
|
2018-10-06 14:53:15 +02:00
|
|
|
nightlightActive = false; //always disable nightlight when toggling
|
2017-12-11 23:59:12 +01:00
|
|
|
switch (req.substring(pos + 3).toInt())
|
2017-02-07 13:00:33 +01:00
|
|
|
{
|
2018-03-14 13:16:28 +01:00
|
|
|
case 0: if (bri != 0){briLast = bri; bri = 0;} break; //off
|
|
|
|
case 1: bri = briLast; break; //on
|
2017-02-07 13:00:33 +01:00
|
|
|
default: if (bri == 0) //toggle
|
|
|
|
{
|
2018-03-14 13:16:28 +01:00
|
|
|
bri = briLast;
|
2017-02-07 13:00:33 +01:00
|
|
|
} else
|
|
|
|
{
|
2018-03-14 13:16:28 +01:00
|
|
|
briLast = bri;
|
2017-02-07 13:00:33 +01:00
|
|
|
bri = 0;
|
|
|
|
}
|
|
|
|
}
|
2017-01-27 22:59:01 +01:00
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2018-05-31 19:26:16 +02:00
|
|
|
//deactivate nightlight if target brightness is reached
|
|
|
|
if (bri == nightlightTargetBri) nightlightActive = false;
|
2017-12-11 23:59:12 +01:00
|
|
|
//set time (unix timestamp)
|
|
|
|
pos = req.indexOf("ST=");
|
|
|
|
if (pos > 0) {
|
|
|
|
setTime(req.substring(pos+3).toInt());
|
|
|
|
}
|
2018-09-04 15:51:38 +02:00
|
|
|
|
2017-12-28 00:37:13 +01:00
|
|
|
//set countdown goal (unix timestamp)
|
|
|
|
pos = req.indexOf("CT=");
|
|
|
|
if (pos > 0) {
|
|
|
|
countdownTime = req.substring(pos+3).toInt();
|
2018-01-14 00:53:16 +01:00
|
|
|
if (countdownTime - now() > 0) countdownOverTriggered = false;
|
2017-12-28 00:37:13 +01:00
|
|
|
}
|
2018-02-20 22:29:48 +01:00
|
|
|
|
2017-11-30 23:35:22 +01:00
|
|
|
//set presets
|
2018-05-10 19:55:58 +02:00
|
|
|
pos = req.indexOf("P1="); //sets first preset for cycle
|
|
|
|
if (pos > 0) presetCycleMin = req.substring(pos + 3).toInt();
|
|
|
|
|
|
|
|
pos = req.indexOf("P2="); //sets last preset for cycle
|
|
|
|
if (pos > 0) presetCycleMax = req.substring(pos + 3).toInt();
|
|
|
|
|
2018-04-11 23:50:35 +02:00
|
|
|
if (req.indexOf("CY=") > 0) //preset cycle
|
|
|
|
{
|
|
|
|
presetCyclingEnabled = true;
|
|
|
|
if (req.indexOf("CY=0") > 0)
|
|
|
|
{
|
|
|
|
presetCyclingEnabled = false;
|
|
|
|
}
|
2018-05-10 19:55:58 +02:00
|
|
|
presetCycCurr = presetCycleMin;
|
2018-04-11 23:50:35 +02:00
|
|
|
}
|
|
|
|
pos = req.indexOf("PT="); //sets cycle time in ms
|
|
|
|
if (pos > 0) {
|
|
|
|
int v = req.substring(pos + 3).toInt();
|
|
|
|
if (v > 49) presetCycleTime = v;
|
|
|
|
}
|
2018-05-10 19:55:58 +02:00
|
|
|
if (req.indexOf("PA=") > 0) //apply brightness from preset
|
|
|
|
{
|
|
|
|
presetApplyBri = true;
|
|
|
|
if (req.indexOf("PA=0") > 0) presetApplyBri = false;
|
2017-12-02 23:58:22 +01:00
|
|
|
}
|
2018-05-10 19:55:58 +02:00
|
|
|
if (req.indexOf("PC=") > 0) //apply color from preset
|
|
|
|
{
|
|
|
|
presetApplyCol = true;
|
|
|
|
if (req.indexOf("PC=0") > 0) presetApplyCol = false;
|
2017-12-02 23:58:22 +01:00
|
|
|
}
|
2018-05-10 19:55:58 +02:00
|
|
|
if (req.indexOf("PX=") > 0) //apply effects from preset
|
|
|
|
{
|
|
|
|
presetApplyFx = true;
|
|
|
|
if (req.indexOf("PX=0") > 0) presetApplyFx = false;
|
2017-12-02 23:58:22 +01:00
|
|
|
}
|
2018-05-10 19:55:58 +02:00
|
|
|
pos = req.indexOf("PS="); //saves current in preset
|
2017-12-02 23:58:22 +01:00
|
|
|
if (pos > 0) {
|
2018-05-10 19:55:58 +02:00
|
|
|
savePreset(req.substring(pos + 3).toInt());
|
2017-11-30 23:35:22 +01:00
|
|
|
}
|
2018-05-10 19:55:58 +02:00
|
|
|
pos = req.indexOf("PL="); //applies entire preset
|
2017-11-30 23:35:22 +01:00
|
|
|
if (pos > 0) {
|
2018-05-10 19:55:58 +02:00
|
|
|
applyPreset(req.substring(pos + 3).toInt(), presetApplyBri, presetApplyCol, presetApplyFx);
|
|
|
|
if (presetApplyFx) effectUpdated = true;
|
2017-11-30 23:35:22 +01:00
|
|
|
}
|
2018-03-06 23:47:08 +01:00
|
|
|
|
|
|
|
//cronixie
|
2017-12-16 00:04:04 +01:00
|
|
|
pos = req.indexOf("NX="); //sets digits to code
|
|
|
|
if (pos > 0) {
|
2018-07-21 23:21:07 +02:00
|
|
|
strcpy(cronixieDisplay,req.substring(pos + 3, pos + 9).c_str());
|
2018-03-06 23:47:08 +01:00
|
|
|
setCronixie();
|
2017-12-16 00:04:04 +01:00
|
|
|
}
|
2017-12-28 00:37:13 +01:00
|
|
|
pos = req.indexOf("NM="); //mode, 1 countdown
|
2017-12-19 16:12:51 +01:00
|
|
|
if (pos > 0) {
|
2018-03-14 00:25:54 +01:00
|
|
|
countdownMode = true;
|
2017-12-28 00:37:13 +01:00
|
|
|
if (req.indexOf("NM=0") > 0)
|
|
|
|
{
|
2018-03-14 00:25:54 +01:00
|
|
|
countdownMode = false;
|
2017-12-28 00:37:13 +01:00
|
|
|
}
|
2017-12-19 16:12:51 +01:00
|
|
|
}
|
|
|
|
if (req.indexOf("NB=") > 0) //sets backlight
|
|
|
|
{
|
|
|
|
cronixieBacklight = true;
|
|
|
|
if (req.indexOf("NB=0") > 0)
|
|
|
|
{
|
|
|
|
cronixieBacklight = false;
|
|
|
|
}
|
2018-09-22 22:49:24 +02:00
|
|
|
if (overlayCurrent == 3) strip.setCronixieBacklight(cronixieBacklight);
|
2018-03-06 23:47:08 +01:00
|
|
|
overlayRefreshedTime = 0;
|
2017-12-19 16:12:51 +01:00
|
|
|
}
|
2018-04-24 12:03:25 +02:00
|
|
|
pos = req.indexOf("U0="); //user var 0
|
|
|
|
if (pos > 0) {
|
|
|
|
userVar0 = req.substring(pos + 3).toInt();
|
|
|
|
}
|
|
|
|
pos = req.indexOf("U1="); //user var 1
|
|
|
|
if (pos > 0) {
|
|
|
|
userVar1 = req.substring(pos + 3).toInt();
|
|
|
|
}
|
|
|
|
//you can add more if you need
|
|
|
|
|
2017-11-19 15:31:17 +01:00
|
|
|
//internal call, does not send XML response
|
2017-02-21 23:59:47 +01:00
|
|
|
pos = req.indexOf("IN");
|
2018-09-28 23:53:51 +02:00
|
|
|
if (pos < 1) XML_response(true);
|
2017-11-19 15:31:17 +01:00
|
|
|
//do not send UDP notifications this time
|
2017-02-21 23:59:47 +01:00
|
|
|
pos = req.indexOf("NN");
|
|
|
|
if (pos > 0)
|
|
|
|
{
|
|
|
|
colorUpdated(5);
|
|
|
|
return true;
|
|
|
|
}
|
2016-12-14 23:40:47 +01:00
|
|
|
if (effectUpdated)
|
|
|
|
{
|
|
|
|
colorUpdated(6);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
colorUpdated(1);
|
|
|
|
}
|
2016-11-19 19:39:17 +01:00
|
|
|
return true;
|
|
|
|
}
|