Added /wmconfig and /resetwifi uri's

This commit is contained in:
James 2019-01-11 21:37:59 +11:00
parent e8a110a308
commit 86f1c2df4c

View file

@ -86,6 +86,8 @@ void initWebServer(void) {
}
server.on("/", handleRoot);
server.on("/wmconfig", handleWMConfig);
server.on("/resetwifi",handleReset);
server.onNotFound(handleNotFound);
server.begin();