-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfiguration.yaml
109 lines (86 loc) · 2.49 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
homeassistant:
# Name of the location where Home Assistant is running
name: !secret hass_property_name
# Location required to calculate the time the sun rises and sets
latitude: !secret hass_latitude
longitude: !secret hass_longitude
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 0
# metric for Metric, imperial for Imperial
unit_system: metric
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: !secret hass_timezone
# Customization file
customize: !include customize.yaml
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
logger:
hacs:
token: !secret my_github_access_token
breaking_changes:
ifttt:
key: !secret hass_ifttt_api
recorder:
db_url: !secret hass_mariadb_url
# Discover some devices automatically
discovery:
ignore:
- yeelight
stream:
camera:
- platform: generic
name: Dining_Room
still_image_url: http://192.168.1.28/tmpfs/auto.jpg
stream_source: rtsp://192.168.1.28:554/11
verify_ssl: false
username: !secret hass_dining_camera_user
password: !secret hass_dining_camera_pass
authentication: basic
- platform: generic
name: Hallway
still_image_url: http://user:[email protected]:8081/
stream_source: http://user:[email protected]:8081/
verify_ssl: false
- platform: generic
name: aneliya
still_image_url: http://192.168.1.28/tmpfs/auto.jpg
stream_source: rtsp://192.168.1.28:554/11
verify_ssl: false
username: !secret hass_dining_camera_user
password: !secret hass_dining_camera_pass
authentication: basic
wake_on_lan:
yeelight:
devices:
192.168.1.96:
name: Bedroom
zwave:
usb_path: /dev/ttyACM0
media_player:
- platform: spotify
client_id: !secret hass_spotify_client_id
client_secret: !secret hass_spotify_client_secret
spotcast:
username: !secret hass_spotify_username
password: !secret hass_spotify_password
xiaomi_aqara:
discovery_retry: 10
gateways:
- key: !secret hass_xiaomi_key
mac: !secret hass_xiaomi_mac
host: 192.168.1.53
evohome:
username: !secret evohome_user
password: !secret evohome_pass
# Text to speech
tts:
- platform: google_translate
# Config
switch: !include config/switches.yaml
sensor: !include config/sensors.yaml
binary_sensor: !include config/binary_sensors.yaml
# Automations
automation: !include_dir_merge_list automations/
script: !include scripts.yaml
# UI
group: !include groups.yaml