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 239352b commit c2c7cc3Copy full SHA for c2c7cc3
libraries/ArduinoOTA/examples/BasicOTA/BasicOTA.ino
@@ -30,12 +30,11 @@ void setup() {
30
Serial.println("Start");
31
});
32
ArduinoOTA.onEnd([]() {
33
- Serial.println("End");
+ Serial.println("\nEnd");
34
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