-
Notifications
You must be signed in to change notification settings - Fork 3
/
configuration.yaml
301 lines (250 loc) · 11 KB
/
configuration.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
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: !secret home_latitude
longitude: !secret home_longitude
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: !secret home_elevation
# metric for Metric, imperial for Imperial
unit_system: imperial
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: !secret home_time_zone
# Customization file
internal_url: !secret ha_base_url
external_url: !secret ha_base_url
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
mobile_app:
discovery:
cloud:
frontend:
themes: !include_dir_merge_named themes
# https://www.home-assistant.io/components/recorder/
recorder:
purge_keep_days: 8
include:
entities:
- binary_sensor.patio_door
- calendar.appointments
- !secret person_me
- !secret step_tracker
- device_tracker.powerview_hub
- device_tracker.august_lock
- lock.august_lock
- sensor.speedtest_download
- sensor.speedtest_ping
- sensor.speedtest_upload
- sensor.kitchen_temperature
- sensor.condo_temperature
- sensor.owm_temperature
- sensor.allergy_index_forecasted_average
- sensor.cold_flu_forecasted_average_2
- sensor.processor_use
- sensor.memory_use
- sensor.load_1m
- sensor.load_5m
- sensor.load_15m
- sensor.opensky
#######################################################################################
# #
# COMPONENTS #
# #
#######################################################################################
#######################################################################################
# Binary sensors in Home Assistant
#
# https://www.home-assistant.io/components/binary_sensor/
binary_sensor: !include_dir_list components/binary_sensors
#######################################################################################
#######################################################################################
# Fan Templates for Home Assistant
# https://www.home-assistant.io/integrations/fan.template/
fan:
- platform: template
fans: !include_dir_merge_named components/fans
#######################################################################################
#######################################################################################
# Google Component - only used for calendar in Home Assistant
#
# https://www.home-assistant.io/components/calendar.google/
google:
client_id: !secret google_client_id
client_secret: !secret google_client_secret
#######################################################################################
#######################################################################################
# https://www.home-assistant.io/integrations/http/
http:
ssl_certificate: /ssl/keys/letsencrypt/fullchain.pem
ssl_key: /ssl/keys/letsencrypt/privkey.pem
#######################################################################################
#######################################################################################
# The input_boolean component allows the user to define boolean values that
# can be controlled via the frontend and can be used within conditions of
# automation. This can for example be used to disable or enable certain
# automations.
#
# https://www.home-assistant.io/components/input_boolean/
input_boolean: !include_dir_merge_named components/input_booleans
#######################################################################################
#######################################################################################
# The input_number component is a built in home-assistant component that lets a
# user input a number (defined by input_number) to a specififed value
# Used for Fanimation fans
#
# https://www.home-assistant.io/components/input_number/
input_number: !include_dir_merge_named components/input_numbers
#######################################################################################
#######################################################################################
# Used for Fanimation fans
#
# https://www.home-assistant.io/components/input_selects/
input_select: !include_dir_merge_named components/input_selects
#######################################################################################
#######################################################################################
# Customized iOS push Notifications for Home Assistant / Node-Red
# TODO: File Structure
#
# https://www.home-assistant.io/docs/ecosystem/ios/
ios:
push:
categories:
- name: Home
identifier: 'home'
actions:
- identifier: 'NO_MUSIC'
title: 'Turn off music'
activationMode: 'background'
authenticationRequired: no
destructive: yes
- identifier: 'RAISE_BLINDS'
title: 'Raise Shades'
activationMode: 'background'
authenticationRequired: no
destructive: no
- name: Laundry Notification
identifier: 'laundry'
actions:
- identifier: 'REMIND_ME_30'
title: 'Remind me in 30 minutes'
activationMode: 'background'
authenticationRequired: no
destructive: no
- identifier: 'TELL_OTHER_PERSON'
title: 'Ask them to do it'
activationMode: 'background'
authenticationRequired: no
destructive: no
#######################################################################################
#######################################################################################
#
# https://www.home-assistant.io/integrations/light.group/
light: !include_dir_merge_list components/lights
#######################################################################################
#######################################################################################
# Nest Components
# - smoke detector / CO detector
#
# https://www.home-assistant.io/integrations/nest/
nest:
client_id: !secret nest_client_id
client_secret: !secret nest_client_secret
#######################################################################################
#######################################################################################
# Adding custom panels to Home Assistant
# https://www.home-assistant.io/integrations/panel_custom/
panel_iframe: !include_dir_merge_named components/iframe_panels
#######################################################################################
#######################################################################################
# ReST Commands - used to invoke repeatable ReST commands (currently used for shades)
#
# https://www.home-assistant.io/integrations/rest_command/
rest_command: !include_dir_merge_named components/rest_commands
#######################################################################################
#######################################################################################
# All custom scripts that do multiple actions with one call
#
# https://www.home-assistant.io/components/script
script: !include_dir_merge_named components/scripts
#######################################################################################
#######################################################################################
# All Sensors that are in Home Assistant
#
# https://www.home-assistant.io/components/sensor
sensor: !include_dir_merge_list components/sensors
#######################################################################################
#######################################################################################
# Custom Shell Commands in Home Assistant
#
# https://www.home-assistant.io/components/switch/
shell_command: !include_dir_merge_named components/shell_commands
#######################################################################################
#######################################################################################
# Shelly for Home Assistant Shell Commands in Home Assistant
#
# https://github.com/StyraHem/ShellyForHASS
shelly:
discovery: true
#######################################################################################
#######################################################################################
# SONOS Manual - Auto Discovery not working with multiple VLANs
#
# https://www.home-assistant.io/integrations/sonos/
sonos:
media_player:
hosts:
- !secret sonos_tv_bar_ip_address
- !secret sonos_move_ip_address
- !secret sonos_bedroom_ip_address
- !secret sonos_bathroom_ip_address
- !secret sonos_foyer_ip_address
#######################################################################################
#######################################################################################
# Custom Switches in Home Assistant
#
# https://www.home-assistant.io/components/switch/
switch: !include_dir_merge_list components/switches
#######################################################################################
#######################################################################################
# System Health
#
# https://www.home-assistant.io/integrations/system_health/
system_health:
#######################################################################################
#######################################################################################
# TP-Link Kasa Smart devices
#
# https://www.home-assistant.io/integrations/tplink
tplink:
discovery: false
switch:
- host: !secret dishwasher_plug_ip_address
#######################################################################################
#######################################################################################
# System Health
#
# https://www.home-assistant.io/integrations/system_health/
vacuum:
- platform: xiaomi_miio
host: !secret roborock_ip_address
token: !secret roborock_token
#######################################################################################
#######################################################################################
# Wake on LAN - Computer and TV
#
# https://www.home-assistant.io/integrations/wake_on_lan
wake_on_lan:
#######################################################################################
#######################################################################################
# WebOs TV
#
# https://www.home-assistant.io/integrations/webostv/
webostv:
name: LG TV Living Room
host: !secret tv_ip_address
# other settings
turn_on_action:
service: wake_on_lan.send_magic_packet
data:
mac: !secret tv_mac_address
#######################################################################################