· 6 years ago · Feb 08, 2019, 09:06 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: 0
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/Rome
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 themes: !include_dir_merge_named themes/
22
23# Enables configuration UI
24config:
25
26# light
27tuya:
28 username: ++
29 password: ++
30 country_code: +39
31 platform: tuya
32
33
34
35
36
37weather:
38 - platform: darksky
39 api_key: +
40 mode: daily
41
42
43# Netatmo
44netatmo:
45 api_key: +
46 secret_key: +
47 username: +
48 password: +
49
50# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
51# http:
52# base_url: example.duckdns.org:8123
53
54# Checks for available updates
55# Note: This component will send some information about your system to
56# the developers to assist with development of Home Assistant.
57# For more information, please see:
58# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
59updater:
60 # Optional, allows Home Assistant developers to focus on popular components.
61 # include_used_components: true
62
63# Discover some devices automatically
64discovery:
65
66# Allows you to issue voice commands from the frontend in enabled browsers
67conversation:
68
69# Enables support for tracking state changes over time
70history:
71
72# View all events in a logbook
73logbook:
74
75# Enables a map showing the location of tracked devices
76map:
77
78# Track the sun
79sun:
80
81
82
83# Sensors
84sensor: !include sensors.yaml
85
86 # Weather prediction
87 - platform: yr
88
89# Text to speech
90tts:
91 - platform: google
92
93# Cloud
94cloud:
95
96group: !include groups.yaml
97automation: !include automations.yaml
98script: !include scripts.yaml