remove extra newline when printing devices to console. Add back delay(1) for stability.

This commit is contained in:
proddy
2020-07-21 14:32:46 +02:00
parent 4eca51c3e2
commit fbf0b769ea

View File

@@ -229,7 +229,6 @@ void EMSESP::show_device_values(uuid::console::Shell & shell) {
} }
} }
} }
shell.println();
} }
// show Dallas sensors // show Dallas sensors
@@ -749,9 +748,8 @@ void EMSESP::loop() {
fetch_device_values(); fetch_device_values();
} }
#if defined(ESP32)
delay(1); delay(1);
#endif
} }
} // namespace emsesp } // namespace emsesp