mirror of
https://github.com/easytarget/esp32-cam-webserver.git
synced 2024-02-16 18:18:24 +08:00
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:
@ -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)));
|
||||
|
Reference in New Issue
Block a user