Skip to content

Commit e39e02e

Browse files
committed
Add missing MPPT3 flag to EGR and JQG prefix inverters
They are labelled in the comments as 3x MPPT, however were missing the flag to actually enable sensors for the 3rd solar input.
1 parent 350266f commit e39e02e

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

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

96979697
# MID type:GEN4
96989698
elif seriesnumber.startswith("KLN"):

0 commit comments

Comments
 (0)