-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.yaml
68 lines (59 loc) · 1.6 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
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: !secret latitude
longitude: !secret longitude
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 0
# metric for Metric, imperial for Imperial
unit_system: imperial
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: America/New_York
# Customization file
customize: !include customize.yaml
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
# Show the introduction message on startup.
introduction:
# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# http:
# base_url: example.duckdns.org:8123
# Discover some devices automatically
discovery:
# Sensors
sensor:
# Weather prediction
- platform: darksky
api_key: !secret darksky_api
forecast:
- 0
hourly_forecast:
- 0
- 1
monitored_conditions:
- summary
- icon
- temperature
- precip_intensity
- precip_probability
- wind_bearing
- wind_speed
- humidity
# Text to speech
tts:
- platform: google
nest:
client_id: !secret nest_client_id
client_secret: !secret nest_client_secret
device_tracker:
- platform: unifi
host: !secret unifi_host
username: !secret unifi_user
password: !secret unifi_password
new_device_defaults:
track_new_devices: false
hide_if_away: true
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml