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
Referecing the example for the HTTP-Update: https://github.com/esp8266/Arduino/libraries/ESP8266httpUpdate/examples/httpUpdate/httpUpdate.ino
Is there any possibility to get the current status of the download and flash progress? I want to show a progressbar with the current percentage.
Any chance to achive this?
The text was updated successfully, but these errors were encountered:
I tried this (present in the latest version of Update.cpp) and it works for me!!:
void progressFunc(unsigned int progress,unsigned int total) { Serial.printf("Progress: %u of %u\r", progress, total); }; Update.onProgress(progressFunc);
Sorry, something went wrong.
Closing as fixed via #6796
No branches or pull requests
Referecing the example for the HTTP-Update: https://github.com/esp8266/Arduino/libraries/ESP8266httpUpdate/examples/httpUpdate/httpUpdate.ino
Is there any possibility to get the current status of the download and flash progress?
I want to show a progressbar with the current percentage.
Any chance to achive this?
The text was updated successfully, but these errors were encountered: