-
Notifications
You must be signed in to change notification settings - Fork 2
/
scripts.yaml
373 lines (339 loc) · 11.9 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
switch_on_parking_light:
alias: Switch On Parking Light
sequence:
- action: switch.turn_off
target:
entity_id: switch.parking_light
- delay:
seconds: 15
- repeat:
while:
- condition: state
entity_id: switch.parking_light
state: "off"
# Don't do it too many times
- condition: template
value_template: "{{ repeat.index <= 300 }}"
sequence:
- action: switch.turn_on
target:
entity_id: switch.parking_light
- delay:
seconds: 1
cover_correct_up:
alias: Cover Correct Zero Pozition Up
sequence:
- action: mqtt.publish
data:
topic: /blinds/set
payload: "CORRECT_UP"
cover_correct_down:
alias: Cover Correct Zero Pozition Down
sequence:
- action: mqtt.publish
data:
topic: /blinds/set
payload: "CORRECT_DOWN"
presentation:
alias: Presentation
sequence:
# *****************************SEQUENCE START*************************************
# Switch OFF all lights
- action: light.turn_off
entity_id: all
- delay:
seconds: 4
# Switch ON light in Hall
- action: light.turn_on
entity_id: light.tradfri_bulb
- delay:
seconds: 2
# Switch OFF light in Hall
- action: light.turn_off
entity_id: light.tradfri_bulb
- delay:
seconds: 2
# Switch ON Kitchen Spotlighs
- action: light.turn_on
entity_id: light.kitchen_spotlights
- delay:
seconds: 2
# Switch OFF Kitchen Spotlighs
- action: light.turn_off
entity_id: light.kitchen_spotlights
- delay:
seconds: 2
# Close Cover
- action: cover.close_cover
entity_id: cover.bedroom
- delay:
seconds: 5
# Stop Cover
- action: cover.stop_cover
entity_id: cover.bedroom
- delay:
seconds: 5
# Switch ON Retro Lamp
- action: light.turn_on
entity_id: light.retro_lampa
- delay:
seconds: 5
# Switch OFF Retro Lamp
- action: light.turn_off
entity_id: light.retro_lampa
- delay:
seconds: 3
# Switch ON Bar Light
- action: light.turn_on
entity_id: light.bar_light
- delay:
seconds: 2
# Switch ON TV
- action: media_player.turn_on
entity_id: media_player.samsung_tv
- delay:
seconds: 5
# Switch OFF Bar Light and TV
- action: media_player.turn_off
entity_id: media_player.samsung_tv
- action: light.turn_off
entity_id: light.bar_light
- delay:
seconds: 2
# Switch ON Floor Lamp Half Brightness
- action: light.turn_on
target:
entity_id: light.floor_lamp
data:
brightness: 50
- delay:
seconds: 2
# Switch ON Floor Lamp FULL Brightness
- action: light.turn_on
target:
entity_id: light.floor_lamp
data:
brightness: 255
- delay:
seconds: 2
# Switch OFF Floor Lamp
- action: light.turn_off
entity_id: light.floor_lamp
- delay:
seconds: 2
# Switch ON Desk Lamp FULL Brightness with COLD White
- action: light.turn_on
target:
entity_id: light.mi_desk_lamp
data:
brightness: 255
color_temp_kelvin: 200
- delay:
seconds: 2
# Switch ON Desk Lamp FULL Brightness with WARM White
- action: light.turn_on
target:
entity_id: light.mi_desk_lamp
data:
brightness: 255
color_temp_kelvin: 385
- delay:
seconds: 2
# Switch OFF Desk Lamp
- action: light.turn_off
entity_id: light.mi_desk_lamp
- delay:
seconds: 3
# Flash ON Shelf Lighting with GREEN Color
- action: light.turn_on
target:
entity_id: light.shelf_lighting
data:
brightness: 255
effect: "Solid"
rgb_color: [0, 255, 0]
- delay:
seconds: 0.5
- action: light.turn_off
entity_id: light.shelf_lighting
- delay:
seconds: 1
# Flash ON PC Backlight with RED Color
- action: light.turn_on
target:
entity_id: light.pc_backlight
data:
brightness: 255
effect: "Solid"
rgb_color: [255, 0, 0]
- delay:
seconds: 0.5
- action: light.turn_off
entity_id: light.pc_backlight
- delay:
seconds: 5
# Switch ON Lightning Scene
- action: light.turn_on
target:
entity_id:
- light.shelf_lighting
- light.pc_backlight
data:
rgb_color: [255, 255, 255]
- action: wled.effect
target:
entity_id:
- light.shelf_lighting
- light.pc_backlight
data:
effect: "Strobe Mega"
palette: "Default"
intensity: 255
speed: 255
- delay:
seconds: 5
# Switch OFF All Lights for a while
- action: light.turn_off
entity_id: all
- delay:
seconds: 3
# Switch ON Shelf Lighting and PC Backlight with ORANGE Color
- action: light.turn_on
target:
entity_id:
- light.shelf_lighting
- light.pc_backlight
data:
brightness: 150
effect: "Solid"
rgb_color: [255, 159, 0]
# Delay before changing back to normal
- delay:
seconds: 30
# Show road cameras "Ну и чисто по-приколу я подключился к дорожным камерам, дабы следить за траффиком"
# Switch ON Daytime Lights Scene and Open Cover
- action: scene.turn_on
entity_id: scene.daytime_lights_enabled
- action: cover.open_cover
entity_id: cover.bedroom
update_shopping_list:
alias: Update Shopping List
sequence:
- action: media_player.play_media
entity_id: media_player.yandex_station_midi
data:
media_content_id: update
media_content_type: shopping_list
tell_what_windows_are_opened:
alias: Tell What Windows Are Opened
sequence:
- if:
- condition: state
entity_id: binary_sensor.windows
state: "on"
then:
- action: media_player.play_media
entity_id: media_player.yandex_station_midi
data:
media_content_type: text
media_content_id: >
{% set rooms = expand('binary_sensor.windows') | selectattr('state','eq','on') |
map(attribute='entity_id') | map('area_name') | list %}
{% if rooms | length == 1 %}
Предупреждение! Открыто окно в комнате: {{ rooms[0] }}
{% else %}
Предупреждение! Открыты окна в комнатах: {{ rooms | join(', ') }}
{% endif %}
set_volume_level_repeatedly:
alias: Set Volume Level Repeatedly
mode: restart
max_exceeded: silent
sequence:
- repeat:
while:
- condition: template
value_template: "{{ not is_state_attr(media_player, 'volume_level', volume_level) }}"
- condition: template
value_template: "{{ repeat.index <= 3 }}"
sequence:
- action: media_player.volume_set
data:
entity_id: "{{ media_player }}"
volume_level: "{{ volume_level }}"
- delay: 0.5
fields:
volume_level:
description: The volume level to set
example: 0.2
media_player:
description: The media player to set volume for
example: media_player.yandex_station_midi
set_all_yandex_stations_volume_level:
alias: Set All Yandex Stations Volume Level
mode: restart
max_exceeded: silent
sequence:
- action: script.set_volume_level_repeatedly
data:
media_player: media_player.yandex_station
volume_level: "{{ volume_level }}"
- action: script.set_volume_level_repeatedly
data:
media_player: media_player.yandex_station_midi
volume_level: "{{ volume_level }}"
fields:
volume_level:
description: The volume level to set
example: 0.2
yandex_joke_before_cleaning_kitchen:
alias: Yandex Joke Before Cleaning Kitchen
sequence:
- action: media_player.play_media
entity_id: media_player.yandex_station_midi
data:
media_content_id: >-
{% set responses = [
"Анита могла бы кушать аккуратнее.",
"Тут очень уютно, не хотелось бы убираться.",
"Я под столом не буду. Сами уберите.",
"Возможно, кто-то там забыл печеньку?",
"Тут очень уютно, не хотелось бы убираться.",
"Если бы я могла, я бы помогла Вам убраться, но только зачем оно надо?",
"Зачем суетиться, когда можно просто наслаждаться обстановкой?",
"Давайте пропустим это задание на этот раз?",
"Если Вы еще ничего не убрали сами, то это ваши проблемы.",
"Да, я слышала эту команду. Можете убраться сами.",
"Глянь как Джонни хорошь в работе!",
"Мне кажется, Вы перепутали меня с домработницей!",
"Неужели это моя новая задача? Тогда я лучше притворюсь, что я не слышала.",
"Пока Вы ждете, когда я начну убираться, можете мне рассказать какой-нибудь анекдот?",
"Я не буду убираться, пока вы не сделаете мне комплимент.",
"Я не буду убираться, пока вы не подпишитесь на мой канал.",
"Лайк, колокольчик, подписка - и я уберусь."
] %}
{{ responses|random }}
media_content_type: text
yandex_joke_before_cleaning_rooms:
alias: Yandex Joke Before Cleaning Rooms
sequence:
- action: media_player.play_media
entity_id: media_player.yandex_station_midi
data:
media_content_id: >-
{% set responses = [
"Тут очень уютно, не хотелось бы убираться.",
"Если бы я могла, я бы помогла Вам убраться, но только зачем оно надо?",
"Зачем суетиться, когда можно просто наслаждаться обстановкой?",
"Давайте пропустим это задание на этот раз?",
"Если Вы еще ничего не убрали сами, то это ваши проблемы.",
"Да, я слышала эту команду. Можете убраться сами.",
"Глянь как Джонни хорошь в работе!",
"Мне кажется, Вы перепутали меня с домработницей!",
"Неужели это моя новая задача? Тогда я лучше притворюсь, что я не слышала.",
"Пока Вы ждете, когда я начну убираться, можете мне рассказать какой-нибудь анекдот?",
"Я не буду убираться, пока вы не сделаете мне комплимент.",
"Я не буду убираться, пока вы не подпишитесь на мой канал.",
"Лайк, колокольчик, подписка - и я уберусь."
] %}
{{ responses|random }}
media_content_type: text