1 parent 478b47b commit 40775c5Copy full SHA for 40775c5
1 file changed
custom_components/solax_modbus/plugin_growatt.py
@@ -9498,6 +9498,9 @@ class growatt_plugin(plugin_base):
9498
async def async_determineInverterType(self, hub, configdict):
9499
_LOGGER.info(f"{hub.name}: trying to determine inverter type")
9500
seriesnumber = await async_read_serialnr(hub, 3001)
9501
+ if not seriesnumber:
9502
+ _LOGGER.info(f"{hub.name}: trying alternative location")
9503
+ seriesnumber = await async_read_serialnr(hub, 209)
9504
if not seriesnumber:
9505
_LOGGER.info(f"{hub.name}: trying alternative location")
9506
seriesnumber = await async_read_serialnr(hub, 9)
0 commit comments