· 6 years ago · Feb 08, 2019, 03:16 AM
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
34weather:
35 - platform: darksky
36 api_key: ++
37 mode: daily
38
39
40# Netatmo
41netatmo:
42 api_key: ++
43 secret_key: ++
44 username: ++
45 password: ++
46
47# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
48# http:
49# base_url: example.duckdns.org:8123
50
51# Checks for available updates
52# Note: This component will send some information about your system to
53# the developers to assist with development of Home Assistant.
54# For more information, please see:
55# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
56updater:
57 # Optional, allows Home Assistant developers to focus on popular components.
58 # include_used_components: true
59
60# Discover some devices automatically
61discovery:
62
63# Allows you to issue voice commands from the frontend in enabled browsers
64conversation:
65
66# Enables support for tracking state changes over time
67history:
68
69# View all events in a logbook
70logbook:
71
72# Enables a map showing the location of tracked devices
73map:
74
75# Track the sun
76sun:
77
78
79
80sensor: !include sensors.yaml
81
82
83
84recorder:
85 purge_keep_days: 3
86 include:
87 domains:
88 - automation
89 - input_boolean
90 - input_number
91 - input_datetime
92 - input_select
93 - binary_sensor
94 - sensor
95 - history_graph
96
97history_graph:
98 gr1:
99 name: Raspberry's Temperature
100 entities:
101 - sensor.cpu_temp
102 hours_to_show: 48
103 refresh: 10
104
105
106
107
108
109
110
111 # Weather prediction
112
113
114# Text to speech
115tts:
116 - platform: google
117
118# Cloud
119cloud:
120
121group: !include groups.yaml
122automation: !include automations.yaml
123script: !include scripts.yaml