I am the author of the Volvo plugin. Volvo recently added something to the API, so that for invocation commands (lock/unlock car, start/stop climatization) so that i now every once in a while get status code 427 which means i have to keep retrying till the car is available again
so pseudo code:
Code: Select all
onCommand(...):
if deviceid==CLIMATIZATION:
status = VolvoAPI_call_for_switching_on_off_climatization()
if status==427:
retry VolvoAPI_call_for_switching_on_off_climatization() every X seconds until succeeds...
However when ik takes about 1 minute, domoticz does log this line:
Code: Select all
Error: XC40 hardware (34) thread seems to have ended unexpectedly
How can i suppress or avoid this error?