Hey everyone,
I’m trying to create one of my first automations in Hass.io and I’m struggling a little. I’ve read similar posts to what i’m attempting in this forum, but they are a little different or don’t quite get to the issue I’m currently struggling with.
What I’m trying to do is create an automation that turns the motion detection on for all 3 of my blink cameras at a certain time of day. I have it written and running, but when it gets triggered, only 1 of the cameras motion detection is turned on.
Here is the yaml of the version that only turns on 1 cameras motion detection.
- id: ‘10000000100’
alias: Activate Cameras
trigger:- at: ‘14:06:00’
platform: time
condition: []
action: - data:
- entity_id: camera.blink_back_yard
- entity_id: camera.blink_front_yard
- entity_id: camera.blink_indoor
service: camera.enable_motion_detection
- at: ‘14:06:00’
The only way I’ve been able to get it to work the way I want is if I break it into 3 different automations. Any thoughts or suggestions would be greatly appreciated!
Thanks in advance,
TBD