We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bd701b commit f9454d0Copy full SHA for f9454d0
custom_components/solis_cloud_control/inverters/inverter.py
@@ -346,9 +346,10 @@ def create_hybrid_inverter(
346
def all_cids(self) -> list[int]:
347
cids: list[int] = []
348
349
- if self.on_off:
350
- cids.append(self.on_off.on_cid)
351
- cids.append(self.on_off.off_cid)
+ # CIDs for on-off are write-only, so they are not included in the read operations.
+ # if self.on_off:
+ # cids.append(self.on_off.on_cid)
352
+ # cids.append(self.on_off.off_cid)
353
if self.storage_mode:
354
cids.append(self.storage_mode.cid)
355
if self.charge_discharge_settings:
0 commit comments