-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfiguration.yaml
More file actions
80 lines (69 loc) · 2.04 KB
/
configuration.yaml
File metadata and controls
80 lines (69 loc) · 2.04 KB
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
homeassistant:
name: Home
latitude: !secret latitude
longitude: !secret longitude
elevation: !secret elevation
unit_system: metric
time_zone: America/Toronto
country: "CA"
internal_url: !secret internal_url
# external_url: !secret external_url
# customize: !include customize.yaml
frontend:
themes: !include_dir_merge_named themes
recorder:
auto_purge: true
purge_keep_days: 90
my:
mobile_app:
config:
system_health:
default_config:
history:
logbook:
sun:
http:
login_attempts_threshold: 5
#ip_ban_enabled: True
# logger:
# default: warning
# logs:
# homeassistant.components.switch.command_line: critical
# zwave:
# usb_path: /dev/ttyACM1 # /dev/ttyACM0
smartir:
check_updates: false
climate:
- platform: smartir
name: Heat pump
unique_id: heat_pump
device_code: 1281 # elios-heat-pump-smartir-codes.json
controller_data: remote.rm4
temperature_sensor: sensor.rm4_temperature
humidity_sensor: sensor.rm4_humidity
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 }}"
template:
- sensor:
- name: Propane Tank Level
unit_of_measurement: "%"
device_class: battery
unique_id: rainville_propane_tank
default_entity_id: sensor.rainville_propane_tank
state: "{{ states('sensor.rainville_propane_raw') }}"
attributes:
last_updated: "{{ state_attr('sensor.rainville_propane_raw', 'last_updated') }}"
last_rainville_update: "{{ state_attr('sensor.rainville_propane_raw', 'last_rainville_update') }}"
next_estimated_delivery: "{{ state_attr('sensor.rainville_propane_raw', 'next_estimated_delivery') }}"
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml