mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-06 02:58:57 +00:00

* Split MQTT documentation * Add more details * Move content to /docs * Enable sidebar * Move content to /docs * Enable sidebar * Move content * Update links * Remove wizard stuff * Enable sidebar * Minor changes * Move MQTT parts to /docs * update links * Update links and sync content * Fix link * Enable sidebar * Remove navigation * Remove navigation and other minor updates * Update links * Add overview page * Make title linkable * Update * Plit content * Update links * Rearrange content * New getting-started section * Add icons for docs * Update for new structure * Update for new structure * Add docs navigation * Add docs overview page * Remove ecosystem navigation * Add docs and remove other collections * Move ecosystem to docs * Remove duplicate files * Re-add ecosystem overview * Move to ecosystem * Fix permission * Update navigation * Remove collection * Move overview to right folder * Move mqtt to upper level * Move notebook to ecosystem * Remove un-used files * Add one more rectangle for iOS * Move two parts back from docs and rename Run step * Remove colon * update getting-started section * Add redirect * Update * Update navigation
68 lines
1.6 KiB
Markdown
68 lines
1.6 KiB
Markdown
---
|
|
layout: page
|
|
title: "Automation Examples"
|
|
description: "Some automation examples to get you started."
|
|
date: 2016-04-24 08:30 +0100
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
redirect_from: /getting-started/automation-examples/
|
|
---
|
|
|
|
Just some sample automation rules to get you started.
|
|
|
|
```yaml
|
|
# Example of entry in configuration.yaml
|
|
automation:
|
|
# Turns on lights 1 hour before sunset if people are home
|
|
# and if people get home between 16:00-23:00
|
|
- alias: 'Rule 1 Light on in the evening'
|
|
trigger:
|
|
# Prefix the first line of each trigger configuration
|
|
# with a '-' to enter multiple
|
|
- platform: sun
|
|
event: sunset
|
|
offset: '-01:00:00'
|
|
- platform: state
|
|
entity_id: group.all_devices
|
|
state: 'home'
|
|
condition:
|
|
# Prefix the first line of each condition configuration
|
|
# with a '-'' to enter multiple
|
|
- condition: state
|
|
entity_id: group.all_devices
|
|
state: 'home'
|
|
- condition: time
|
|
after: '16:00:00'
|
|
before: '23:00:00'
|
|
action:
|
|
service: homeassistant.turn_on
|
|
entity_id: group.living_room
|
|
|
|
# Turn off lights when everybody leaves the house
|
|
- alias: 'Rule 2 - Away Mode'
|
|
trigger:
|
|
platform: state
|
|
entity_id: group.all_devices
|
|
state: 'not_home'
|
|
action:
|
|
service: light.turn_off
|
|
entity_id: group.all_lights
|
|
|
|
# Notify when Paulus leaves the house in the evening
|
|
- alias: 'Leave Home notification'
|
|
trigger:
|
|
platform: zone
|
|
event: leave
|
|
zone: zone.home
|
|
entity_id: device_tracker.paulus
|
|
condition:
|
|
condition: time
|
|
after: '20:00'
|
|
action:
|
|
service: notify.notify
|
|
data:
|
|
message: 'Paulus left the house'
|
|
```
|