Skip to content

Commit 7565d1d

Browse files
authored
Merge pull request #2157 from ZenPengu/main
Growatt: recognize TTS serial prefixes in inverter type detection
2 parents b4d153f + 9a4a059 commit 7565d1d

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
@@ -9677,6 +9677,8 @@ async def async_determineInverterType(self, hub: Any, configdict: dict[str, Any]
96779677
invertertype = HYBRID | GEN4 | X3 | MPPT3 # MOD 10000 TL3-HU Hybrid, 3 MPPT
96789678
elif seriesnumber.startswith("DO1"):
96799679
invertertype = HYBRID | GEN4 | X3 | MPPT3 # MOD 12000 TL3-HU Hybrid, 3 MPPT
9680+
elif seriesnumber.startswith("TTS"):
9681+
invertertype = HYBRID | GEN4 | X3 | MPPT3 # Hybrid KTL3-HU 12kW
96809682
elif seriesnumber.startswith("TSS"):
96819683
invertertype = HYBRID | GEN4 | X3 | MPPT3 # Hybrid KTL3-HU 12kW
96829684
elif seriesnumber.startswith("PYL"):

0 commit comments

Comments
 (0)