-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathconfiguration.yaml
510 lines (404 loc) · 9.07 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
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
#
# Automations
#
# @link https://www.home-assistant.io/integrations/automation/
#
automation: !include_dir_merge_list automations/
#
# Binary sensors
#
# @link https://www.home-assistant.io/integrations/binary_sensor/
#
binary_sensor: !include misc/binary_sensors.yaml
#
# Blink camera and security systems
#
# @link https://www.home-assistant.io/integrations/blink/
#
blink: !include misc/blink.yaml
#
# Brother Printer
#
# Reads current data from your local Brother printer.
#
# @link https://www.home-assistant.io/integrations/brother/
#
brother:
#
# Browser mod
#
# Turns web browsers into controllable entities.
#
# @link https://github.com/thomasloven/hass-browser_mod
#
browser_mod:
prefix: "browser_"
#
# Cameras
#
# @link https://www.home-assistant.io/integrations/camera/
#
camera: !include_dir_merge_list cameras/
#
# Enable the configuration UI
#
# @link https://www.home-assistant.io/integrations/config/
#
config:
#
# Allow you to issue voice commands from the frontend in enabled browsers
#
# @link https://www.home-assistant.io/integrations/conversation/
#
# conversation:
#
# Counters
#
# @link https://www.home-assistant.io/integrations/counter/
#
counter: !include misc/counters.yaml
#
# Home Assistant Community Store
#
# @link https://hacs.xyz/
#
hacs:
token: !secret github_access_token
#
# Device trackers
#
# @link https://www.home-assistant.io/integrations/device_tracker/
#
device_tracker: !include misc/device_trackers.yaml
#
# Discover some devices automatically
#
# @link https://www.home-assistant.io/integrations/discovery/
#
discovery:
ignore:
- google_cast
- samsung_printer
#
# Displays
#
# @see /custom_components/display/
#
# @link https://github.com/daemondazz/homeassistant-displays
#
display: !include misc/displays.yaml
#
# Enable the official UI
#
# @link https://www.home-assistant.io/integrations/frontend/
#
frontend:
themes: !include_dir_named themes/
#
# Combine entities into groups
#
# @link https://www.home-assistant.io/integrations/group/
#
group: !include misc/groups.yaml
#
# Enable the Hass.io panel
#
# @link https://www.home-assistant.io/hassio/
#
hassio:
#
# Enable support for tracking state changes over time
#
# @link https://www.home-assistant.io/integrations/history/
#
history:
#
# Setup basic Home Assistant information
#
# @link https://www.home-assistant.io/docs/configuration/basic/
#
homeassistant:
name: !secret homeassistant_name
latitude: !secret zone_home_latitude
longitude: !secret zone_home_longitude
elevation: !secret zone_home_elevation
unit_system: metric
time_zone: !secret homeassistant_time_zone
customize: !include customize.yaml
customize_glob: !include customize_glob.yaml
auth_providers:
- type: homeassistant
whitelist_external_dirs:
- !secret homeassistant_whitelist_config
- !secret homeassistant_whitelist_share
#
# HomeKit
#
# @link https://www.home-assistant.io/integrations/homekit/
#
homekit: !include misc/homekit.yaml
#
# Enable the web server
#
# `cors_allowed_origins` includes the domain:port for AppDaemon.
#
# @link https://www.home-assistant.io/integrations/http/
#
http:
base_url: !secret http_base_url
server_port: !secret http_server_port
cors_allowed_origins: !secret http_cors_allowed_origins
#
# IFTTT integration
#
# @link https://www.home-assistant.io/integrations/ifttt/
#
ifttt:
key: !secret ifttt_key
#
# Input booleans
#
# @link https://www.home-assistant.io/integrations/input_boolean/
#
input_boolean: !include inputs/input_booleans.yaml
#
# Input datetimes
#
# @link https://www.home-assistant.io/integrations/input_datetime/
#
input_datetime: !include inputs/input_datetimes.yaml
#
# Lists of selectable values
#
# @link https://www.home-assistant.io/integrations/input_select/
#
input_select: !include inputs/input_selects.yaml
#
# iOS companion component for the Home Assistant iOS app
#
# @link https://itunes.apple.com/us/app/home-assistant-open-source-home-automation/id1099568401
# @link https://companion.home-assistant.io/
#
ios:
#
# LIFX
#
# @link https://www.home-assistant.io/integrations/lifx/
#
lifx: !include misc/lifx.yaml
#
# Lights
#
# @link https://www.home-assistant.io/integrations/light/
#
light: !include_dir_merge_list lights/
#
# Local IP address
#
# @link https://www.home-assistant.io/integrations/local_ip/
#
local_ip:
name: Local IP Address
#
# View all events in a logbook
#
# @link https://www.home-assistant.io/integrations/logbook/
#
logbook:
#
# Log some details
#
# @link https://www.home-assistant.io/integrations/logger/
#
logger:
default: warning
logs:
aiohttp.server: critical # EBOX newer component bug.
custom_components.display: critical # When tablet is offline.
custom_components.gtfs_custom: critical # Until GTFS integration overhaul is complete
custom_components.light.lightpack: critical # When Lightpack is offline.
homeassistant.components.unifi: fatal # When Unifi Controller is temporarily unreachable.
homeassistant.components.media_player.plex: fatal # When Plex is offline.
sqlalchemy.exc: critical # Until GTFS integration overhaul is complete
sqlalchemy.exc.ProgrammingError: critical # Until GTFS integration overhaul is complete
homeassistant.helpers.entity: critical # Until GTFS integration overhaul is complete
pyunifi.controller: error # When Unifi Controller is temporarily unreachable.
#
# Lovelace user interface
#
# @link https://www.home-assistant.io/lovelace/
#
lovelace:
mode: yaml
#
# Enable a map showing the location of tracked devices
#
# @link https://www.home-assistant.io/integrations/map/
#
map:
#
# Media players
#
# @link https://www.home-assistant.io/integrations/media_player/
#
media_player: !include misc/media_players.yaml
#
# Mobile companion app
#
# @link https://companion.home-assistant.io/
# @link https://www.home-assistant.io/integrations/mobile_app/
#
mobile_app:
#
# MQTT Integration
#
# @link https://www.home-assistant.io/integrations/mqtt/
#
mqtt:
broker: !secret mqtt_broker
port: !secret mqtt_port
username: !secret mqtt_username
password: !secret mqtt_password
client_id: home-assistant
birth_message:
topic: "hass/status"
payload: "online"
will_message:
topic: "hass/status"
payload: "offline"
#
# Notification services
#
# @link https://www.home-assistant.io/integrations/notify/
#
notify: !include_dir_merge_list notifications/
#
# Person presence detection
#
# @link https://www.home-assistant.io/integrations/person/
#
person: !include misc/persons.yaml
#
# Plex Media Server
#
# @link https://www.home-assistant.io/integrations/plex/
#
plex: !include misc/plex.yaml
#
# Database recorder
#
# Limit the number of tracked entities and length of history.
#
# @link https://www.home-assistant.io/integrations/recorder/
#
recorder: !include misc/recorder.yaml
#
# Scenes
#
# @link https://www.home-assistant.io/integrations/scene/
#
scene: !include misc/scenes.yaml
#
# Scripts
#
# @link https://www.home-assistant.io/integrations/script/
#
script: !include_dir_named scripts/
#
# Sensors
#
# @link https://www.home-assistant.io/integrations/sensor/
#
sensor: !include_dir_merge_list sensors/
#
# Shell commands
#
# @link https://www.home-assistant.io/integrations/shell_command/
#
shell_command: !include misc/shell_commands.yaml
#
# Speedtest.net
#
# @link https://www.home-assistant.io/integrations/speedtestdotnet/
#
speedtestdotnet: !include misc/speedtest.yaml
#
# Track the sun
#
# @link https://www.home-assistant.io/integrations/sun/
#
sun:
#
# Switches
#
# @link https://www.home-assistant.io/integrations/switch/
#
switch: !include_dir_merge_list switches/
#
# System health
#
# @link https://www.home-assistant.io/integrations/system_health/
#
system_health:
#
# TP-Link Kasa Smart
#
# @link https://www.home-assistant.io/integrations/tplink/
#
tplink: !include misc/tplink.yaml
#
# Text-to-Speech
#
# @link https://www.home-assistant.io/integrations/tts/
#
tts:
- platform: google_translate
#
# Ubiquiti UniFi
#
# @link https://www.home-assistant.io/integrations/unifi
#
unifi: !include misc/unifi.yaml
#
# Check for available updates
#
# Note: This component will send some information about your system to
# the developers to assist with development of Home Assistant.
# Optionally allow Home Assistant developers to focus on popular components.
#
# @link https://www.home-assistant.io/blog/2016/10/25/explaining-the-updater/
# @link https://www.home-assistant.io/integrations/updater/
#
updater:
include_used_components: true
#
# Variables
#
# @see /custom_components/variable.py
#
# @link https://github.com/rogro82/hass-variables
#
variable: !include inputs/variables.yaml
#
# Weather
#
# @link https://www.home-assistant.io/integrations/weather/
#
weather: !include misc/weather.yaml
#
# Zones
#
# @link https://www.home-assistant.io/integrations/zone/
#
zone: !include misc/zones.yaml
#
# Z-Wave integration
#
# @link https://www.home-assistant.io/docs/z-wave/adding/
# @link https://www.home-assistant.io/docs/z-wave/
# @link https://www.home-assistant.io/integrations/zwave/
#
zwave:
device_config: !include zwave_device_config.yaml
network_key: !secret zwave_network_key
usb_path: /dev/ttyACM0