From bcc647fd5137bbe0b6595ee15bbb075c202875f7 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Fri, 24 Nov 2023 18:10:08 +0100 Subject: [PATCH] Added HMT-1600-4T and HMT-1800-4T to DevInfoParser Fix #1524 --- lib/Hoymiles/src/parser/DevInfoParser.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/Hoymiles/src/parser/DevInfoParser.cpp b/lib/Hoymiles/src/parser/DevInfoParser.cpp index bc28ce3..5ae5d5d 100644 --- a/lib/Hoymiles/src/parser/DevInfoParser.cpp +++ b/lib/Hoymiles/src/parser/DevInfoParser.cpp @@ -45,8 +45,11 @@ const devInfo_t devInfo[] = { { { 0x10, 0x12, 0x71, ALL }, 2000, "HMS-2000" }, // 01 { { 0x10, 0x22, 0x71, ALL }, 2000, "HMS-2000" }, // 10 - { { 0x10, 0x33, 0x11, ALL }, 1800, "HMT-1800" }, // 01 - { { 0x10, 0x33, 0x31, ALL }, 2250, "HMT-2250" } // 01 + { { 0x10, 0x32, 0x41, ALL }, 1600, "HMT-1600-4T" }, // 00 + { { 0x10, 0x32, 0x51, ALL }, 1800, "HMT-1800-4T" }, // 00 + + { { 0x10, 0x33, 0x11, ALL }, 1800, "HMT-1800-6T" }, // 01 + { { 0x10, 0x33, 0x31, ALL }, 2250, "HMT-2250-6T" } // 01 }; DevInfoParser::DevInfoParser()