mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-05 18:48:59 +00:00
1.7 KiB
1.7 KiB
layout, title, description, date, sidebar, comments, sharing, footer, ha_category, ha_release
layout | title | description | date | sidebar | comments | sharing | footer | ha_category | ha_release |
---|---|---|---|---|---|---|---|---|---|
page | Yale Smart Alarm Control | Instructions on how to integrate Yale Smart Alarms into Home Assistant. | 2018-09-01 11:11 | true | false | true | true | Alarm | 0.78 |
The yale_smart_alarm
platform 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
, alarm_arm_night
(duplicate of home) and alarm_disarm
.
Currently only one alarm is supported.
To enable, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
alarm_control_panel:
- platform: yale_smart_alarm
username: YOUR_USERNAME
password: YOUR_PASSWORD
Configuration variables:
- name (Optional): Name of device in Home Assistant.
- username (Required): Username used to sign into the Yale app/web client.
- password (Required): Password used to sign into the Yale app/web client.
- area_id (Optional): Area ID of the device when talking to Yale's API if required ('1' by default).
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
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
entity_id: scene.OnArmedAway