mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-22 02:46:49 +00:00
1.2 KiB
1.2 KiB
title, description, ha_category, ha_release, ha_iot_class, ha_config_flow, ha_codeowners, ha_domain, ha_platforms
title | description | ha_category | ha_release | ha_iot_class | ha_config_flow | ha_codeowners | ha_domain | ha_platforms | |||
---|---|---|---|---|---|---|---|---|---|---|---|
Yale Smart Living | Instructions on how to integrate Yale Smart Alarms into Home Assistant. |
|
0.78 | Cloud Polling | true |
|
yale_smart_alarm |
|
The Yale Smart Living integration provides connectivity with the Yale Smart Alarm systems and Smart Hub through Yale's API.
This platform supports the following services: alarm_arm_away
, alarm_arm_home
and alarm_disarm
.
Currently only one alarm is supported.
{% include integrations/config_flow.md %}
Automation example
automation:
- alias: "Alarm: Disarmed Daytime"
trigger:
platform: state
entity_id: alarm_control_panel.yale_smart_alarm
to: "disarmed"
condition:
condition: sun
before: sunset
action:
service: scene.turn_on
target:
entity_id: scene.OnDisarmedDaytime
- alias: "Alarm: Armed Away"
trigger:
platform: state
entity_id: alarm_control_panel.yale_smart_alarm
to: "armed_away"
action:
service: scene.turn_on
target:
entity_id: scene.OnArmedAway