Skip to content

Commit dcd25bf

Browse files
authored
Merge pull request #2128 from rosenrot00/patch-33
Add support for DO1 series inverter type
2 parents 014f23c + 843fa63 commit dcd25bf

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

custom_components/solax_modbus/plugin_growatt.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9657,6 +9657,8 @@ async def async_determineInverterType(self, hub: Any, configdict: dict[str, Any]
96579657
invertertype = HYBRID | GEN4 | X1 # MOD 4000 TL3-XH Hybrid, 2 MPPT
96589658
elif seriesnumber.startswith("DPS"):
96599659
invertertype = HYBRID | GEN4 | X3 # MOD 5000 TL3-HU Hybrid, 2 MPPT
9660+
elif seriesnumber.startswith("DO1"):
9661+
invertertype = HYBRID | GEN4 | X3 | MPPT3 # MOD 12000 TL3-HU Hybrid, 3 MPPT
96609662
elif seriesnumber.startswith("PYL"):
96619663
invertertype = HYBRID | GEN4 | X3 # MOD 5000 TL3-XH Hybrid, 2 MPPT
96629664
elif seriesnumber.startswith("JCM"):

0 commit comments

Comments
 (0)