We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8eba0b4 + 2cae65e commit 1ea6646Copy full SHA for 1ea6646
esp8266-arduino-wifirgb/WifiRGB.ino
@@ -63,13 +63,13 @@ void setup(void) {
63
64
// iro.js User Interface and Javascript
65
server.on("/ui", HTTP_GET, []() {
66
- server.send(200, "text/html", WEBINTERFACE);
+ server.send_P(200, "text/html", WEBINTERFACE);
67
});
68
server.on("/admin", HTTP_GET, []() {
69
- server.send(200, "text/html", WEBADMIN);
+ server.send_P(200, "text/html", WEBADMIN);
70
71
server.on("/iro.min.js", HTTP_GET, []() {
72
- server.send(200, "application/javascript", IRO_JS);
+ server.send_P(200, "application/javascript", IRO_JS);
73
74
75
// REST-API
0 commit comments