Replies: 1 comment
-
In Python you can use SwitchRWSensor(326, "Force Gen", on=1<<13, bitmask=1<<13) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I found the necessary addresses for control it.
Address 242 is used to configure the
grid signal
andgen signal
options. I checked it, it works.But it is much more logical and in accordance with the settings in the inverter itself that we need to have not a
SelectRWSensor
, but twoSwitchRWSensor
.And in my case I really only need one sensor to turn the generator signal on and off.
Now this part of the configuration looks like this for me:
How to properly turn this into a switch (
SwitchRWSensor
)?And another great option is the ability to force the generator to start. Now for this I need to go directly to the inverter.
But we have an address
326
to control this future.The only problem is that we need to reach bit 13.
That is, we need a SwitchRWSensor to reach bit 13 at address 326.
But how to do it correctly?
Here's what it looks like in another integration:
Beta Was this translation helpful? Give feedback.
All reactions