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 1da7f91 commit 239352bCopy full SHA for 239352b
libraries/ArduinoOTA/examples/BasicOTA/BasicOTA.ino
@@ -35,6 +35,7 @@ void setup() {
35
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
36
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
37
});
38
+ Serial.println("")
39
ArduinoOTA.onError([](ota_error_t error) {
40
Serial.printf("Error[%u]: ", error);
41
if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed");
0 commit comments