Update webserver.ino

This commit is contained in:
Adrian 2018-03-09 23:48:21 -03:00 committed by GitHub
parent 7a438e9bd5
commit 3c65fa51d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -25,6 +25,10 @@
* Based on source by AlexT (https://github.com/tzapu)
\*********************************************************************************************/
#ifdef USE_KNX
#include <esp-knx-ip.h> // Include KNX IP library
#endif // USE_KNX
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
@ -367,6 +371,9 @@ void StartWebserver(int type, IPAddress ipweb)
}
#endif // USE_EMULATION
WebServer->onNotFound(HandleNotFound);
#ifdef USE_KNX
knx.start(WebServer); // Start knx. The /knx link is automatically set inside the KNX library
#endif // USE_KNX
}
reset_web_log_flag = 0;
WebServer->begin(); // Web server start