forked from matt8707/hass-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautomations.yaml
More file actions
112 lines (112 loc) · 2.31 KB
/
automations.yaml
File metadata and controls
112 lines (112 loc) · 2.31 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
- id: '1763962089725'
alias: Navigate to Fire View on fire_problem
description: ''
triggers:
- trigger: state
entity_id:
- number.fire_warnings
from:
- '0'
conditions: []
actions:
- action: system_log.write
data:
message: Fire pop-up ..
level: warning
logger: fire_automation
- action: browser_mod.navigate
metadata: {}
data:
path: /lovelace-ui/fire
- action: browser_mod.popup
metadata: {}
data:
dismissable: true
autoclose: false
popup_card_id: lovelace-ui/fire_popup
enabled: false
- action: input_boolean.turn_off
metadata: {}
data: {}
target:
entity_id: input_boolean.panel_screensaver
mode: single
- id: '1763962512630'
alias: Notify when inside temperature below 50 °F
description: ''
triggers:
- trigger: numeric_state
entity_id:
- sensor.ecobee_downstairs_temperature
- sensor.ecobee_upstairs_temperature
below: 50
conditions: []
actions:
- action: notify.mobile_app_all
metadata: {}
data:
message: Inside temperature dropped below 50 °F
mode: single
- id: '1763962564570'
alias: Automatically refresh browser on lovelace update
description: ''
triggers:
- trigger: event
event_type: lovelace_updated
event_data: {}
conditions: []
actions:
- delay: 00:00:01
- action: browser_mod.notification
data:
message: Lovelace updated
duration: 1
mode: single
max_exceeded: silent
- id: '1766116034025'
alias: Turn entry light on when somebody comes home after sunset
description: ''
triggers:
- trigger: state
entity_id:
- device_tracker.rtr_barrie_phone
from:
- not_home
to:
- home
- trigger: state
entity_id:
- device_tracker.rtr_coert_phone
from:
- not_home
to:
- home
- trigger: state
entity_id:
- device_tracker.rtr_sander_phone
from:
- not_home
to:
- home
conditions:
- condition: sun
before: sunrise
after: sunset
actions:
- action: light.turn_on
metadata: {}
target:
entity_id:
- light.entry_sidelights
data: {}
- delay:
hours: 0
minutes: 3
seconds: 0
milliseconds: 0
- action: light.turn_off
metadata: {}
data: {}
target:
entity_id: light.entry_sidelights
mode: single