You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling fauxmo.enable(true) will start the internal webserver which binds to the TCP port. Calling fauxmo.enable(false) does not stop the web browser and hence leaves the TCP port bound. It is not possible to run a WiFi Manager that serves a configuration portal after starting fauxmo which makes the configuration of an embedded device challenging.
A simple fix would be to append
else {
if (_server)
_server->end();
}
to fauxmoESP.cpp.
The text was updated successfully, but these errors were encountered:
Calling
fauxmo.enable(true)
will start the internal webserver which binds to the TCP port. Callingfauxmo.enable(false)
does not stop the web browser and hence leaves the TCP port bound. It is not possible to run a WiFi Manager that serves a configuration portal after starting fauxmo which makes the configuration of an embedded device challenging.A simple fix would be to append
to fauxmoESP.cpp.
The text was updated successfully, but these errors were encountered: