-
Notifications
You must be signed in to change notification settings - Fork 55
/
configuration.yaml
197 lines (167 loc) · 6.36 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
####################################################
# #
# HOME ASSISTANT #
# #
####################################################
#https://home-assistant.io/docs/configuration/basic/
homeassistant:
name: Home
latitude: !secret latitude
longitude: !secret longitude
elevation: 244
unit_system: imperial
time_zone: !secret time_zone
customize: !include_dir_merge_named customize/
####################################################
# #
# GENERAL #
# #
####################################################
#https://home-assistant.io/components/history/
history:
#https://home-assistant.io/components/sun/
sun:
#https://home-assistant.io/components/config/
config:
#https://home-assistant.io/components/http/
http:
api_password: !secret api_password
ssl_certificate: !secret ssl_certificate
ssl_key: !secret ssl_key
base_url: !secret base_url
ip_ban_enabled: true
login_attempts_threshold: 2
#https://home-assistant.io/components/frontend/
frontend:
javascript_version: latest
#https://home-assistant.io/components/recorder/
recorder:
purge_interval: 1
purge_keep_days: 3
#https://home-assistant.io/components/logger/
logger:
default: error
logs:
homeassistant.components.sensor.template: critical
homeassistant.components.cover: critical
####################################################
# #
# LINKS TO INDIVUAL CONFIGURATION FILES #
# #
####################################################
#https://home-assistant.io/docs/configuration/splitting_configuration/
group: !include groups.yaml
device_tracker: !include device_tracker.yaml
notify: !include notification.yaml
switch: !include switches.yaml
sensor: !include sensors.yaml
automation: !include_dir_merge_list automation/
script: !include scripts.yaml
shell_command: !include shell_commands.yaml
binary_sensor: !include binary_sensor.yaml
light: !include lights.yaml
camera: !include camera.yaml
zone: !include zones.yaml
input_select: !include input_select.yaml
cover: !include cover.yaml
ios: !include ios.yaml
input_boolean: !include input_boolean.yaml
####################################################
# #
# DUCKDNS #
# #
####################################################
#https://home-assistant.io/components/duckdns/
duckdns:
domain: !secret domain
access_token: !secret access_token
####################################################
# #
# OPEN WEATHER MAP #
# #
####################################################
#https://home-assistant.io/components/weather.openweathermap/
weather:
platform: openweathermap
api_key: !secret api_key
name: Bartlett
####################################################
# #
# NEST #
# #
####################################################
#https://home-assistant.io/components/nest/
nest:
client_id: !secret client_id
client_secret: secret client_secret
####################################################
# #
# EMULATED HUE #
# #
####################################################
#https://home-assistant.io/components/emulated_hue/
emulated_hue:
host_ip: 192.168.1.24
exposed_domains:
- light
- switch
####################################################
# #
# TRADFRI HUB #
# #
####################################################
#https://home-assistant.io/components/tradfri/
tradfri:
host: 192.168.1.20
allow_tradfri_groups: false
####################################################
# #
# WEBLINKS #
# #
####################################################
#https://home-assistant.io/components/weblink/
weblink:
entities:
- name: Home Assistant Webpage
url: https://home-assistant.io/
- name: Home Assistant Forum
url: https://community.home-assistant.io/
- name: Home Assistant Chat
url: https://discordapp.com/channels/330944238910963714/330944238910963714
####################################################
# #
# ZWAVE #
# #
####################################################
#https://home-assistant.io/docs/z-wave/
zwave:
usb_path: /dev/ttyACM0
autoheal: false
new_entity_ids: true
polling_interval: 30000
####################################################
# #
# MQTT #
# #
####################################################
#https://home-assistant.io/docs/mqtt/broker/#run-your-own
mqtt:
broker: 192.168.1.35
port: 1883
client_id: home-assistant-1
username: !secret mqttusername
password: !secret mqttpassword
####################################################
# #
# INPUT TEXT #
# #
####################################################
#https://home-assistant.io/components/input_text/
input_text:
amybriefinput:
name: Amy Brief Input
####################################################
# #
# END OF CONFIGURATION FILE #
# #
####################################################