home-assistant.io/source/_integrations/automation.markdown
Andrea Donno 7117ae0b2a Time to remove the notice (#10809)
That notice can be removed
2019-10-16 11:02:03 +02:00

855 B

title, description, logo, ha_category, ha_qa_scale, ha_release
title description logo ha_category ha_qa_scale ha_release
Automation Instructions on how to setup automation within Home Assistant. home-assistant.png
Automation
internal 0.7

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

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: 'false' so that the automation is not automatically turned on after a Home Assistant reboot.

automation:
  - alias: Door alarm
    hide_entity: true
    initial_state: true
    trigger:
      - platform: state
  ...