mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-05 10:38:58 +00:00

* IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal * IQS Internal
39 lines
1005 B
Markdown
39 lines
1005 B
Markdown
---
|
|
layout: page
|
|
title: "Automation"
|
|
description: "Instructions on how to setup automation within Home Assistant."
|
|
date: 2015-01-20 22:36
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: home-assistant.png
|
|
ha_category: Automation
|
|
ha_qa_scale: internal
|
|
---
|
|
|
|
Please see the [docs section](/docs/automation/) for in-depth
|
|
documentation on how to use the automation component.
|
|
|
|
Starting with 0.28 your automation rules can be controlled with the frontend.
|
|
|
|
<p class='img'>
|
|
<img src='{{site_root}}/images/screenshots/automation-switches.png' />
|
|
</p>
|
|
|
|
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.
|
|
|
|
```yaml
|
|
automation:
|
|
- alias: Door alarm
|
|
hide_entity: true
|
|
initial_state: 'off'
|
|
trigger:
|
|
- platform: state
|
|
...
|
|
```
|