You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 9, 2026. It is now read-only.
Using a remote service is quite ugly at the moment:
you need to trigger the service
you need to poll the current status until you get a final state
and if we have several remote service calls in parallel, we need to check the id to get the right status of the service we just called
you need to check if the status is EXECUTED or some sort of failed
when locking/unlocking you need to update the vehicle state after 10 seconds or so, to get the latest state.
this is all quite complicated. It would be nice if we could wrap this in the library. but that would also mean that we need to block (synchronous case) for a while or add some asyncio features for this or both. And also that the library must then be able to notify the user of the library on updated data (callback).