-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfiguration.yaml
executable file
·126 lines (105 loc) · 2.69 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
###############################################################
## House Main Configuration
################################################################
homeassistant:
# Packages directory
packages: !include_dir_named packages
# enable default configurations
default_config:
# Enables Lovelace YAML
lovelace:
mode: yaml
# enable system health
system_health:
# Checks for available updates
updater:
# Optional, allows Home Assistant developers to focus on popular components.
include_used_components: true
# Enable iOS advanced notifications
ios:
# Live streams
stream:
# Allows you to issue voice commands from the frontend in enabled browsers
conversation:
# Track the sun
sun:
# Unifi Protect cameras
unifiprotect:
host: 172.20.0.1
username: !secret unifiprotect_username
password: !secret unifiprotect_password
port: 443
image_width: 640
# motion sensors on Unifi Protect cameras
binary_sensor:
- platform: unifiprotect
# Enable nest
nest:
client_id: !secret nest_client_id
client_secret: !secret nest_client_secret
# Enable influx configuration
influxdb:
host: influx-server.home
port: 8086
database: homeassistant
username: homeassistant
password: !secret influxdb_password
max_retries: 3
default_measurement: state
# Enable MQTT Sharing between Hassio instances.
# From HACS
mqtt_share:
base_topic: hass_share
# Google Text to Speech
tts:
- platform: google_translate
service_name: google_say
# # Log Severities: notset, debug, info, warn, warning, error, fatal, critical
# logger:
# default: warning
# logs:
# custom_components.senseme: debug
# aiosenseme: debug
# aiosenseme.discovery: debug
# recorder configuration
recorder:
# db_url: mysql://hass:hasspassword@192.168.1.200/homeassistant
purge_keep_days: 2
exclude:
domains:
- automation
- weblink
- updater
entities:
- sun.sun
- sensor.date
# # Z-Wave
# zwave:
# usb_path: /dev/ttyACM0
# network_key: "0xD2, 0x7D, 0x39, 0xC0, 0xD0, 0xE4, 0xA5, 0x81, 0xEF, 0x91, 0x76, 0x67, 0x37, 0xB5, 0xF0, 0xE0"
input_boolean:
talk_studio:
talk_studio_all:
automation:
- id: talk_studio_changed
alias: Talk Studio Changed
trigger:
platform: state
entity_id: input_boolean.talk_studio
action:
- service: script.sonos_studio_say
data:
volume: 0.5
delay: "00:00:02"
message: "Talk Studio"
- id: talk_studio_all_changed
alias: Talk Studio All Changed
trigger:
platform: state
entity_id: input_boolean.talk_studio_all
action:
- service: script.sonos_studio_all_say
data:
volume: 0.5
delay: "00:00:02"
message: "Talk All Studio"