Add detail about hiding rules (fixes #1002)

This commit is contained in:
Fabian Affolter 2016-09-30 08:26:18 +02:00
parent 1d43a195f0
commit 4adaa72d8c
No known key found for this signature in database
GPG key ID: DDF3D6F44AAB1336
3 changed files with 18 additions and 1 deletions

View file

@ -19,4 +19,13 @@ Starting with 0.28 your automation rules can be controlled with the frontend.
<img src='{{site_root}}/images/screenshots/automation-switches.png' />
</p>
This allows one to reload the automation without restarting Home Assistant itself.
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.
```yaml
automation:
- alias: Door alarm
hide_entity: True
trigger:
- platform: state
...
```