home-assistant.io/source/_integrations/yale_smart_alarm.markdown
2021-07-28 22:31:15 +02:00

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.
Alarm
0.78 Cloud Polling true
@gjohansson-ST
yale_smart_alarm
alarm_control_panel

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