We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had an issue where the /firmware link returns this error when clicking on it, blocking over air updates:
[E][WebServer.cpp:635] _handleRequest(): request handler not found Requested a non-existing page '/firmware'
It works fine when I use delay() in the below code, but not iotWebConf.delay().
void setup() { //small delay for proper power up delay(150); Serial.begin(115200); Serial.println("Starting up..."); wifi_setup(); delay(100); bluetooth_setup(); delay(50); }
Changing it to delay() fixes it. Hope this helps someone!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had an issue where the /firmware link returns this error when clicking on it, blocking over air updates:
It works fine when I use delay() in the below code, but not iotWebConf.delay().
Changing it to delay() fixes it. Hope this helps someone!
The text was updated successfully, but these errors were encountered: