fix model for HMS-1800

This commit is contained in:
suaveolent 2024-09-16 09:38:28 +02:00
parent 560cf5ef2b
commit e9c8c0db28

View File

@ -36,7 +36,7 @@ class InverterPower(Enum):
P_800W_1000W = "800W/1000W"
P_1000_1200_1500 = "1000/1200/1500"
P_1200_1500 = "1200/1500"
P_1600_2000 = "1600/2000"
P_1600_1800_2000 = "1600/1800/2000"
P_2250 = "2250"
@ -53,7 +53,7 @@ power_mapping = {
0x1060: InverterPower.P_1000,
0x1061: InverterPower.P_1200_1500,
0x1161: InverterPower.P_1000_1200_1500,
0x1164: InverterPower.P_1600_2000,
0x1164: InverterPower.P_1600_1800_2000,
0x1412: InverterPower.P_800W_1000W,
0x1382: InverterPower.P_2250,
}