Problem with Multiple Devices in a Labels being used to Turn on and Off a YoLink Siren Devices
I create a “Label” that has three Entities / Devices of 3 YoLInk “Siren Devices”
I added an action “Siren Turn ON” on the previous mentioned Label. That Works
After Doing some other process
I added a “Siren Turn OFF” on the previous mentioned Label. That Usually only stops some of the label (Entities / Devices) but not all of them
I even included I eventually adding Even Like a “3 Second Delay” between the Siren On and Off and that did not help
Here is a Simple version of my Problem in Code
the Label ID
label_id: alarm_siren_back_west
Contains 3 YoLink Sirens
The device_id: ac492610abb06a6ae5de324289133dc4
Is the one that Does turn on with the siren.turn_on
But does not turn off with siren.turn_off
I have reloaded the YoLink devices frequently
alias: "2025-04-22 - New Motion YoLink Test "
description: ""
triggers: []
conditions: []
actions:
- action: siren.turn_on
metadata: {}
data: {}
target:
label_id: alarm_siren_back_west
- action: siren.turn_on
metadata: {}
data: {}
target:
device_id: ac492610abb06a6ae5de324289133dc4
enabled: false
- delay:
hours: 0
minutes: 0
seconds: 1
milliseconds: 0
- action: siren.turn_off
metadata: {}
data: {}
target:
label_id: alarm_siren_back_west
- action: siren.turn_off
metadata: {}
data: {}
target:
device_id: ac492610abb06a6ae5de324289133dc4
enabled: false
mode: single
`````Preformatted text`
`Notice the that two of the siren_turn_off of just the 1 device are disabled`Preformatted text`Preformatted text`