Compare commits

...

2 Commits

Author SHA1 Message Date
suaveolent
787309e51a bump version 2024-09-16 09:39:05 +02:00
suaveolent
e9c8c0db28 fix model for HMS-1800 2024-09-16 09:38:28 +02:00
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -6,7 +6,7 @@ setup(
name="hoymiles-wifi", name="hoymiles-wifi",
packages=["hoymiles_wifi", "hoymiles_wifi.protobuf"], packages=["hoymiles_wifi", "hoymiles_wifi.protobuf"],
install_requires=["protobuf", "crcmod"], install_requires=["protobuf", "crcmod"],
version="0.2.5", version="0.2.6",
description="A python library for interfacing with the Hoymiles DTUs and the HMS-XXXXW-2T series of micro-inverters using protobuf messages.", description="A python library for interfacing with the Hoymiles DTUs and the HMS-XXXXW-2T series of micro-inverters using protobuf messages.",
author="suaveolent", author="suaveolent",
include_package_data=True, include_package_data=True,