From 3122c2b2a9fd5f3213c19e007114bee0ae8384c1 Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 20 Jan 2025 12:14:46 +0100 Subject: [PATCH] print tag in dump_entities.csv --- src/core/emsdevice.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/emsdevice.cpp b/src/core/emsdevice.cpp index 648b85f92..4c71a4d3e 100644 --- a/src/core/emsdevice.cpp +++ b/src/core/emsdevice.cpp @@ -1297,6 +1297,11 @@ void EMSdevice::dump_devicevalue_info() { Serial.print(product_id_); Serial.print(','); + // / + if (dv.tag > DeviceValueTAG::TAG_DEVICE_DATA) { + Serial.print(tag_to_string(dv.tag)); + Serial.print('.'); + } Serial.print(dv.short_name); Serial.print(',');