Skip to content

Commit fc082e5

Browse files
authored
Merge pull request #2167 from TCWORLD/growatt-missing-mppt3
Add missing MPPT3 flag to EGR and JQG prefix inverters
2 parents daef267 + e39e02e commit fc082e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

custom_components/solax_modbus/plugin_growatt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9663,7 +9663,7 @@ async def async_determineInverterType(self, hub: Any, configdict: dict[str, Any]
96639663
elif seriesnumber.startswith("SMN"):
96649664
invertertype = HYBRID | GEN4 | X1 | MPPT4 # MIN TL-XH-US Hybrid, 4 MPPT
96659665
elif seriesnumber.startswith("JGQ"):
9666-
invertertype = HYBRID | GEN4 | X1 # MIN 7600 TL-XH-US Hybrid, 3 MPPT
9666+
invertertype = HYBRID | GEN4 | X1 | MPPT3 # MIN 7600 TL-XH-US Hybrid, 3 MPPT
96679667
elif seriesnumber.startswith("HJU"):
96689668
invertertype = HYBRID | GEN4 | X1 # MIN 4200TL-XH2 Hybrid, 2 MPPT
96699669

@@ -9694,7 +9694,7 @@ async def async_determineInverterType(self, hub: Any, configdict: dict[str, Any]
96949694
elif seriesnumber.startswith("DFK"):
96959695
invertertype = HYBRID | GEN4 | X3 # MOD 100000 TL3-XH Hybrid, 2 MPPT
96969696
elif seriesnumber.startswith("EGR"):
9697-
invertertype = HYBRID | GEN4 | X3 # MOD 150000 TL3-HU Hybrid, 3 MPPT
9697+
invertertype = HYBRID | GEN4 | X3 | MPPT3 # MOD 150000 TL3-HU Hybrid, 3 MPPT
96989698

96999699
# MID type:GEN4
97009700
elif seriesnumber.startswith("KLN"):

0 commit comments

Comments
 (0)