945839e3d3
added udpPort = 0 as off implement all settings setters (notifyNightlight \n udpPort) De-implement notification fwd and led_amount settings descriptive text / title (server side + settings) nightlight function different after brightness than 0
155 lines
3.8 KiB
C++
155 lines
3.8 KiB
C++
void XML_response()
|
|
{
|
|
String resp;
|
|
resp = resp + "<?xml version = \"1.0\" ?>";
|
|
resp = resp + "<vs>";
|
|
resp = resp + "<act>";
|
|
if (nightlightActive && nightlightFade)
|
|
{
|
|
resp = resp + bri_t;
|
|
} else
|
|
{
|
|
resp = resp + bri;
|
|
}
|
|
resp = resp + "</act>";
|
|
|
|
for (int i = 0; i < 3; i++)
|
|
{
|
|
resp = resp + "<cl>";
|
|
resp = resp + col[i];
|
|
resp = resp + "</cl>";
|
|
}
|
|
resp = resp + "<nl>";
|
|
resp = resp + nightlightActive;
|
|
resp = resp + "</nl>";
|
|
resp = resp + "<desc>";
|
|
resp = resp + serverDescription;
|
|
resp = resp + "</desc>";
|
|
//enable toolbar here
|
|
resp = resp + "</vs>";
|
|
server.send(200, "text/xml", resp);
|
|
}
|
|
|
|
void XML_response_settings()
|
|
{
|
|
Serial.println("XML settings response");
|
|
String resp;
|
|
resp = resp + "<?xml version = \"1.0\" ?>";
|
|
resp = resp + "<vs>";
|
|
resp = resp + "<cssid>";
|
|
resp = resp + clientssid;
|
|
resp = resp + "</cssid>";
|
|
resp = resp + "<cpass>";
|
|
for (int i = 0; i < clientpass.length(); i++)
|
|
{
|
|
resp = resp + "*";
|
|
}
|
|
resp = resp + "</cpass>";
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
resp = resp + "<csips>";
|
|
resp = resp + staticip[i];
|
|
resp = resp + "</csips>";
|
|
}
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
resp = resp + "<csgws>";
|
|
resp = resp + staticgateway[i];
|
|
resp = resp + "</csgws>";
|
|
}
|
|
for (int i = 0; i < 4; i++)
|
|
{
|
|
resp = resp + "<cssns>";
|
|
resp = resp + staticsubnet[i];
|
|
resp = resp + "</cssns>";
|
|
}
|
|
resp = resp + "<cmdns>";
|
|
resp = resp + cmdns;
|
|
resp = resp + "</cmdns>";
|
|
resp = resp + "<apssid>";
|
|
resp = resp + apssid;
|
|
resp = resp + "</apssid>";
|
|
resp = resp + "<aphssid>";
|
|
resp = resp + aphide;
|
|
resp = resp + "</aphssid>";
|
|
resp = resp + "<appass>";
|
|
for (int i = 0; i < appass.length(); i++)
|
|
{
|
|
resp = resp + "*";
|
|
}
|
|
resp = resp + "</appass>";
|
|
resp = resp + "<apchan>";
|
|
resp = resp + apchannel;
|
|
resp = resp + "</apchan>";
|
|
resp = resp + "<desc>";
|
|
resp = resp + serverDescription;
|
|
resp = resp + "</desc>";
|
|
resp = resp + "<btnon>";
|
|
resp = resp + bool2int(buttonEnabled);
|
|
resp = resp + "</btnon><tfade>";
|
|
resp = resp + bool2int(fadeTransition);
|
|
resp = resp + "</tfade><tdlay>";
|
|
resp = resp + transitionDelay;
|
|
resp = resp + "</tdlay>";
|
|
resp = resp + "<tlbri>";
|
|
resp = resp + bri_nl;
|
|
resp = resp + "</tlbri>";
|
|
resp = resp + "<tldur>";
|
|
resp = resp + nightlightDelayMins;
|
|
resp = resp + "</tldur>";
|
|
resp = resp + "<tlfde>";
|
|
resp = resp + bool2int(nightlightFade);
|
|
resp = resp + "</tlfde>";
|
|
resp = resp + "<nudpp>";
|
|
resp = resp + udpPort;
|
|
resp = resp + "</nudpp>";
|
|
resp = resp + "<nrcve>";
|
|
resp = resp + bool2int(receiveNotifications);
|
|
resp = resp + "</nrcve><nrbri>";
|
|
resp = resp + bri_n;
|
|
resp = resp + "</nrbri><nsdir>";
|
|
resp = resp + bool2int(notifyDirect);
|
|
resp = resp + "</nsdir><nsbtn>";
|
|
resp = resp + bool2int(notifyButton);
|
|
resp = resp + "</nsbtn><nsfwd>";
|
|
resp = resp + bool2int(notifyNightlight);
|
|
resp = resp + "</nsfwd>";
|
|
resp = resp + "<noota>";
|
|
resp = resp + bool2int(ota_lock);
|
|
resp = resp +"</noota>";
|
|
resp = resp + "<norap>0</norap>"; //NI
|
|
resp = resp + "<sip>";
|
|
if (!WiFi.localIP()[0] == 0)
|
|
{
|
|
resp = resp + WiFi.localIP()[0];
|
|
resp = resp + ".";
|
|
resp = resp + WiFi.localIP()[1];
|
|
resp = resp + ".";
|
|
resp = resp + WiFi.localIP()[2];
|
|
resp = resp + ".";
|
|
resp = resp + WiFi.localIP()[3];
|
|
} else
|
|
{
|
|
resp = resp + "Not connected";
|
|
}
|
|
resp = resp + "</sip><sip>";
|
|
if (!WiFi.softAPIP()[0] == 0)
|
|
{
|
|
resp = resp + WiFi.softAPIP()[0];
|
|
resp = resp + ".";
|
|
resp = resp + WiFi.softAPIP()[1];
|
|
resp = resp + ".";
|
|
resp = resp + WiFi.softAPIP()[2];
|
|
resp = resp + ".";
|
|
resp = resp + WiFi.softAPIP()[3];
|
|
} else
|
|
{
|
|
resp = resp + "Not active";
|
|
}
|
|
resp = resp + "</sip>";
|
|
resp = resp + "<msg>WLED 0.3pd OK</msg>";
|
|
resp = resp + "</vs>";
|
|
Serial.println(resp);
|
|
server.send(200, "text/xml", resp);
|
|
}
|