-
Notifications
You must be signed in to change notification settings - Fork 0
/
YAML automation
44 lines (44 loc) · 1.18 KB
/
YAML automation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
alias: Motion in korridor
description: ""
trigger:
- platform: state
entity_id:
- binary_sensor.motion_sensors
id: motion-on
to: "on"
- platform: state
entity_id:
- binary_sensor.motion_sensors
id: motion-off
to: "off"
condition:
- condition: or
conditions:
- condition: state
entity_id: sun.sun
state: below_horizon
- condition: template
value_template: >-
{{ is_state('sun.sun', 'above_horizon') and
is_state('light.ikea_of_sweden_tradfri_bulb_e27_ww_806lm_light', 'on')
}}
action:
- choose:
- conditions:
- condition: trigger
id: motion-on
sequence:
- type: turn_on
device_id: b65e04bd25f0b811ef4b9a4b5bf3a314
entity_id: light.ikea_of_sweden_tradfri_bulb_e27_ww_806lm_light
domain: light
brightness_pct: 50
- conditions:
- condition: trigger
id: motion-off
sequence:
- type: turn_off
device_id: b65e04bd25f0b811ef4b9a4b5bf3a314
entity_id: light.ikea_of_sweden_tradfri_bulb_e27_ww_806lm_light
domain: light
mode: single