· 7 years ago · Aug 23, 2018, 10:30 AM
1homeassistant:
2 # Name of the location where Home Assistant is running
3 name: Raabo
4 # Location required to calculate the time the sun rises and sets
5 latitude: 18.246938
6 longitude: 56.299255
7 # Impacts weather/sunrise data (altitude above sea level in meters)
8 elevation: 5
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: Europe/Copenhagen
13 # Customization file
14 customize: !include customize.yaml
15
16
17# Enables the frontend
18frontend:
19
20# Enables configuration UI
21config:
22
23http:
24 # Secrets are defined in the file secrets.yaml
25 # api_password: !secret http_password
26 # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
27 # base_url: example.duckdns.org:8123
28
29# Checks for available updates
30# Note: This component will send some information about your system to
31# the developers to assist with development of Home Assistant.
32# For more information, please see:
33# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
34updater:
35 # Optional, allows Home Assistant developers to focus on popular components.
36 # include_used_components: true
37
38# Discover some devices automatically
39discovery:
40
41# Allows you to issue voice commands from the frontend in enabled browsers
42conversation:
43
44# Enables support for tracking state changes over time
45history:
46
47# View all events in a logbook
48logbook:
49
50# Enables a map showing the location of tracked devices
51map:
52
53# Track the sun
54sun:
55
56# Weather prediction
57sensor:
58 - platform: yr
59
60
61 sensor:
62 - platform: hue
63 ip_address: 192.168.1.122
64 token: XXXX
65
66# Text to speech
67tts:
68 - platform: google
69
70# Cloud
71cloud:
72
73zwave:
74 config_path: /srv/homeassistant/lib/python3.6/site-packages/python_openzwave/ozw_config
75 usb_path: /dev/ttyACM0
76
77group: !include groups.yaml
78automation: !include automations.yaml
79script: !include scripts.yaml