forked from Gummientchen/Home-AssistantConfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
166 lines (138 loc) · 3.88 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
homeassistant:
# Name of the location where Home Assistant is running
name: !secret hass_name
# Location required to calculate the time the sun rises and sets
latitude: !secret hass_latitude
longitude: !secret hass_longitude
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: !secret hass_elevation
# 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 hass_timezone
# Customization file
customize: !include customize.yaml
packages: !include_dir_named packages
# Logger
logger:
default: error
# Enables the frontend
frontend: !include frontend.yaml
# Enables configuration UI
config:
http:
# Uncomment this to add a password (recommended!)
api_password: !secret http_password
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# base_url: example.duckdns.org:8123
ssl_certificate: !secret ssl_certificate
ssl_key: !secret ssl_key
base_url: !secret base_url
trusted_networks:
- !secret trusted_ip
- !secret trusted_ip_2
ip_ban_enabled: True
login_attempts_threshold: 10
# Checks for available updates
updater:
# Discover some devices automatically
discovery:
# Enables support for tracking state changes over time
history:
# View all events in a logbook
logbook:
# InfluxDB
influxdb:
host: 127.0.0.1
exclude:
domains:
- camera
# Recorder
recorder: !include recorder.yaml
# Track the sun
sun:
# Map
map:
# Google Home
google_assistant: !include google_assistant.yaml
# MQTT Broker
mqtt:
broker: !secret msmqtt_broker
client_id: !secret msmqtt_clientid
username: !secret msmqtt_username
password: !secret msmqtt_password
port: !secret msmqtt_port
# Text to speech
tts:
- platform: google
# Netatmo Config
netatmo:
api_key: !secret netatmo_api_key
secret_key: !secret netatmo_secret_key
username: !secret netatmo_username
password: !secret netatmo_password
discovery: False
# Roomba
vacuum:
- platform: roomba
host: !secret roomba_host
username: !secret roomba_username
password: !secret roomba_password
# Homematic
homematic:
interfaces:
ip:
host: !secret homematic_host
port: !secret homematic_port
username: !secret homematic_username
password: !secret homematic_password
resolvenames: json
hosts:
ccu2:
host: !secret homematic_host
username: !secret homematic_username
password: !secret homematic_password
# IKEA Tradfri
tradfri:
host: !secret tradfri_host
# Philips Hue
hue:
bridges:
- host: 192.168.1.64
# History Graph Test
history_graph:
synology_nas:
name: "Synology NAS"
hours_to_show: 48
refresh: 1800
entities:
- sensor.volume_used_volume_1
- sensor.status_volume_1
- sensor.average_disk_temp_volume_1
- sensor.maximum_disk_temp_volume_1
- sensor.cpu_load_total
- sensor.memory_usage_real
###########INCLUDES#####
sensor: !include_dir_list sensors/
switch: !include_dir_list switches/
camera: !include_dir_list cameras/
cover: !include_dir_list covers/
fan: !include_dir_list fans/
binary_sensor: !include_dir_list binary_sensors/
climate: !include_dir_list climate/
device_tracker: !include_dir_list device_tracker/
zone: !include_dir_list zones/
media_player: !include_dir_list media_players/
notify: !include_dir_list notify/
weather: !include_dir_list weather/
light: !include_dir_merge_list light/
automation: !include_dir_merge_list automation/
scene: !include_dir_merge_list scenes/
input_number: !include_dir_merge_named input_number/
input_boolean: !include_dir_merge_named input_boolean/
timer: !include_dir_merge_named timers/
group: !include_dir_merge_named groups/
script: !include_dir_merge_named scripts/
alert: !include_dir_merge_named alerts/
panel_custom: !include panel_custom.yaml
weblink: !include misc/weblinks.yaml