-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfiguration.yaml
126 lines (103 loc) · 2.66 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
homeassistant:
name: Home
latitude: !secret latitude
longitude: !secret longitude
elevation: !secret elevation
unit_system: metric
time_zone: America/Toronto
country: "CA"
# external_url: !secret external_url
internal_url: !secret internal_url
customize: !include customize.yaml
# Fix for Zooz RGBW mqtt light styling
customize_domain:
light:
assumed_state: false
frontend:
themes: !include_dir_merge_named themes
my:
http:
# # For https
# ssl_certificate: /ssl/fullchain.pem
# ssl_key: /ssl/privkey.pem
#ip_ban_enabled: True
login_attempts_threshold: 5
# logger:
# default: warning
# logs:
# homeassistant.components.switch.command_line: critical
recorder:
auto_purge: true
purge_keep_days: 90
mobile_app:
config:
system_health:
rest_command:
assistant_relay:
url: http://127.0.0.1:3000/assistant
method: POST
content_type: "application/json"
payload: '{"command":"{{ command }}"}'
device_tracker:
- platform: ping
interval_seconds: 60
consider_home: 300
hosts:
eric_ping: 192.168.0.100
caro_ping: 192.168.0.101
# zwave:
# usb_path: /dev/ttyACM1 # /dev/ttyACM0
default_config:
history:
logbook:
sun:
smartir:
check_updates: false
climate:
- platform: smartir
name: Heat pump
unique_id: heat_pump
device_code: 22201 # elios-heat-pump-smartir-codes.json
controller_data: remote.rm4
temperature_sensor: sensor.rm4_temperature
humidity_sensor: sensor.rm4_humidity
template:
- sensor:
- name: "Rounded humidity"
unit_of_measurement: "%"
state: >
{{ state_attr('climate.heat_pump', 'current_humidity') | round }}
sensor:
- platform: time_date
display_options:
- "time"
- "date"
command_line:
- sensor:
name: CPU temperature
command: "cat /sys/class/thermal/thermal_zone0/temp"
unit_of_measurement: "°C"
value_template: "{{ value | multiply(0.001) | round(1) }}"
- sensor:
name: Database filesize
command: "du -m /config/home-assistant_v2.db | cut -f1"
unit_of_measurement: "MB"
value_template: "{{ value | int - 1 }}"
switch:
- platform: flux
mode: mired
disable_brightness_adjust: True
stop_colortemp: 2700 # https://www.tanguayphotomag.biz/colour-temperature/mireds.html
name: Desktop flux
lights:
- light.desktop
- platform: flux
mode: mired
disable_brightness_adjust: True
stop_colortemp: 2700 # https://www.tanguayphotomag.biz/colour-temperature/mireds.html
name: Dining table flux
lights:
- light.dining_table
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml