Do not need to be setup to play with gpio or OTA

And reindent
This commit is contained in:
Mathieu Maret 2016-03-11 01:41:21 +01:00
parent f0b47e162c
commit 5007b652d9
2 changed files with 16 additions and 19 deletions

View File

@ -72,10 +72,8 @@ void setupWebServer(int bootmode) {
server.on("/", handleRoot);
server.on("/setup", handleSetup);
server.on("/save", handleSave);
if (bootmode == BOOTMODE_NORMAL){
server.on("/gpio", handleGpio);
server.on("/otamode", handleOTA);
}
server.onNotFound(handleNotFound);
server.begin();
Serial.println("HTTP server started");

View File

@ -73,10 +73,9 @@ void setupWebServer(int bootmode) {
server.on("/", handleRoot);
server.on("/setup", handleSetup);
server.on("/save", handleSave);
if (bootmode == BOOTMODE_NORMAL){
server.on("/gpio", handleGpio);
server.on("/otamode", handleOTA);
}
server.onNotFound(handleNotFound);
server.begin();
Serial.println("HTTP server started");