This commit is contained in:
e2002
2022-12-08 17:52:23 +03:00
parent 3dc706c838
commit 1081cae041
8 changed files with 40 additions and 3 deletions

View File

@@ -48,6 +48,7 @@ char* updateError() {
}
bool NetServer::begin() {
BOOTLOG("netserver.begin");
importRequest = IMDONE;
irRecordEnable = false;
webserver.on("/", HTTP_ANY, handleHTTPArgs);
@@ -75,6 +76,7 @@ bool NetServer::begin() {
packet.println(WiFi.localIP());
});
}
BOOTLOG("done");
return true;
}