-
Notifications
You must be signed in to change notification settings - Fork 0
/
scripts.yaml
277 lines (277 loc) · 6.17 KB
/
scripts.yaml
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
pool_light_synchronise:
alias: Pool light synchronise
sequence:
- service: light.turn_off
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 4
milliseconds: 0
- service: light.turn_on
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- repeat:
count: 2
sequence:
- service: light.turn_off
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- service: light.turn_on
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
mode: single
pool_light_set_colour:
alias: Pool light set colour
sequence:
- service: script.pool_light_synchronise
data: {}
- repeat:
count: '{{ colour_number|int - 1 }}'
sequence:
- service: light.turn_off
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- service: light.turn_on
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
mode: single
pool_light_set_intensity:
alias: Pool light set intensity
sequence:
- service: script.pool_light_synchronise
data: {}
- repeat:
count: '6'
sequence:
- service: light.turn_off
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- service: light.turn_on
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- service: light.turn_off
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 4
milliseconds: 0
- service: light.turn_on
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- service: light.turn_off
data: {}
target:
entity_id: light.pool_lights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
- service: light.turn_on
data: {}
target:
entity_id: light.pool_lights
- stop: Now do single swich (off-on) on pool light and wait 3 sec to see next intensity
level. Do a doulbe switch to save and exit.
error: true
enabled: true
mode: single
open_gate_and_garage:
alias: Open Gate and Garage
sequence:
- service: cover.open_cover
data: {}
target:
entity_id:
- cover.driveway_gate
- cover.garage_door
mode: single
icon: mdi:gate-open
close_gate_and_garage:
alias: Close Gate and Garage
sequence:
- repeat:
count: '6'
sequence:
- service: light.toggle
data: {}
target:
entity_id:
- light.front_porch
- light.garage_downlights
- delay:
hours: 0
minutes: 0
seconds: 0
milliseconds: 500
enabled: false
- service: cover.close_cover
data: {}
target:
entity_id:
- cover.driveway_gate
- cover.garage_door
mode: single
icon: mdi:gate-arrow-right
sunset_lights:
alias: Sunset Lights
sequence:
- service: automation.trigger
data:
skip_condition: true
target:
entity_id: automation.lights_on_at_sunset
mode: single
icon: mdi:sun-wireless-outline
tv_off:
alias: TV Off
sequence:
- service: media_player.turn_off
data: {}
target:
entity_id: media_player.lg_webos_smart_tv
- if:
- condition: state
entity_id: binary_sensor.colour_and_light_sensor_fetch_tv_power
state: 'on'
then:
- service: remote.send_command
data:
device: lgtv
command: power
num_repeats: 1
hold_secs: 0.3
target:
device_id: 688ca04b397fd4dcdf3b94135f4a157d
- delay:
hours: 0
minutes: 0
seconds: 20
milliseconds: 0
- service: media_player.turn_off
data: {}
target:
entity_id: media_player.lg_webos_smart_tv
mode: single
icon: mdi:television-off
tv_on:
alias: TV On
sequence:
- if:
- condition: state
entity_id: binary_sensor.colour_and_light_sensor_fetch_tv_power
state: 'off'
then:
- service: remote.send_command
data:
device: lgtv
command: power
num_repeats: 1
hold_secs: 0.3
delay_secs: 0
target:
device_id: 688ca04b397fd4dcdf3b94135f4a157d
- service: wake_on_lan.send_magic_packet
data:
mac: 14:c9:13:e4:47:2a
broadcast_port: 9
- delay:
hours: 0
minutes: 0
seconds: 5
milliseconds: 0
- service: remote.send_command
data:
delay_secs: 0.7
device: lgtv
command:
- 9
- 0
num_repeats: 1
hold_secs: 0.3
target:
device_id: 688ca04b397fd4dcdf3b94135f4a157d
- delay:
hours: 0
minutes: 0
seconds: 6
milliseconds: 0
- service: media_player.select_source
data:
source: FetchTV
target:
entity_id: media_player.lg_webos_smart_tv
mode: single
icon: mdi:television
confirmable_notification_turn_off_high_power_notifications:
alias: Confirmable Notification - turn off high power notifications
use_blueprint:
path: homeassistant/confirmable_notification.yaml
input:
notify_device: 0f5265246071d1e781aadc2b8aaea0c8
title: Home power usage HIGH
message: Check appliances as home is using xx kW. Repeat this notification every
15 mins?
dismiss_text: Stop notification
confirm_text: Continue notification
dismiss_action:
- service: input_boolean.turn_off
metadata: {}
data: {}
target:
entity_id: input_boolean.grid_power_alert
description: ''