I’ve got a couple of arlo cameras and have linked them with home assistant without issue. I wanted to setup an automation so that when we set the alarm the cameras arm as well. This works as expected, but I wanted to have another automation that enables the Schedule mode when we come home.
I’ve got the alarm_control_panel setup in my configuration.yaml and have set the following:
home_mode_name
To Schedule, but this doesn’t work. When looking at the states page, if the base stations mode is armed then it shows armed as the state, when it’s set to Schedule it shows unknown. Any ideas what home_mode_name should be set to to enable the Schedule mode? I could add a custom mode but this cannot be on a schedule so need to use the existing mode.
Thanks
The automations that are working - arming / disarming:
- alias: Arm Arlo cameras when leaving
trigger:
platform: state
entity_id: 'binary_sensor.texecom_state'
from: 'off'
to: 'on'
action:
service: alarm_control_panel.alarm_arm_away
entity_id: alarm_control_panel.study
- alias: Set Arlo cameras to Home mode when arriving
trigger:
platform: state
entity_id: 'binary_sensor.texecom_state'
from: 'on'
to: 'off'
action:
service: alarm_control_panel.alarm_disarm
entity_id: alarm_control_panel.study
I’ve come at this from a different angle, and have now setup the schedule as an automation within Home Assistant. So I still have the arm, disarm based on the burglar alarm state, and also now have the arlo arming between midnight and 7am.
I’m running a python program that receives info from the Texecom alarm panel (arm, disarm events) and that then sends these on as MQTT messages to Home Assistant, from there I use these in my automations, see Texecom Premier Elite - MQTT / Home Assistant