-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
205 lines (172 loc) · 5.24 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
homeassistant:
# Name of the location where Home Assistant is running
name: Rushbrook Overlook
# Location required to calculate the time the sun rises and sets
latitude: !secret LAT
longitude: !secret LONG
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: !secret ELE
# metric for Metric, imperial for Imperial
unit_system: metric
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: !secret timezone
# Customization file
customize: !include customize.yaml
# auth_providers:
# - type: trusted_networks
# trusted_networks:
# - 127.0.0.1
# - 192.168.1.0/24
# allow_bypass_login: true
# - type: homeassistant
# Show links to resources in log and frontend
introduction:
# Enables the frontend
frontend:
themes: !include themes.yaml
lovelace:
mode: yaml
# Enables configuration UI
config:
# database controls
recorder:
purge_keep_days: 5
purge_interval: 1
http:
base_url: !secret hass_url
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
# Secrets are defined in the file secrets.yaml
#api_password: !secret http_password #only used for torque!
#cors_allowed_origins:
# - !secret cors_address
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# base_url: example.duckdns.org:8123
ip_ban_enabled: true
login_attempts_threshold: 5
# if user gets completely locked out
#Remove both .storage/auth* and .storage/onboarding to restart the onboarding process and create a new user.
# Checks for available updates
# Note: This component will send some information about your system to
# the developers to assist with development of Home Assistant.
# For more information, please see:
# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
updater:
# Optional, allows Home Assistant developers to focus on popular components.
# include_used_components: true
# Discover some devices automatically
discovery:
# Allows you to issue voice commands from the frontend in enabled browsers
conversation:
# Enables support for tracking state changes over time
history:
# View all events in a logbook
logbook:
# Enables a map showing the location of tracked devices
map:
# enables custom card updating & tracking
custom_updater:
#mode: yaml
hide_sensor: false
show_installable: true
track:
- cards
- components
#- python scripts
component_urls:
- https://raw.githubusercontent.com/robmarkcole/Hue-sensors-HASS/master/custom_updater.json
card_urls:
- https://raw.githubusercontent.com/ljmerza/waze-card/master/updater.json
#python_urls:
#-
# show system health information on info panel
system_health:
logger:
default: warning
#logs:
# homeassistant.components.smartthings: debug
# Track the sun
sun:
# weather sensor
#weather:
# - platform: darksky
# api_key: !secret darksky_token
device_tracker:
- platform: nmap_tracker
hosts:
- 192.168.1.0/24
#home_interval: 10
interval_seconds: 15
consider_home: 300
exclude:
- !secret hass_wired
new_device_defaults:
track_new_devices: yes
hide_if_away: False
#- platform: gpslogger
- platform: huesensor
- platform: trackr
username: !secret trackr_username
password: !secret trackr_password
- platform: netgear
password: !secret netgear_pass
port: 80
# Weather and all sensors
sensor: !include configuration/sensor.yaml
#- platform: yr
# Text to speech
tts:
- platform: google
# use the UI builder, if you want to use yaml use the second and setup the file
person:
#person: !include configuration/person.yaml
# Cloud - not using (have to pay $5 a month) have turned on google assistant below
#cloud: !include configuration/cloud.yaml
# Nest
nest:
client_id: !secret nest_client_id
client_secret: !secret nest_client_secret
# garage door
cover:
- platform: myq
username: !secret myq_username
password: !secret myq_password
type: chamberlain
#hue for sensor
hue:
bridges:
- host: 192.168.1.23
allow_unreachable: true
allow_hue_groups: true
# google home BT device tracker turned off
# google home alarms and timers should be visible
googlehome:
devices:
- host: 192.168.1.4
track_devices: false
track_alarms: true
- host: 192.168.1.14
track_devices: false
track_alarms: true
- host: 192.168.1.7
track_devices: false
track_alarms: true
#for sending to ifttt - receiving uses the integration
ifttt:
key: !secret ifttt_webhooks
notify: !include configuration/notify.yaml
zone: !include configuration/zone.yaml
timer: !include configuration/timer.yaml
google: !include configuration/calendar.yaml
input_select: !include configuration/input_select.yaml
input_boolean: !include configuration/input_boolean.yaml
binary_sensor: !include configuration/binary_sensor.yaml
input_number: !include configuration/input_number.yaml
google_assistant: !include configuration/ga.yaml
proximity: !include configuration/proximity.yaml
hangouts: !include configuration/hangouts.yaml
intent_script: !include configuration/hangout_intent_scripts.yaml
#switch: !include configuration/switch.yaml
group: !include groups.yaml
automation: !include_dir_merge_list automations
script: !include scripts.yaml