forked from CiquattroFPV/Homeassistant-Example-Config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.yaml
109 lines (96 loc) · 3.26 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
###################################################
# #
# Home Assistant Main Configuration File #
# #
###################################################
homeassistant:
name: !secret name
temperature_unit: C
time_zone: !secret timezone
latitude: !secret latitude
longitude: !secret longitude
unit_system: metric
elevation: 47
customize: !include_dir_merge_named customizations
###################################################
# #
# IFTTT #
# #
###################################################
ifttt:
key: !secret ifttt_key
####################################################
# #
# Enables #
# #
####################################################
config:
logger:
default: warn
logs:
homeassistant.components.device_tracker: critical
homeassistant.components.camera: info
homeassistant.components.automation: debug
homeassistant.components.light: info
homeassistant.components.sensor: info
homeassistant.components.scene: info
homeassistant.components.switch: info
history:
recorder:
purge_days: 30
db_url: !secret dburl
discovery:
sun:
conversation:
logbook:
frontend:
updater:
#keyboard:
light: !include light.yaml
device_tracker: !include device_tracker.yaml
sensor: !include sensor.yaml
media_player: !include media_player.yaml
switch: !include switch.yaml
notify: !include notify.yaml
group: !include group.yaml
http: !include http.yaml
zone: !include zones.yaml
mqtt: !include mqtt.yaml
shell_command: !include shell_commands.yaml
script: !include scripts.yaml
weblink: !include weblink.yaml
camera: !include camera.yaml
binary_sensor: !include binary_sensor.yaml
telegram_bot:
platform: polling
api_key: !secret telegram_apikey
allowed_chat_ids:
- !secret telegram_clientid
# Dir List
automation: !include_dir_merge_list automation
#automation: !include automations.yaml
scene: !include_dir_merge_list scene
####################################################
# #
# Input Slider and Boolean #
# #
####################################################
#input_boolean: !include_dir_merge_named input_boolean
input_select: !include_dir_merge_named input_select
input_slider: !include_dir_merge_named input_slider
####################################################
# #
# TTS #
# #
####################################################
tts:
- platform: google
#cache: true
#cache_dir: /tts
#time_memory: 300
#language: 'en'
####################################################
# #
# Panel Iframe #
# #
####################################################