replaced \n\r with \r\n (#174)
* Fix rotate -90 degree bu
Adding a style with flex-direction: column; and align-items: flex-start; does the job 😀
* replaced \n\r with \r\n
\n\r gives strange results in other than Arduino serial monitors.
This commit is contained in:
parent
36aee90352
commit
ba7c20a2b6
|
@ -679,7 +679,7 @@ void setup() {
|
|||
ArduinoOTA.setPassword(otaPassword);
|
||||
Serial.printf("OTA Password: %s\n\r", otaPassword);
|
||||
} else {
|
||||
Serial.printf("\n\rNo OTA password has been set! (insecure)\n\r\n\r");
|
||||
Serial.printf("\r\nNo OTA password has been set! (insecure)\r\n\r\n");
|
||||
}
|
||||
ArduinoOTA
|
||||
.onStart([]() {
|
||||
|
@ -692,7 +692,7 @@ void setup() {
|
|||
Serial.println("Start updating " + type);
|
||||
})
|
||||
.onEnd([]() {
|
||||
Serial.println("\nEnd");
|
||||
Serial.println("\r\nEnd");
|
||||
})
|
||||
.onProgress([](unsigned int progress, unsigned int total) {
|
||||
Serial.printf("Progress: %u%%\r", (progress / (total / 100)));
|
||||
|
|
Loading…
Reference in New Issue