From 774be8fecf7271b3e2c0f543fa7602e955f753c3 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Sat, 30 Apr 2022 22:58:33 +0200 Subject: [PATCH] Fixed assignment for HM-600 Based on several logs and tries we updated the AC side of the HM-600 inverter. --- tools/esp8266/hmDefines.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/esp8266/hmDefines.h b/tools/esp8266/hmDefines.h index e66d6fce..0f2af157 100644 --- a/tools/esp8266/hmDefines.h +++ b/tools/esp8266/hmDefines.h @@ -87,7 +87,8 @@ const byteAssign_t hm600assignment[] = { { FLD_YD, UNIT_WH, CH2, CMD02, 9, 2, 1 }, { FLD_UAC, UNIT_V, CH0, CMD02, 11, 2, 10 }, { FLD_F, UNIT_HZ, CH0, CMD02, 13, 2, 100 }, - { FLD_IAC, UNIT_A, CH0, CMD02, 15, 2, 10 }, + { FLD_PAC, UNIT_W, CH0, CMD02, 15, 2, 10 }, + { FLD_IAC, UNIT_A, CH0, CMD83, 3, 2, 100 }, { FLD_T, UNIT_C, CH0, CMD83, 7, 2, 10 } }; #define HM600_LIST_LEN (sizeof(hm600assignment) / sizeof(byteAssign_t))