Hi All,
I am new to home assistant, but not home automation. I am no engineer but have a degree in information technology, and yes, I read the forum etiquette and did as much research as I could before asking for help. I am trying to do a basic alarm setup, but my Ring indoor motion sensor isnt triggering. Here is the basics:
- Arm alarm panel
- While armed, if Ring indoor camera catches motion, trigger indoor camera siren
2A. Send notification via the home assistant app to phone - Trigger lights to flash on and off ( I built the scenes and the scripts for this and tied them to the automation)
- Obviously, I created a disarm automation
Here is the issue, I arm the panel and walk in front of the camera and nothing happens. However, if I manually trigger the automation 1. the siren sounds, and 2. I get the app notification. However, no lights flicker on and off.
I tired changing the camera motion sensor from ‘device’ to ‘state’ and neither of them worked.
I can confirm:
- The camera is connected
- The camera motion IS logging so the system SEES the motion. I just dont know why it wont trigger. Here is the code. Any help would be greatly appreciated.
‘’’
- id: '16255****
alias: ‘Alarm: Siren activated when armed and motion detected’
description: Alarm sounds when motion is detected and alarm is armed
trigger:- type: motion
platform: device
device_id: b454ccc10b86****
entity_id: binary_sensor.living_room_motion
domain: binary_sensor
condition: - condition: state
entity_id: alarm_control_panel.home_alarm
state: arm_away
action: - type: turn_on
device_id: b454ccc10*******
entity_id: switch.living_room_siren
domain: switch - service: notify.mobile_app_jesse_s_phone
data:
message: ALARM! INTRUDE ALERT! Motion detected! - service: script.alarm_flashing_lights
mode: single
- type: motion
- id: ‘162551*****’
alias: ‘Alarm: Disarm’
description: ‘’
trigger:- platform: state
entity_id: alarm_control_panel.home_alarm
from: arm_away
to: disarm
condition: []
action: - type: turn_off
device_id: b454ccc10b********
entity_id: switch.living_room_siren
domain: switch
mode: single
‘’’
- platform: state