We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6186383 commit 1da7f91Copy full SHA for 1da7f91
libraries/ArduinoOTA/examples/BasicOTA/BasicOTA.ino
@@ -33,7 +33,7 @@ void setup() {
33
Serial.println("End");
34
});
35
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
36
- Serial.printf("Progress: %u%%\n", (progress / (total / 100)));
+ Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
37
38
ArduinoOTA.onError([](ota_error_t error) {
39
Serial.printf("Error[%u]: ", error);
0 commit comments