forked from geekofweek/homeassistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
162 lines (128 loc) · 3.05 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
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: [REDACTED]
longitude: [REDACTED]
# C for Celcius, F for Fahrenheit
temperature_unit: F
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: America/Chicago
customize: !include customize.yaml
# Enables the frontend
frontend:
# Checks for available updates
updater:
# View all events in a logbook
logbook:
# Track the sun
sun:
# Allows you to issue voice commands from the frontend
conversation:
# Enables support for tracking state changes over time.
history:
# Discover some devices automatically
discovery:
# Show links to resources in log and frontend
# introduction:
#################################################################
## Components
#################################################################
light:
platform: hue
host: [REDACTED]
allow_unreachable: true
scan_interval: 10
media_player:
platform: plex
wink:
access_token: [REDACTED]
# scan_interval: 10
ecobee:
api_key: [REDACTED]
hold_temp: False
ifttt:
key: [REDACTED]
device_tracker:
- platform: icloud
username: [REDACTED]
password: [REDACTED]
track_new_devices: yes
interval_seconds: 12
# Seconds to wait till marking someone as not home after not being seen
consider_home: 300
- platform: asuswrt
host: [REDACTED]
username: [REDACTED]
password: [REDACTED]
- platform: nmap_tracker
hosts: [REDACTED]
home_interval: 10
camera:
platform: foscam
ip: [REDACTED]
name: Garage Camera
port: 88
username: [REDACTED]
password: [REDACTED]
notify:
platform: googlevoice
username: [REDACTED]
password: [REDACTED]
name: text_message
sensor:
platform: speedtest
monitored_conditions:
- ping
- download
- upload
sensor 2:
platform: forecast
api_key: [REDACTED]
monitored_conditions:
- summary
# - icon
- nearest_storm_distance
# - nearest_storm_bearing
- precip_type
- precip_intensity
- precip_probability
- temperature
# - apparent_temperature
# - dew_point
- wind_speed
# - wind_bearing
- cloud_cover
- humidity
# - pressure
# - visibility
# - ozone
#################################################################
## Zones
#################################################################
zone:
name: Work
latitude: [REDACTED]
longitude: [REDACTED]
radius: 250
icon: mdi:hospital-building
zone 2:
name: Work
latitude: [REDACTED]
longitude: [REDACTED]
radius: 250
icon: mdi:hospital-building
zone 3:
name: Work
latitude: [REDACTED]
longitude: [REDACTED]
radius: 250
icon: mdi:hospital-building
#################################################################
## Includes
#################################################################
#zone: !include zones.yaml
group: !include groups.yaml
scene: !include scenes.yaml
automation: !include automation.yaml
input_boolean: !include input_boolean.yaml