· 8 years ago · Jun 05, 2018, 03:00 PM
1homeassistant:
2 # Name of the location where Home Assistant is running
3 name: Home
4 # Location required to calculate the time the sun rises and sets
5 latitude: **********************
6 longitude: **********************
7 # Impacts weather/sunrise data (altitude above sea level in meters)
8 elevation: 175.50
9 # metric for Metric, imperial for Imperial
10 unit_system: metric
11 # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
12 time_zone: America/Chicago
13 # Customization file
14 customize: !include customize.yaml
15
16# Show links to resources in log and frontend
17introduction:
18
19# Enables the frontend
20frontend:
21
22# Enables configuration UI
23config:
24
25http:
26 # Secrets are defined in the file secrets.yaml
27 # api_password: !secret http_password
28 # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
29 # base_url: example.duckdns.org:8123
30
31# Checks for available updates
32# Note: This component will send some information about your system to
33# the developers to assist with development of Home Assistant.
34# For more information, please see:
35# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
36updater:
37 # Optional, allows Home Assistant developers to focus on popular components.
38 # include_used_components: true
39
40# Discover some devices automatically
41discovery:
42
43# Allows you to issue voice commands from the frontend in enabled browsers
44conversation:
45
46# Enables support for tracking state changes over time
47history:
48
49# View all events in a logbook
50logbook:
51
52# Enables a map showing the location of tracked devices
53map:
54
55# Track the sun
56sun:
57
58# Example configuration.yaml entry
59sensor:
60 - platform: time_date
61 display_options:
62 - 'date'
63 - 'time'
64
65device_tracker:
66 - platform: tile
67 username: **********************@gmail.com
68 password: **********************
69
70
71
72# Example configuration.yaml entry
73media_player:
74 - platform: onkyo
75 host: 192.168.1.87
76 name: Basement Hi-fi
77 sources:
78 pc: 'HTPC'
79
80sensor:
81 - platform: fastdotcom
82 minute:
83 - 0
84 - 15
85 - 30
86 - 45
87
88sensor:
89 - platform: systemmonitor
90 resources:
91 - type: disk_use_percent
92 arg: /home
93 - type: memory_free
94 - type: swap_use_percent
95 - type: processor_use
96
97
98weather:
99 - platform: openweathermap
100 api_key: **********************
101 name: Weather
102
103tts:
104 - platform: google
105
106# Cloud
107cloud:
108
109panel_iframe:
110 terminal:
111 title: Terminal
112 icon: mdi:console
113 url: https://addres.to.your.hass.io:7681
114 configurator:
115 title: Configurator
116 icon: mdi:wrench
117 url: http://hassio.local:3218
118
119ifttt:
120 key: **********************
121
122camera:
123 - platform: generic
124 name: ISS
125 still_image_url: https://maps.googleapis.com/maps/api/staticmap?center={{ states.binary_sensor.iss.attributes.lat }},{{ states.binary_sensor.iss.attributes.long }}&zoom=5&size=500x500&maptype=roadmap&markers=color:blue%7Clabel:P%7C{{ states.binary_sensor.iss.attributes.lat }},{{ states.binary_sensor.iss.attributes.long }}
126 limit_refetch_to_url_change: true
127
128group: !include groups.yaml
129automation: !include automations.yaml
130script: !include scripts.yaml