Hi All,
I have a problem that my Blink system will not always Arm and Disarm via automations, in fact it rarely works
The integration seems to be set up correctly (long 30 min scan interval) as sensors etc show and when using the alarm card in lovelace to arm/disarm it always seems to work. However when running via automations it is very inconsistent, sometimes one of the 2 Sync modules will arm/disarm but never both and often neither respond. The result is the same if using the webhook to trigger it or manually executing the automation in the interface.
Error:
Connection error. Endpoint https://rest-prde.immedia-semi.com/api/v1/accounts/xxxx/networks/yyyy/state/disarm possibly down or throttled.
Connection error. Endpoint https://rest-prde.immedia-semi.com/api/v1/accounts/xxxx/networks/zzzz/state/disarm possibly down or throttled.
Sample automation
alias: Blink - Disarm from Webhook
description: Disarm blink from Webhook
trigger:
- platform: webhook
webhook_id: disarm_blink
condition: []
action:
- service: alarm_control_panel.alarm_disarm
data: {}
entity_id: alarm_control_panel.blink_outside
- delay: 00:01:05
- service: alarm_control_panel.alarm_disarm
data: {}
entity_id: alarm_control_panel.blink_inside
I have tried various delays between the service calls but it makes no difference and in fact it is often the first call that fails and then the 2nd will works (although not always)
Running 0.116.4 on Docker on a Pi
Any help/suggestions would be appreciated as this has been driving me nuts since I set it up and Iām trying to move away from IFTTT
Thanks Pete