Skip to content

Commit

Permalink
2024.01.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wills106 committed Jan 23, 2024
1 parent 5589b74 commit f76672c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom_components/solax_modbus/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/wills106/homsassistant-solax-modbus/issues",
"requirements": ["pymodbus>=3.5.2"],
"version": "2024.01.7.1"
"version": "2024.01.8"
}
2 changes: 2 additions & 0 deletions custom_components/solax_modbus/plugin_solis.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ def value_function_pv4_power(initval, descr, datadict):
('160F5', 62.5 ), # 3.6kW 48v
('160F3', 100 ), # 5kW 48v
('1031', 100 ), # 5kW 48v
('134F', 100 ), # 5kW 48v
('6031', 100 ), # 6kW 48v
('110C', 25 ), # 10kW HV
]
Expand Down Expand Up @@ -2434,6 +2435,7 @@ def determineInverterType(self, hub, configdict):
elif seriesnumber.startswith('010F'): invertertype = HYBRID | X1 # Hybrid Gen5 3kW - 48v
elif seriesnumber.startswith('110F'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - 48v
elif seriesnumber.startswith('114F'): invertertype = HYBRID | X1 # Hybrid Gen5 6K - 48V
elif seriesnumber.startswith('134F'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - 48V
elif seriesnumber.startswith('140C'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - HV
elif seriesnumber.startswith('160F5'): invertertype = HYBRID | X1 # Hybrid Gen5 3.6kW - 48v
elif seriesnumber.startswith('160F3'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - 48v
Expand Down
2 changes: 1 addition & 1 deletion custom_components/solax_modbus/plugin_solis_old.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def determineInverterType(self, hub, configdict):
elif seriesnumber.startswith('110CA22'): invertertype = HYBRID | X3 # Hybrid Gen5 10kW 3Phase

else:
invertertype = HYBRID
invertertype = 0
_LOGGER.error(f"unrecognized {hub.name} inverter type - serial number : {seriesnumber}")
read_eps = configdict.get(CONF_READ_EPS, DEFAULT_READ_EPS)
read_dcb = configdict.get(CONF_READ_DCB, DEFAULT_READ_DCB)
Expand Down
6 changes: 3 additions & 3 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Detected blocking call to sleep inside the event loop by custom integration 'sol
As a work around you can add the following lines to your configuration file:
```
logger:
default: warning
logs:
homeassistant.util.async_: error
filters:
custom_component.solax_modbus:
- "*blocking call*"
```

## Donations / Sponsor
Expand Down

0 comments on commit f76672c

Please sign in to comment.