WLED/wled00/set.cpp

879 lines
26 KiB
C++
Raw Normal View History

2020-04-10 12:30:08 +02:00
#include "wled.h"
/*
* Receives client input
*/
2020-04-10 12:30:08 +02:00
void _setRandomColor(bool _sec,bool fromButton)
{
lastRandomIndex = strip.get_random_wheel_index(lastRandomIndex);
if (_sec){
colorHStoRGB(lastRandomIndex*256,255,colSec);
} else {
colorHStoRGB(lastRandomIndex*256,255,col);
}
if (fromButton) colorUpdated(2);
}
2018-09-17 11:15:08 +02:00
bool isAsterisksOnly(const char* str, byte maxLen)
{
for (byte i = 0; i < maxLen; i++) {
if (str[i] == 0) break;
if (str[i] != '*') return false;
}
2020-09-10 11:01:05 +02:00
//at this point the password contains asterisks only
return (str[0] != 0); //false on empty string
}
2018-09-17 11:15:08 +02:00
//called upon POST settings form submit
2019-02-16 00:21:22 +01:00
void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
{
//0: menu 1: wifi 2: leds 3: ui 4: sync 5: time 6: sec 7: DMX
if (subPage <1 || subPage >7) return;
2019-08-17 12:27:06 +02:00
2018-02-20 22:29:48 +01:00
//WIFI SETTINGS
if (subPage == 1)
{
2020-09-20 01:18:31 +02:00
strlcpy(clientSSID,request->arg(F("CS")).c_str(), 33);
2020-09-20 01:18:31 +02:00
if (!isAsterisksOnly(request->arg(F("CP")).c_str(), 65)) strlcpy(clientPass, request->arg(F("CP")).c_str(), 65);
2018-09-17 11:15:08 +02:00
2020-09-20 01:18:31 +02:00
strlcpy(cmDNS, request->arg(F("CM")).c_str(), 33);
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
apBehavior = request->arg(F("AB")).toInt();
strlcpy(apSSID, request->arg(F("AS")).c_str(), 33);
apHide = request->hasArg(F("AH"));
int passlen = request->arg(F("AP")).length();
if (passlen == 0 || (passlen > 7 && !isAsterisksOnly(request->arg(F("AP")).c_str(), 65))) strlcpy(apPass, request->arg(F("AP")).c_str(), 65);
int t = request->arg(F("AC")).toInt(); if (t > 0 && t < 14) apChannel = t;
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
noWifiSleep = request->hasArg(F("WS"));
#ifdef WLED_USE_ETHERNET
ethernetType = request->arg(F("ETH")).toInt();
#endif
2018-09-17 11:15:08 +02:00
char k[3]; k[2] = 0;
2018-07-21 23:21:07 +02:00
for (int i = 0; i<4; i++)
{
2018-09-17 11:15:08 +02:00
k[1] = i+48;//ascii 0,1,2,3
2019-08-17 12:27:06 +02:00
2018-07-21 23:21:07 +02:00
k[0] = 'I'; //static IP
2019-02-16 00:21:22 +01:00
staticIP[i] = request->arg(k).toInt();
2019-08-17 12:27:06 +02:00
2018-07-21 23:21:07 +02:00
k[0] = 'G'; //gateway
2019-02-16 00:21:22 +01:00
staticGateway[i] = request->arg(k).toInt();
2019-08-17 12:27:06 +02:00
2018-07-21 23:21:07 +02:00
k[0] = 'S'; //subnet
2019-02-16 00:21:22 +01:00
staticSubnet[i] = request->arg(k).toInt();
2016-11-27 16:45:54 +01:00
}
}
2018-02-20 22:29:48 +01:00
//LED SETTINGS
if (subPage == 2)
{
2021-01-17 00:20:31 +01:00
String LC=F("LC"), LP=F("LP"), LK=F("LK"), CO=F("CO"), LTsel=F("LTsel");
int8_t pin;
int t;
// deallocate all pins
for (uint8_t s=0; s<busses->getNumBuses(); s++) {
Bus *bus = busses->getBus(s);
pinManager.deallocatePin(bus->getPins()[0]);
pinManager.deallocatePin(bus->getPins()[1]);
}
if (rlyPin>=0 && pinManager.isPinAllocated(rlyPin)) pinManager.deallocatePin(rlyPin);
#ifndef WLED_DISABLE_INFRARED
if (irPin>=0 && pinManager.isPinAllocated(irPin)) pinManager.deallocatePin(irPin);
#endif
if (btnPin>=0 && pinManager.isPinAllocated(btnPin)) pinManager.deallocatePin(btnPin);
// remove all busses
busses->removeAll();
// initial bus
uint8_t colorOrder, type;
uint8_t ledType = request->arg(LTsel).toInt();
uint16_t length;
int8_t pins[2] = {-1,-1};
pins[0] = request->arg(LP).toInt();
if (pinManager.allocatePin(pins[0])) {
t = length = request->arg(LC).toInt();
if ( request->hasArg(LK.c_str()) ) {
pins[1] = (request->arg(LK)).length() > 0 ? request->arg(LK).toInt() : -1;
if (pinManager.allocatePin(pins[1])) {
} else {
// fallback
pins[1] = -1;
}
}
colorOrder = request->arg(CO).toInt();
type = request->arg(LTsel).toInt();
busses->add(type? TYPE_SK6812_RGBW : TYPE_WS2812_RGB, pins, 0, length, colorOrder);
} else {
// fallback
}
// secondary busses
for (uint8_t i=1; i<WLED_MAX_BUSSES; i++) {
if ( request->hasArg((LP+i).c_str()) ) {
pins[0] = request->arg((LP+i).c_str()).toInt();
if (pinManager.allocatePin(pins[0])) {
if ( request->hasArg((LK+i).c_str()) ) {
pins[1] = (request->arg(LK+i)).length() > 0 ? request->arg((LK+i).c_str()).toInt() : -1;
if (pins[1]>=0) {
pinManager.allocatePin(pins[1]);
}
}
} else {
DEBUG_PRINTLN(F("Pin not ok."));
type = TYPE_NONE;
break; // pin not ok
}
type = request->arg((LTsel+i).c_str()).toInt();
} else {
DEBUG_PRINTLN("No data.");
type = TYPE_NONE;
break; // no parameter
}
if ( request->hasArg((LC+i).c_str()) && request->arg((LC+i).c_str()).toInt() > 0 ) {
t += lenght = request->arg((LC+i).c_str()).toInt();
} else {
type = TYPE_NONE;
break; // no parameter
}
colorOrder = request->arg((CO+i).c_str()).toInt();
busses->add(type? TYPE_SK6812_RGBW : TYPE_WS2812_RGB, pins, 0, length, colorOrder);
}
// what to do with these?
2019-10-26 00:00:44 +02:00
if (t > 0 && t <= MAX_LEDS) ledCount = t;
#ifdef ESP8266
2021-01-17 00:20:31 +01:00
if ( pinManager.isPinAllocated(3) && ledCount > MAX_LEDS_DMA) ledCount = MAX_LEDS_DMA; //DMA method uses too much ram
#endif
2021-01-17 00:20:31 +01:00
// upate other pins
#ifndef WLED_DISABLE_INFRARED
int hw_ir_pin = request->arg(F("IR")).toInt();
if (pinManager.isPinOk(hw_ir_pin) && pinManager.allocatePin(hw_ir_pin,false)) {
irPin = hw_ir_pin;
} else {
irPin = -1;
}
2018-09-17 11:15:08 +02:00
#endif
2021-01-17 00:20:31 +01:00
int hw_rly_pin = request->arg(F("RL")).toInt();
if (pinManager.allocatePin(hw_rly_pin,true)) {
rlyPin = hw_rly_pin;
} else {
rlyPin = -1;
}
rlyMde = (bool)request->hasArg(F("RM"));
int hw_btn_pin = request->arg(F("BT")).toInt();
if (pinManager.allocatePin(hw_btn_pin,false)) {
btnPin = hw_btn_pin;
pinMode(btnPin, INPUT_PULLUP);
} else {
btnPin = -1;
}
int hw_aux_pin = request->arg(F("AX")).toInt();
if (pinManager.allocatePin(hw_aux_pin,true)) {
auxPin = hw_aux_pin;
} else {
auxPin = -1;
}
2020-09-20 01:18:31 +02:00
strip.ablMilliampsMax = request->arg(F("MA")).toInt();
strip.milliampsPerLed = request->arg(F("LA")).toInt();
2020-09-20 01:18:31 +02:00
useRGBW = request->hasArg(F("EW"));
strip.rgbwMode = request->arg(F("AW")).toInt();
2020-09-20 01:18:31 +02:00
briS = request->arg(F("CA")).toInt();
2020-09-20 01:18:31 +02:00
saveCurrPresetCycConf = request->hasArg(F("PC"));
turnOnAtBoot = request->hasArg(F("BO"));
t = request->arg(F("BP")).toInt();
2021-01-13 11:24:27 +01:00
if (t <= 250) bootPreset = t;
2020-09-20 01:18:31 +02:00
strip.gammaCorrectBri = request->hasArg(F("GB"));
strip.gammaCorrectCol = request->hasArg(F("GC"));
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
fadeTransition = request->hasArg(F("TF"));
t = request->arg(F("TD")).toInt();
2018-09-17 11:15:08 +02:00
if (t > 0) transitionDelay = t;
transitionDelayDefault = t;
2020-09-20 01:18:31 +02:00
strip.paletteFade = request->hasArg(F("PF"));
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
nightlightTargetBri = request->arg(F("TB")).toInt();
t = request->arg(F("TL")).toInt();
if (t > 0) nightlightDelayMinsDefault = t;
2019-09-19 21:15:20 +02:00
nightlightDelayMins = nightlightDelayMinsDefault;
2020-09-20 01:18:31 +02:00
nightlightMode = request->arg(F("TW")).toInt();
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
t = request->arg(F("PB")).toInt();
2018-09-17 11:15:08 +02:00
if (t >= 0 && t < 4) strip.paletteBlend = t;
2020-09-20 01:18:31 +02:00
strip.reverseMode = request->hasArg(F("RV"));
skipFirstLed = request->hasArg(F("SL"));
t = request->arg(F("BF")).toInt();
2018-09-17 11:15:08 +02:00
if (t > 0) briMultiplier = t;
}
2018-02-20 22:29:48 +01:00
//UI
if (subPage == 3)
{
2020-09-20 01:18:31 +02:00
strlcpy(serverDescription, request->arg(F("DS")).c_str(), 33);
syncToggleReceive = request->hasArg(F("ST"));
}
2018-02-20 22:29:48 +01:00
//SYNC
if (subPage == 4)
{
2020-09-20 01:18:31 +02:00
buttonEnabled = request->hasArg(F("BT"));
irEnabled = request->arg(F("IR")).toInt();
int t = request->arg(F("UP")).toInt();
2018-09-17 11:15:08 +02:00
if (t > 0) udpPort = t;
t = request->arg(F("U2")).toInt();
if (t > 0) udpPort2 = t;
2020-09-20 01:18:31 +02:00
receiveNotificationBrightness = request->hasArg(F("RB"));
receiveNotificationColor = request->hasArg(F("RC"));
receiveNotificationEffects = request->hasArg(F("RX"));
2018-02-20 22:29:48 +01:00
receiveNotifications = (receiveNotificationBrightness || receiveNotificationColor || receiveNotificationEffects);
2020-09-20 01:18:31 +02:00
notifyDirectDefault = request->hasArg(F("SD"));
2018-02-20 22:29:48 +01:00
notifyDirect = notifyDirectDefault;
2020-09-20 01:18:31 +02:00
notifyButton = request->hasArg(F("SB"));
notifyAlexa = request->hasArg(F("SA"));
notifyHue = request->hasArg(F("SH"));
notifyMacro = request->hasArg(F("SM"));
notifyTwice = request->hasArg(F("S2"));
receiveDirect = request->hasArg(F("RD"));
e131SkipOutOfSequence = request->hasArg(F("ES"));
e131Multicast = request->hasArg(F("EM"));
t = request->arg(F("EP")).toInt();
2020-04-13 00:42:27 +02:00
if (t > 0) e131Port = t;
2020-09-20 01:18:31 +02:00
t = request->arg(F("EU")).toInt();
2020-04-13 00:42:27 +02:00
if (t >= 0 && t <= 63999) e131Universe = t;
2020-09-20 01:18:31 +02:00
t = request->arg(F("DA")).toInt();
2020-04-13 00:42:27 +02:00
if (t >= 0 && t <= 510) DMXAddress = t;
2020-09-20 01:18:31 +02:00
t = request->arg(F("DM")).toInt();
if (t >= DMX_MODE_DISABLED && t <= DMX_MODE_MULTIPLE_RGBW) DMXMode = t;
2020-09-20 01:18:31 +02:00
t = request->arg(F("ET")).toInt();
2018-09-17 11:15:08 +02:00
if (t > 99 && t <= 65000) realtimeTimeoutMs = t;
2020-09-20 01:18:31 +02:00
arlsForceMaxBri = request->hasArg(F("FB"));
arlsDisableGammaCorrection = request->hasArg(F("RG"));
t = request->arg(F("WO")).toInt();
2018-09-17 11:15:08 +02:00
if (t >= -255 && t <= 255) arlsOffset = t;
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
alexaEnabled = request->hasArg(F("AL"));
strlcpy(alexaInvocationName, request->arg(F("AI")).c_str(), 33);
2019-08-17 12:27:06 +02:00
strlcpy(blynkHost, request->arg("BH").c_str(), 33);
t = request->arg(F("BP")).toInt();
if (t > 0) blynkPort = t;
2020-09-20 01:18:31 +02:00
if (request->hasArg("BK") && !request->arg("BK").equals(F("Hidden"))) {
strlcpy(blynkApiKey, request->arg("BK").c_str(), 36); initBlynk(blynkApiKey, blynkHost, blynkPort);
}
#ifdef WLED_ENABLE_MQTT
2020-09-20 01:18:31 +02:00
mqttEnabled = request->hasArg(F("MQ"));
strlcpy(mqttServer, request->arg(F("MS")).c_str(), 33);
t = request->arg(F("MQPORT")).toInt();
if (t > 0) mqttPort = t;
2020-09-20 01:18:31 +02:00
strlcpy(mqttUser, request->arg(F("MQUSER")).c_str(), 41);
if (!isAsterisksOnly(request->arg(F("MQPASS")).c_str(), 41)) strlcpy(mqttPass, request->arg(F("MQPASS")).c_str(), 41);
strlcpy(mqttClientID, request->arg(F("MQCID")).c_str(), 41);
strlcpy(mqttDeviceTopic, request->arg(F("MD")).c_str(), 33);
strlcpy(mqttGroupTopic, request->arg(F("MG")).c_str(), 33);
#endif
2019-08-17 12:27:06 +02:00
#ifndef WLED_DISABLE_HUESYNC
for (int i=0;i<4;i++){
String a = "H"+String(i);
2019-02-16 00:21:22 +01:00
hueIP[i] = request->arg(a).toInt();
}
2018-09-17 11:15:08 +02:00
2020-09-20 01:18:31 +02:00
t = request->arg(F("HL")).toInt();
2018-09-17 11:15:08 +02:00
if (t > 0) huePollLightId = t;
2020-09-20 01:18:31 +02:00
t = request->arg(F("HI")).toInt();
2018-09-17 11:15:08 +02:00
if (t > 50) huePollIntervalMs = t;
2020-09-20 01:18:31 +02:00
hueApplyOnOff = request->hasArg(F("HO"));
hueApplyBri = request->hasArg(F("HB"));
hueApplyColor = request->hasArg(F("HC"));
huePollingEnabled = request->hasArg(F("HP"));
2019-02-18 22:34:21 +01:00
hueStoreAllowed = true;
reconnectHue();
#endif
}
2018-02-20 22:29:48 +01:00
//TIME
if (subPage == 5)
{
2020-09-20 01:18:31 +02:00
ntpEnabled = request->hasArg(F("NT"));
strlcpy(ntpServerName, request->arg(F("NS")).c_str(), 33);
useAMPM = !request->hasArg(F("CF"));
currentTimezone = request->arg(F("TZ")).toInt();
utcOffsetSecs = request->arg(F("UO")).toInt();
//start ntp if not already connected
2019-10-18 13:26:39 +02:00
if (ntpEnabled && WLED_CONNECTED && !ntpConnected) ntpConnected = ntpUdp.begin(ntpLocalPort);
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
if (request->hasArg(F("OL"))) {
overlayDefault = request->arg(F("OL")).toInt();
overlayCurrent = overlayDefault;
}
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
overlayMin = request->arg(F("O1")).toInt();
overlayMax = request->arg(F("O2")).toInt();
analogClock12pixel = request->arg(F("OM")).toInt();
analogClock5MinuteMarks = request->hasArg(F("O5"));
analogClockSecondsTrail = request->hasArg(F("OS"));
strcpy(cronixieDisplay,request->arg(F("CX")).c_str());
cronixieBacklight = request->hasArg(F("CB"));
countdownMode = request->hasArg(F("CE"));
countdownYear = request->arg(F("CY")).toInt();
countdownMonth = request->arg(F("CI")).toInt();
countdownDay = request->arg(F("CD")).toInt();
countdownHour = request->arg(F("CH")).toInt();
countdownMin = request->arg(F("CM")).toInt();
countdownSec = request->arg(F("CS")).toInt();
2020-12-31 20:47:38 +01:00
setCountdown();
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
macroAlexaOn = request->arg(F("A0")).toInt();
macroAlexaOff = request->arg(F("A1")).toInt();
macroButton = request->arg(F("MP")).toInt();
macroLongPress = request->arg(F("ML")).toInt();
macroCountdown = request->arg(F("MC")).toInt();
macroNl = request->arg(F("MN")).toInt();
macroDoublePress = request->arg(F("MD")).toInt();
char k[3]; k[2] = 0;
for (int i = 0; i<8; i++)
{
k[1] = i+48;//ascii 0,1,2,3
2019-08-17 12:27:06 +02:00
k[0] = 'H'; //timer hours
2019-02-16 00:21:22 +01:00
timerHours[i] = request->arg(k).toInt();
2019-08-17 12:27:06 +02:00
k[0] = 'N'; //minutes
2019-02-16 00:21:22 +01:00
timerMinutes[i] = request->arg(k).toInt();
2019-08-17 12:27:06 +02:00
k[0] = 'T'; //macros
2019-02-16 00:21:22 +01:00
timerMacro[i] = request->arg(k).toInt();
2019-01-31 00:09:44 +01:00
k[0] = 'W'; //weekdays
2019-02-16 00:21:22 +01:00
timerWeekday[i] = request->arg(k).toInt();
}
}
2018-02-20 22:29:48 +01:00
//SECURITY
if (subPage == 6)
{
2020-09-20 01:18:31 +02:00
if (request->hasArg(F("RS"))) //complete factory reset
{
2020-11-06 22:12:48 +01:00
WLED_FS.format();
2020-12-10 16:27:23 +01:00
clearEEPROM();
2020-09-20 01:18:31 +02:00
serveMessage(request, 200, F("All Settings erased."), F("Connect to WLED-AP to setup again"),255);
doReboot = true;
2018-02-20 22:29:48 +01:00
}
bool pwdCorrect = !otaLock; //always allow access if ota not locked
2020-09-20 01:18:31 +02:00
if (request->hasArg(F("OP")))
{
2020-09-20 01:18:31 +02:00
if (otaLock && strcmp(otaPass,request->arg(F("OP")).c_str()) == 0)
2018-02-20 22:29:48 +01:00
{
pwdCorrect = true;
}
2020-09-20 01:18:31 +02:00
if (!otaLock && request->arg(F("OP")).length() > 0)
{
2020-09-20 01:18:31 +02:00
strlcpy(otaPass,request->arg(F("OP")).c_str(), 33);
}
}
2019-08-17 12:27:06 +02:00
if (pwdCorrect) //allow changes if correct pwd or no ota active
2018-02-20 22:29:48 +01:00
{
2020-09-20 01:18:31 +02:00
otaLock = request->hasArg(F("NO"));
wifiLock = request->hasArg(F("OW"));
aOtaEnabled = request->hasArg(F("AO"));
2018-02-20 22:29:48 +01:00
}
}
#ifdef WLED_ENABLE_DMX // include only if DMX is enabled
if (subPage == 7)
{
2020-09-20 01:18:31 +02:00
int t = request->arg(F("PU")).toInt();
if (t >= 0 && t <= 63999) e131ProxyUniverse = t;
2020-09-20 01:18:31 +02:00
t = request->arg(F("CN")).toInt();
if (t>0 && t<16) {
DMXChannels = t;
}
2020-09-20 01:18:31 +02:00
t = request->arg(F("CS")).toInt();
if (t>0 && t<513) {
DMXStart = t;
}
2020-09-20 01:18:31 +02:00
t = request->arg(F("CG")).toInt();
if (t>0 && t<513) {
DMXGap = t;
}
2020-09-20 01:18:31 +02:00
t = request->arg(F("SL")).toInt();
2020-04-10 12:30:08 +02:00
if (t>=0 && t < MAX_LEDS) {
DMXStartLED = t;
}
for (int i=0; i<15; i++) {
String argname = "CH" + String((i+1));
t = request->arg(argname).toInt();
DMXFixtureMap[i] = t;
}
}
#endif
2021-01-17 00:20:31 +01:00
2020-11-06 22:12:48 +01:00
if (subPage != 6 || !doReboot) serializeConfig(); //do not save if factory reset
2021-01-18 20:51:32 +01:00
if (subPage == 2) doInitStrip = true;
2019-01-09 22:52:42 +01:00
if (subPage == 4) alexaInit();
}
2018-11-25 00:00:02 +01:00
2019-02-22 22:53:33 +01:00
2018-11-25 00:00:02 +01:00
//helper to get int value at a position in string
2019-03-09 21:41:23 +01:00
int getNumVal(const String* req, uint16_t pos)
2018-11-25 00:00:02 +01:00
{
2019-02-22 22:53:33 +01:00
return req->substring(pos+3).toInt();
}
//helper to get int value at a position in string
2020-04-10 12:30:08 +02:00
bool updateVal(const String* req, const char* key, byte* val, byte minv, byte maxv)
2019-02-22 22:53:33 +01:00
{
int pos = req->indexOf(key);
if (pos < 1) return false;
2019-08-17 12:27:06 +02:00
2019-02-22 22:53:33 +01:00
if (req->charAt(pos+3) == '~') {
int out = getNumVal(req, pos+1);
if (out == 0)
{
if (req->charAt(pos+4) == '-')
{
*val = (*val <= minv)? maxv : *val -1;
} else {
*val = (*val >= maxv)? minv : *val +1;
}
} else {
out += *val;
if (out > maxv) out = maxv;
if (out < minv) out = minv;
*val = out;
}
} else
{
*val = getNumVal(req, pos);
}
return true;
2018-11-25 00:00:02 +01:00
}
//HTTP API request parser
bool handleSet(AsyncWebServerRequest *request, const String& req, bool apply)
{
if (!(req.indexOf("win") >= 0)) return false;
2018-09-17 11:15:08 +02:00
int pos = 0;
2020-09-20 01:18:31 +02:00
DEBUG_PRINT(F("API req: "));
DEBUG_PRINTLN(req);
2019-08-17 12:27:06 +02:00
strip.applyToAllSelected = false;
//snapshot to check if request changed values later, temporary.
byte prevCol[4] = {col[0], col[1], col[2], col[3]};
byte prevColSec[4] = {colSec[0], colSec[1], colSec[2], colSec[3]};
byte prevEffect = effectCurrent;
byte prevSpeed = effectSpeed;
byte prevIntensity = effectIntensity;
byte prevPalette = effectPalette;
2019-12-02 12:41:35 +01:00
2019-12-01 01:42:52 +01:00
//segment select (sets main segment)
byte prevMain = strip.getMainSegmentId();
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SM="));
2019-12-01 01:42:52 +01:00
if (pos > 0) {
strip.mainSegment = getNumVal(&req, pos);
}
byte selectedSeg = strip.getMainSegmentId();
if (selectedSeg != prevMain) setValuesFromMainSeg();
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SS="));
if (pos > 0) {
byte t = getNumVal(&req, pos);
if (t < strip.getMaxSegments()) selectedSeg = t;
}
WS2812FX::Segment& mainseg = strip.getSegment(selectedSeg);
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SV=")); //segment selected
if (pos > 0) {
byte t = getNumVal(&req, pos);
if (t == 2) {
for (uint8_t i = 0; i < strip.getMaxSegments(); i++)
{
strip.getSegment(i).setOption(SEG_OPTION_SELECTED, 0);
}
}
mainseg.setOption(SEG_OPTION_SELECTED, t);
}
2019-12-01 01:42:52 +01:00
uint16_t startI = mainseg.start;
uint16_t stopI = mainseg.stop;
uint8_t grpI = mainseg.grouping;
uint16_t spcI = mainseg.spacing;
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("&S=")); //segment start
2019-12-01 01:42:52 +01:00
if (pos > 0) {
startI = getNumVal(&req, pos);
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("S2=")); //segment stop
2019-12-01 01:42:52 +01:00
if (pos > 0) {
stopI = getNumVal(&req, pos);
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("GP=")); //segment grouping
if (pos > 0) {
grpI = getNumVal(&req, pos);
if (grpI == 0) grpI = 1;
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SP=")); //segment spacing
if (pos > 0) {
spcI = getNumVal(&req, pos);
}
strip.setSegment(selectedSeg, startI, stopI, grpI, spcI);
2019-12-01 01:42:52 +01:00
//set presets
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("P1=")); //sets first preset for cycle
if (pos > 0) presetCycleMin = getNumVal(&req, pos);
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("P2=")); //sets last preset for cycle
if (pos > 0) presetCycleMax = getNumVal(&req, pos);
//preset cycle
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("CY="));
if (pos > 0)
{
char cmd = req.charAt(pos+3);
if (cmd == '2') presetCyclingEnabled = !presetCyclingEnabled;
else presetCyclingEnabled = (cmd != '0');
presetCycCurr = presetCycleMin;
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("PT=")); //sets cycle time in ms
if (pos > 0) {
int v = getNumVal(&req, pos);
2020-05-18 16:36:31 +02:00
if (v > 100) presetCycleTime = v/100;
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("PS=")); //saves current in preset
2020-10-08 00:52:15 +02:00
if (pos > 0) savePreset(getNumVal(&req, pos));
//apply preset
if (updateVal(&req, "PL=", &presetCycCurr, presetCycleMin, presetCycleMax)) {
2020-10-08 00:52:15 +02:00
applyPreset(presetCycCurr);
}
2019-02-22 22:53:33 +01:00
//set brightness
updateVal(&req, "&A=", &bri);
//set colors
updateVal(&req, "&R=", &col[0]);
updateVal(&req, "&G=", &col[1]);
updateVal(&req, "&B=", &col[2]);
updateVal(&req, "&W=", &col[3]);
updateVal(&req, "R2=", &colSec[0]);
updateVal(&req, "G2=", &colSec[1]);
updateVal(&req, "B2=", &colSec[2]);
updateVal(&req, "W2=", &colSec[3]);
#ifdef WLED_ENABLE_LOXONE
//lox parser
pos = req.indexOf(F("LX=")); // Lox primary color
if (pos > 0) {
int lxValue = getNumVal(&req, pos);
if (parseLx(lxValue, col)) {
bri = 255;
nightlightActive = false; //always disable nightlight when toggling
}
}
pos = req.indexOf(F("LY=")); // Lox secondary color
if (pos > 0) {
int lxValue = getNumVal(&req, pos);
if(parseLx(lxValue, colSec)) {
bri = 255;
nightlightActive = false; //always disable nightlight when toggling
}
}
#endif
//set hue
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("HU="));
if (pos > 0) {
2018-11-25 00:00:02 +01:00
uint16_t temphue = getNumVal(&req, pos);
byte tempsat = 255;
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SA="));
if (pos > 0) {
2018-11-25 00:00:02 +01:00
tempsat = getNumVal(&req, pos);
}
2020-09-20 01:18:31 +02:00
colorHStoRGB(temphue,tempsat,(req.indexOf(F("H2"))>0)? colSec:col);
}
2019-08-17 12:27:06 +02:00
//set white spectrum (kelvin)
pos = req.indexOf(F("&K="));
if (pos > 0) {
colorKtoRGB(getNumVal(&req, pos),(req.indexOf(F("K2"))>0)? colSec:col);
}
//set color from HEX or 32bit DEC
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("CL="));
if (pos > 0) {
colorFromDecOrHexString(col, (char*)req.substring(pos + 3).c_str());
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("C2="));
if (pos > 0) {
colorFromDecOrHexString(colSec, (char*)req.substring(pos + 3).c_str());
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("C3="));
if (pos > 0) {
byte t[4];
colorFromDecOrHexString(t, (char*)req.substring(pos + 3).c_str());
if (selectedSeg != strip.getMainSegmentId()) {
strip.applyToAllSelected = true;
strip.setColor(2, t[0], t[1], t[2], t[3]);
} else {
2021-01-09 00:35:48 +01:00
strip.getSegment(selectedSeg).setColor(2,((t[0] << 16) + (t[1] << 8) + t[2] + (t[3] << 24)), selectedSeg);
}
}
2019-08-17 12:27:06 +02:00
//set to random hue SR=0->1st SR=1->2nd
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SR"));
if (pos > 0) {
2018-11-25 00:00:02 +01:00
_setRandomColor(getNumVal(&req, pos));
}
2019-08-17 12:27:06 +02:00
//swap 2nd & 1st
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SC"));
if (pos > 0) {
byte temp;
for (uint8_t i=0; i<4; i++)
{
temp = col[i];
col[i] = colSec[i];
colSec[i] = temp;
}
}
2019-08-17 12:27:06 +02:00
2019-02-22 22:53:33 +01:00
//set effect parameters
if (updateVal(&req, "FX=", &effectCurrent, 0, strip.getModeCount()-1)) presetCyclingEnabled = false;
updateVal(&req, "SX=", &effectSpeed);
updateVal(&req, "IX=", &effectIntensity);
updateVal(&req, "FP=", &effectPalette, 0, strip.getPaletteCount()-1);
//set advanced overlay
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("OL="));
if (pos > 0) {
2018-11-25 00:00:02 +01:00
overlayCurrent = getNumVal(&req, pos);
}
2020-11-06 22:12:48 +01:00
//apply macro (deprecated, added for compatibility with pre-0.11 automations)
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("&M="));
if (pos > 0) {
2020-11-06 22:12:48 +01:00
applyPreset(getNumVal(&req, pos) + 16);
}
2019-08-17 12:27:06 +02:00
//toggle send UDP direct notifications
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SN="));
2019-02-22 22:53:33 +01:00
if (pos > 0) notifyDirect = (req.charAt(pos+3) != '0');
2019-08-17 12:27:06 +02:00
//toggle receive UDP direct notifications
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("RN="));
2019-02-22 22:53:33 +01:00
if (pos > 0) receiveNotifications = (req.charAt(pos+3) != '0');
//receive live data via UDP/Hyperion
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("RD="));
if (pos > 0) receiveDirect = (req.charAt(pos+3) != '0');
2019-08-17 12:27:06 +02:00
//main toggle on/off (parse before nightlight, #1214)
pos = req.indexOf(F("&T="));
if (pos > 0) {
nightlightActive = false; //always disable nightlight when toggling
switch (getNumVal(&req, pos))
{
case 0: if (bri != 0){briLast = bri; bri = 0;} break; //off, only if it was previously on
case 1: if (bri == 0) bri = briLast; break; //on, only if it was previously off
default: toggleOnOff(); //toggle
}
}
//toggle nightlight mode
bool aNlDef = false;
2020-09-20 01:18:31 +02:00
if (req.indexOf(F("&ND")) > 0) aNlDef = true;
pos = req.indexOf(F("NL="));
if (pos > 0)
{
2019-02-22 22:53:33 +01:00
if (req.charAt(pos+3) == '0')
{
nightlightActive = false;
} else {
nightlightActive = true;
2018-11-25 00:00:02 +01:00
if (!aNlDef) nightlightDelayMins = getNumVal(&req, pos);
nightlightStartTime = millis();
}
} else if (aNlDef)
{
nightlightActive = true;
nightlightStartTime = millis();
}
2019-08-17 12:27:06 +02:00
//set nightlight target brightness
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("NT="));
if (pos > 0) {
2018-11-25 00:00:02 +01:00
nightlightTargetBri = getNumVal(&req, pos);
nightlightActiveOld = false; //re-init
}
2019-08-17 12:27:06 +02:00
//toggle nightlight fade
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("NF="));
2019-02-22 22:53:33 +01:00
if (pos > 0)
{
nightlightMode = getNumVal(&req, pos);
nightlightActiveOld = false; //re-init
}
if (nightlightMode > NL_MODE_SUN) nightlightMode = NL_MODE_SUN;
2019-02-25 19:14:13 +01:00
//toggle general purpose output
2021-01-17 00:20:31 +01:00
if (auxPin>=0) {
pos = req.indexOf(F("AX="));
if (pos > 0) {
auxTime = getNumVal(&req, pos);
auxActive = true;
if (auxTime == 0) auxActive = false;
}
}
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("TT="));
2019-02-22 22:53:33 +01:00
if (pos > 0) transitionDelay = getNumVal(&req, pos);
2019-03-01 17:10:42 +01:00
//Segment reverse
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("RV="));
if (pos > 0) strip.getSegment(selectedSeg).setOption(SEG_OPTION_REVERSED, req.charAt(pos+3) != '0');
2020-08-07 00:50:19 +02:00
//Segment reverse
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("MI="));
if (pos > 0) strip.getSegment(selectedSeg).setOption(SEG_OPTION_MIRROR, req.charAt(pos+3) != '0');
2020-08-07 00:50:19 +02:00
//Segment brightness/opacity
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("SB="));
if (pos > 0) {
byte segbri = getNumVal(&req, pos);
2021-01-09 00:35:48 +01:00
strip.getSegment(selectedSeg).setOption(SEG_OPTION_ON, segbri, selectedSeg);
if (segbri) {
2021-01-09 00:35:48 +01:00
strip.getSegment(selectedSeg).setOpacity(segbri, selectedSeg);
}
}
2019-08-17 12:27:06 +02:00
//set time (unix timestamp)
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("ST="));
if (pos > 0) {
2018-11-25 00:00:02 +01:00
setTime(getNumVal(&req, pos));
}
2019-08-17 12:27:06 +02:00
//set countdown goal (unix timestamp)
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("CT="));
if (pos > 0) {
2018-11-25 00:00:02 +01:00
countdownTime = getNumVal(&req, pos);
if (countdownTime - now() > 0) countdownOverTriggered = false;
}
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("LO="));
if (pos > 0) {
realtimeOverride = getNumVal(&req, pos);
if (realtimeOverride > 2) realtimeOverride = REALTIME_OVERRIDE_ALWAYS;
}
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("RB"));
if (pos > 0) doReboot = true;
//cronixie
2019-03-01 17:10:42 +01:00
#ifndef WLED_DISABLE_CRONIXIE
2020-01-01 01:04:54 +01:00
//mode, 1 countdown
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("NM="));
2020-01-01 01:04:54 +01:00
if (pos > 0) countdownMode = (req.charAt(pos+3) != '0');
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("NX=")); //sets digits to code
if (pos > 0) {
2019-11-13 01:20:14 +01:00
strlcpy(cronixieDisplay, req.substring(pos + 3, pos + 9).c_str(), 6);
setCronixie();
}
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("NB="));
if (pos > 0) //sets backlight
{
cronixieBacklight = (req.charAt(pos+3) != '0');
overlayRefreshedTime = 0;
}
2019-03-01 17:10:42 +01:00
#endif
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("U0=")); //user var 0
if (pos > 0) {
2018-11-25 00:00:02 +01:00
userVar0 = getNumVal(&req, pos);
}
2019-08-17 12:27:06 +02:00
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("U1=")); //user var 1
if (pos > 0) {
2018-11-25 00:00:02 +01:00
userVar1 = getNumVal(&req, pos);
}
//you can add more if you need
2019-08-17 12:27:06 +02:00
//apply to all selected manually to prevent #1618. Temporary
bool col0Changed = false, col1Changed = false;
for (uint8_t i = 0; i < 4; i++) {
if (col[i] != prevCol[i]) col0Changed = true;
if (colSec[i] != prevColSec[i]) col1Changed = true;
}
for (uint8_t i = 0; i < strip.getMaxSegments(); i++)
{
WS2812FX::Segment& seg = strip.getSegment(i);
if (!seg.isSelected()) continue;
if (effectCurrent != prevEffect) seg.mode = effectCurrent;
if (effectSpeed != prevSpeed) seg.speed = effectSpeed;
if (effectIntensity != prevIntensity) seg.intensity = effectIntensity;
if (effectPalette != prevPalette) seg.palette = effectPalette;
}
if (col0Changed) {
if (selectedSeg == strip.getMainSegmentId()) {
strip.applyToAllSelected = true;
strip.setColor(0, colorFromRgbw(col));
}
}
if (col1Changed) {
if (selectedSeg == strip.getMainSegmentId()) {
strip.applyToAllSelected = true;
strip.setColor(1, colorFromRgbw(colSec));
}
}
//end of temporary fix code
if (!apply) return true; //when called by JSON API, do not call colorUpdated() here
//internal call, does not send XML response
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("IN"));
if (pos < 1) XML_response(request);
2019-08-17 12:27:06 +02:00
strip.applyToAllSelected = false;
2020-09-20 01:18:31 +02:00
pos = req.indexOf(F("&NN")); //do not send UDP notifications this time
2020-02-22 16:17:32 +01:00
colorUpdated((pos > 0) ? NOTIFIER_CALL_MODE_NO_NOTIFY : NOTIFIER_CALL_MODE_DIRECT_CHANGE);
2019-08-17 12:27:06 +02:00
return true;
}