1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-25 20:02:37 +03:00

Print a newline properly.

This commit is contained in:
Stavros Korokithakis 2015-12-01 05:32:42 +02:00
parent 239352b7cf
commit c2c7cc3a71

View File

@ -30,12 +30,11 @@ void setup() {
Serial.println("Start");
});
ArduinoOTA.onEnd([]() {
Serial.println("End");
Serial.println("\nEnd");
});
ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) {
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
});
Serial.println("")
ArduinoOTA.onError([](ota_error_t error) {
Serial.printf("Error[%u]: ", error);
if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed");