From e1e36016400fb65f70cdcad8a8c4ace6760b9f3a Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 10 Mar 2025 21:46:20 +0100 Subject: [PATCH] add newline to fix csv gen --- src/core/emsesp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/emsesp.cpp b/src/core/emsesp.cpp index 8e73d40b6..45ee17a62 100644 --- a/src/core/emsesp.cpp +++ b/src/core/emsesp.cpp @@ -332,6 +332,7 @@ void EMSESP::show_ems(uuid::console::Shell & shell) { // this is intended to run within the OS with lots of available memory! #if defined(EMSESP_STANDALONE) void EMSESP::dump_all_entities(uuid::console::Shell & shell) { + Serial.println(); Serial.println("---- CSV START ----"); // marker use by py script // add header for CSV Serial.println("device name,device type,product id,shortname,fullname,type [options...] \\| (min/max),uom,writeable,discovery entityid v3.4,discovery " @@ -381,6 +382,7 @@ void EMSESP::dump_all_entities(uuid::console::Shell & shell) { void EMSESP::dump_all_telegrams(uuid::console::Shell & shell) { std::vector telegram_functions_dump; + Serial.println(); Serial.println("---- CSV START ----"); // marker use by py script // add header for CSV Serial.println("telegram_type_id,name,is_fetched");