Skip to content

Commit f76672c

Browse files
committed
2024.01.8
1 parent 5589b74 commit f76672c

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

custom_components/solax_modbus/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"iot_class": "local_polling",
1010
"issue_tracker": "https://github.com/wills106/homsassistant-solax-modbus/issues",
1111
"requirements": ["pymodbus>=3.5.2"],
12-
"version": "2024.01.7.1"
12+
"version": "2024.01.8"
1313
}

custom_components/solax_modbus/plugin_solis.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ def value_function_pv4_power(initval, descr, datadict):
192192
('160F5', 62.5 ), # 3.6kW 48v
193193
('160F3', 100 ), # 5kW 48v
194194
('1031', 100 ), # 5kW 48v
195+
('134F', 100 ), # 5kW 48v
195196
('6031', 100 ), # 6kW 48v
196197
('110C', 25 ), # 10kW HV
197198
]
@@ -2434,6 +2435,7 @@ def determineInverterType(self, hub, configdict):
24342435
elif seriesnumber.startswith('010F'): invertertype = HYBRID | X1 # Hybrid Gen5 3kW - 48v
24352436
elif seriesnumber.startswith('110F'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - 48v
24362437
elif seriesnumber.startswith('114F'): invertertype = HYBRID | X1 # Hybrid Gen5 6K - 48V
2438+
elif seriesnumber.startswith('134F'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - 48V
24372439
elif seriesnumber.startswith('140C'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - HV
24382440
elif seriesnumber.startswith('160F5'): invertertype = HYBRID | X1 # Hybrid Gen5 3.6kW - 48v
24392441
elif seriesnumber.startswith('160F3'): invertertype = HYBRID | X1 # Hybrid Gen5 5kW - 48v

custom_components/solax_modbus/plugin_solis_old.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def determineInverterType(self, hub, configdict):
443443
elif seriesnumber.startswith('110CA22'): invertertype = HYBRID | X3 # Hybrid Gen5 10kW 3Phase
444444

445445
else:
446-
invertertype = HYBRID
446+
invertertype = 0
447447
_LOGGER.error(f"unrecognized {hub.name} inverter type - serial number : {seriesnumber}")
448448
read_eps = configdict.get(CONF_READ_EPS, DEFAULT_READ_EPS)
449449
read_dcb = configdict.get(CONF_READ_DCB, DEFAULT_READ_DCB)

docs/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Detected blocking call to sleep inside the event loop by custom integration 'sol
1515
As a work around you can add the following lines to your configuration file:
1616
```
1717
logger:
18-
default: warning
19-
logs:
20-
homeassistant.util.async_: error
18+
filters:
19+
custom_component.solax_modbus:
20+
- "*blocking call*"
2121
```
2222

2323
## Donations / Sponsor

0 commit comments

Comments
 (0)