forked from dshokouhi/Home-AssistantConfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswitches.yaml
executable file
·244 lines (226 loc) · 7.91 KB
/
switches.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
- platform: template
switches:
den_fan:
friendly_name: Den Fan
unique_id: harmony_den_fan
value_template: "{% if is_state('input_boolean.den_fan', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.den_fan_toggle
- service: input_boolean.turn_on
data:
entity_id: input_boolean.den_fan
turn_off:
- service: script.turn_on
entity_id: script.den_fan_toggle
- service: input_boolean.turn_off
data:
entity_id: input_boolean.den_fan
ollies_fan:
friendly_name: Ollies Fan
unique_id: harmony_ollies_fan
value_template: "{% if is_state('input_boolean.ollies_fan', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.ollies_fan_toggle
- service: input_boolean.turn_on
data:
entity_id: input_boolean.ollies_fan
turn_off:
- service: script.turn_on
entity_id: script.ollies_fan_toggle
- service: input_boolean.turn_off
data:
entity_id: input_boolean.ollies_fan
living_room_fan:
friendly_name: Living Room Fan
unique_id: harmony_living_room_fan
value_template: "{% if is_state('input_boolean.living_room_fan', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.on_lr_fan
- service: input_boolean.turn_on
data:
entity_id: input_boolean.living_room_fan
turn_off:
- service: script.turn_on
entity_id: script.lr_fan_off
- service: input_boolean.turn_off
data:
entity_id: input_boolean.living_room_fan
fireplace:
friendly_name: Fireplace
unique_id: harmony_fireplace
value_template: "{% if is_state('input_boolean.fireplace', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.on_fireplace
- service: input_boolean.turn_on
data:
entity_id: input_boolean.fireplace
turn_off:
- service: script.turn_on
entity_id: script.off_fireplace
- service: input_boolean.turn_off
data:
entity_id: input_boolean.fireplace
bedroom_fan:
friendly_name: Bedroom Fan
unique_id: harmony_bedroom_fan
value_template: "{% if is_state('input_boolean.bedroom_fan', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.on_bedroom_fan
- service: input_boolean.turn_on
data:
entity_id: input_boolean.bedroom_fan
turn_off:
- service: script.turn_on
entity_id: script.off_bedroom_fan
- service: input_boolean.turn_off
data:
entity_id: input_boolean.bedroom_fan
kitchen_tv:
friendly_name: Kitchen TV
unique_id: harmony_kitchen_tv
value_template: "{% if is_state('input_boolean.kitchen_tv', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.kitchen_tv_on
- service: input_boolean.turn_on
data:
entity_id: input_boolean.kitchen_tv
turn_off:
- service: script.turn_on
entity_id: script.kitchen_tv_off
- service: input_boolean.turn_off
data:
entity_id: input_boolean.kitchen_tv
living_room_tv:
friendly_name: Living Room TV
unique_id: harmony_living_room_tv
value_template: "{% if is_state('input_boolean.living_room_tv', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.living_room_tv_on
- service: input_boolean.turn_on
data:
entity_id: input_boolean.living_room_tv
turn_off:
- service: script.turn_on
entity_id: script.living_room_tv_off
- service: input_boolean.turn_off
data:
entity_id: input_boolean.living_room_tv
ollies_tv:
friendly_name: Ollies TV
unique_id: harmony_ollie_tv
value_template: "{% if is_state('input_boolean.ollies_tv', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.ollies_tv
- service: input_boolean.turn_on
data:
entity_id: input_boolean.ollies_tv
turn_off:
- service: script.turn_on
entity_id: script.ollies_tv
- service: input_boolean.turn_off
data:
entity_id: input_boolean.ollies_tv
ollies_heater:
friendly_name: Ollies Heater
unique_id: harmony_ollies_heater
value_template: "{% if is_state('input_boolean.ollies_heater', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.ollies_heater
- service: input_boolean.turn_on
data:
entity_id: input_boolean.ollies_heater
turn_off:
- service: script.turn_on
entity_id: script.ollies_heater
- service: input_boolean.turn_off
data:
entity_id: input_boolean.ollies_heater
bedroom_humidifier:
friendly_name: Bedroom Humidifier
unique_id: harmony_bedroom_humidifer
value_template: "{% if is_state('input_boolean.bedroom_humidifier', 'on') %}on{% else %}off{% endif %}"
turn_on:
- service: script.turn_on
entity_id: script.bedroom_humidifier
- service: input_boolean.turn_on
data:
entity_id: input_boolean.bedroom_humidifier
turn_off:
- service: script.turn_on
entity_id: script.bedroom_humidifier
- service: input_boolean.turn_off
data:
entity_id: input_boolean.bedroom_humidifier
- platform: template
switches:
bedroom_shield:
friendly_name: Bedroom Shield
unique_id: harmony_bedroom_shield
value_template: "{{ is_state_attr('remote.harmony_hub_bedroom', 'current_activity', 'Bedroom SHIELD TV') }}"
turn_on:
service: remote.turn_on
entity_id: remote.harmony_hub_bedroom
data:
activity: '36318456'
turn_off:
service: remote.turn_off
entity_id: remote.harmony_hub_bedroom
den_shield:
friendly_name: Den Shield
unique_id: harmony_den_shield
value_template: "{{ is_state_attr('remote.harmony_hub_den', 'current_activity', 'SHIELD TV') }}"
turn_on:
service: remote.turn_on
entity_id: remote.harmony_hub_den
data:
activity: '34652500'
turn_off:
service: remote.turn_off
entity_id: remote.harmony_hub_den
house_fan:
friendly_name: House Fan
unique_id: thermostat_house_fan
value_template: "{{ is_state_attr('climate.thermostat', 'fan_mode', 'Low') }}"
turn_on:
- service: climate.set_fan_mode
data:
entity_id: climate.thermostat
fan_mode: 'Low'
turn_off:
- service: climate.set_fan_mode
data:
entity_id: climate.thermostat
fan_mode: 'Auto low'
- platform: command_line
switches:
tasker_sleep_danny:
command_on: python3 "/home/homeassistant/.homeassistant/danny_sleep.py"
- platform: command_line
switches:
tasker_sleep_tosh:
command_on: python3 "/home/homeassistant/.homeassistant/tosh_sleep.py"
- platform: command_line
switches:
tasker_awake_tosh:
command_on: python3 "/home/homeassistant/.homeassistant/tosh_awake.py"
- platform: wake_on_lan
mac: !secret tosh_w10_mac
name: Tosh W10
host: 192.168.1.24
- platform: wake_on_lan
mac: !secret blueiris_mac
name: Blue Iris
host: 192.168.1.107
- platform: wake_on_lan
mac: !secret plex_mac
name: Plex
host: 192.168.1.60