-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.yaml
233 lines (182 loc) · 4.97 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
homeassistant:
# Name of the location where Home Assistant is running
name: Thuis
# Location required to calculate the time the sun rises and sets
latitude: !secret gps_lat
longitude: !secret gps_lon
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 5
# 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: Europe/Amsterdam
whitelist_external_dirs:
- /tmp
customize: !include customize.yaml
lovelace:
mode: yaml
logger:
default: info
logs:
homeassistant.components.device_tracker: critical
homeassistant.components.camera: critical
recorder:
db_url: mysql://hass_user:[email protected]/hass_db?charset=utf8
purge_keep_days: 7
exclude:
domains:
- weblink
- updater
- scene
- group
- sun
- mqtt
- script
- media_player
# Enables the frontend
frontend:
themes: !include configuration/themes.yaml
# Enables configuration UI
config:
system_health:
http:
# Uncomment this to add a password (recommended!)
api_password: !secret http_password
# Uncomment this if you are using SSL or running in Docker etc
base_url: thuis.ten-hove.net:8123
# Checks for available updates
updater:
# 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:
# Track the sun
sun:
zwave:
usb_path: /dev/ttys0
network_key: !secret zwave_secret
alarm_control_panel:
- platform: manual
name: "Franjezwam 28"
code: !secret alarm_secret
pending_time: 30
delay_time: 33
trigger_time: 120
disarmed:
trigger_time: 0
armed_home:
pending_time: 30
delay_time: 3
armed_away:
pending_time: 30
delay_time: 3
disarm_after_trigger: true
xiaomi_aqara:
gateways:
- host: 192.168.2.87
mac: !secret xiaomi_beneden_mac
key: !secret xiaomi_beneden_secret
- host: 192.168.2.31
mac: !secret xiaomi_boven_mac
key: !secret xiaomi_boven_secret
google:
client_id: !secret google_cid
client_secret: !secret google_secret
influxdb:
host: 192.168.2.100
override_measurement: state
default_measurement: state
include: !include configuration/logtoinflux.yaml
# Text to speech
tts:
- platform: google
language: nl
media_player:
- platform: kodi
name: Kodi
host: 192.168.2.100
port: 5555
username: !secret kodi_user
password: !secret kodi_pass
cast:
media_player:
- host: 192.168.2.18
name: Chromecast woonkamer
- host: 192.168.2.37
name: Google Home mini
remote:
- platform: harmony
name: Woonkamer
host: 192.168.2.136
device_tracker: !include configuration/device_trackers.yaml
person:
mqtt:
broker: 192.168.2.100
port: 1883
client_id: home-assistant-1
keepalive: 60
username: !secret mqtt_user
password: !secret mqtt_password
# zoneminder:
# host: 192.168.2.100:8080
# path_zms: /zm/cgi-bin/nph-zms
# ssl: False
# username: !secret zoneminder_user
# password: !secret zoneminder_password
notify:
- name: jan
platform: telegram
chat_id: 573726555
rfxtrx:
device: /dev/ttys1
debug: False
google_assistant: !include configuration/google_assistant.yaml
# opentherm_gw:
# device: socket://192.168.2.112:23
# climate:
# name: OTGW_thermostat
# precision: 0.5
# floor_temperature: True
# monitored_variables:
# - room_setpoint
# - room_temp
# - return_water_temp
# - slave_flame_on
# - slave_ch_active
# - slave_dhw_active
# - relative_mod_level
# - slave_fault_indication
# - outside_temp
downloader:
download_dir: /tmp
telegram_bot:
- platform: polling
api_key: !secret telegram_api_key
parse_mode: html
allowed_chat_ids:
- 573726555
weather:
- platform: darksky
api_key: !secret dark_sky_api_key
rest_command: !include configuration/restcommands.yaml
light: !include configuration/lights.yaml
climate: !include configuration/climate.yaml
sensor: !include_dir_merge_list configuration/sensors
camera: !include configuration/cameras.yaml
switch: !include configuration/switches.yaml
fan: !include configuration/fan.yaml
weblink: !include configuration/weblink.yaml
panel_iframe: !include configuration/panel_iframe.yaml
input_boolean: !include configuration/input_booleans.yaml
input_select: !include configuration/input_selects.yaml
input_number: !include configuration/input_numbers.yaml
variable: !include configuration/variables.yaml
binary_sensor: !include configuration/binary_sensors.yaml
automation: !include_dir_merge_list configuration/automations
group: !include_dir_merge_named configuration/groups
scene: !include_dir_merge_list configuration/scenes
script: !include_dir_merge_named configuration/scripts