Skip to content

Commit

Permalink
Fix modbus_baud_rate setting (it's 64 value).
Browse files Browse the repository at this point in the history
  • Loading branch information
mletenay committed May 25, 2024
1 parent 46e3ff7 commit 1f8f942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion goodwe/et.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ class ET(Inverter):
# Modbus registers of inverter settings, offsets are modbus register addresses
__all_settings: Tuple[Sensor, ...] = (
Integer("comm_address", 45127, "Communication Address", ""),
Integer("modbus_baud_rate", 45132, "Modbus Baud rate", ""),
Long("modbus_baud_rate", 45132, "Modbus Baud rate", ""),
Timestamp("time", 45200, "Inverter time"),

Integer("sensitivity_check", 45246, "Sensitivity Check Mode", "", Kind.AC),
Expand Down

0 comments on commit 1f8f942

Please sign in to comment.