Skip to content
New issue

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

found bug concerning iotWebConf.delay() during bootup and /firmware #261

Open
societyofrobots opened this issue Jun 30, 2022 · 0 comments
Open

Comments

@societyofrobots
Copy link

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant