Replies: 1 comment
-
Hi @fabbermen, you can try ha-solarman and:
|
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 need to change a few registries every hour, and I would like to know the most efficient way to do so.
With efficient I mean that no command will timeout, the sequence takes a limited time (1 minute), and the code is easy to implement in HA.
Do you know if there's any queueing mechanism running in the background that is buffering the command requests?
Or the commands can be sent in one shot with a special syntax?
If you are able to understand how it works, would you suggest what's the best way to send these 3 commands, for example:
` - service: solarman.write_multiple_holding_registers
data:
register: 244
values: 2
hours: 0
minutes: 0
seconds: 16
milliseconds: 0
data:
register: 268
values: 9
hours: 0
minutes: 0
seconds: 16
milliseconds: 0
data:
register: 243
values: 1`
Thanks a million for your help!
Beta Was this translation helpful? Give feedback.
All reactions