Service with ability to send commands #79
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Is your feature request related to a problem? Please describe.
When You switching parameters for AC, we are sending a request to API. Every time. And device beeps on each. For some reasons integration doesn’t preserve 'Mute' state, so if we setting it before all other changes, it resets on next request.
Describe the solution you'd like
gvigroux implemented in his integration ability to send command with all parameters set like
('screenDisplayStatus": "1°, 'echoStatus': '0°, "tempSel': "24"...)
. That way if some properties binding or any logic related to them is broken, we could just use service call to solve any issue right now with such an workaround.Describe alternatives you've considered
It also possible to implement stacking queue for props changes with small configurable timeout around 100-200 ms. That way automation will change all props and only one request will be sent. But it solves only part of the problem. It doesn't resolve issue with some props not supported properly yet. So it worth thinking about a bit later.