mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-26 18:57:17 +00:00
parent
48084ee55e
commit
e4246aa25a
@ -27,12 +27,10 @@ automation:
|
||||
- platform: state
|
||||
entity_id: group.all_devices
|
||||
state: 'not_home'
|
||||
|
||||
condition:
|
||||
- platform: state
|
||||
entity_id: sun.sun
|
||||
state: 'above_horizon'
|
||||
|
||||
action:
|
||||
service: ifttt.trigger
|
||||
data: {"event":"manything_on"}
|
||||
@ -44,12 +42,10 @@ automation:
|
||||
- platform: state
|
||||
entity_id: group.all_devices
|
||||
state: 'home'
|
||||
- platform: state
|
||||
condition:
|
||||
- condition: state
|
||||
entity_id: sun.sun
|
||||
state: 'above_horizon'
|
||||
|
||||
condition: use_trigger_values
|
||||
|
||||
action:
|
||||
service: ifttt.trigger
|
||||
data: {"event":"manything_off"}
|
||||
@ -73,4 +69,3 @@ domain | `ifttt`
|
||||
service | `trigger`
|
||||
Service Data | `{"event": "manything_on"}`
|
||||
|
||||
|
||||
|
@ -16,21 +16,18 @@ Turn on a light in the living room when it starts raining, someone is home, and
|
||||
|
||||
```yaml
|
||||
automation:
|
||||
alias: 'Rainy Day'
|
||||
|
||||
- alias: 'Rainy Day'
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: sensor.precip_intensity
|
||||
state: 'rain'
|
||||
condition:
|
||||
- platform: state
|
||||
entity_id: group.all_devices
|
||||
state: 'home'
|
||||
- platform: time
|
||||
after: '14:00'
|
||||
before: '23:00'
|
||||
|
||||
condition: use_trigger_values
|
||||
|
||||
action:
|
||||
service: light.turn_on
|
||||
entity_id: light.couch_lamp
|
||||
@ -39,17 +36,15 @@ automation:
|
||||
And then of course turn off the lamp when it stops raining but only if it's within an hour before sunset.
|
||||
|
||||
```yaml
|
||||
automation 2:
|
||||
alias: 'Rain is over'
|
||||
- alias: 'Rain is over'
|
||||
trigger:
|
||||
- platform: state
|
||||
entity_id: sensor.precip_intensity
|
||||
state: 'None'
|
||||
- platform: sun
|
||||
event: 'sunset'
|
||||
condition:
|
||||
- condition: sun
|
||||
after: 'sunset'
|
||||
offset: '-01:00:00'
|
||||
|
||||
condition: use_trigger_values
|
||||
action:
|
||||
service: light.turn_off
|
||||
entity_id: light.couch_lamp
|
||||
|
Loading…
x
Reference in New Issue
Block a user