home-assistant.io/source/_components/automation.markdown
2017-04-04 20:50:19 -07:00

980 B

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category
layout title description date sidebar comments sharing footer logo ha_category
page Automation Instructions how to setup automation within Home Assistant. 2015-01-20 22:36 true false true true home-assistant.png Automation

Please see the docs section for in-depth documentation on how to use the automation component.

Starting with 0.28 your automation rules can be controlled with the frontend.

This allows one to reload the automation without restarting Home Assistant itself. If you don't want to see the automation rule in your frontend use hide_entity: True to hide it. You can also use initial_state: 'off' so that the automation is not automatically turned on after a Home assistant reboot.

automation:
  - alias: Door alarm
    hide_entity: True
    initial_state: 'off'
    trigger:
      - platform: state
  ...