From 9157da3e0b3d1d55e304d958f05f4f8dbb6cbcee Mon Sep 17 00:00:00 2001 From: proddy Date: Thu, 21 Nov 2024 14:57:46 +0100 Subject: [PATCH] add back fake Mixer for device entities xls --- src/emsesp.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/emsesp.cpp b/src/emsesp.cpp index 11f6a2829..24b9e7925 100644 --- a/src/emsesp.cpp +++ b/src/emsesp.cpp @@ -353,6 +353,11 @@ void EMSESP::dump_all_entities(uuid::console::Shell & shell) { device_id = 0x40; // dhw 1 } } + + // For a Mixer, fix device_id to 0x20 to give us all the settings + if (device.device_type == DeviceType::MIXER) { + device_id = 0x20; // hc + } // add the device and print out all the entities // for testing the mixer use ... if (device.product_id == 69) {