-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfiguration.yaml
114 lines (98 loc) · 2.8 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
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
zone: !include zones.yaml
light: !include lights.yaml
proximity:
chriserus_coming_home:
zone: home
devices:
- device_tracker.chriserus_mi9
tolerance: 2
unit_of_measurement: km
wake_on_lan:
mac: D8-BB-C1-4B-A8-00
gigasetelements:
name: gigaset_elements
username: !secret gigaset_elements_username
password: !secret gigaset_elements_password
switches: True
code: !secret alarm_pin
code_arm_required: False
device_tracker:
- platform: xiaomi
host: !secret router_host
password: !secret router_password
recorder:
exclude:
entities:
- sensor.next_launch_countdown
vacuum:
- platform: viomise
host: !secret vacuum_host
token: !secret vacuum_token
name: ViomiSE
camera:
- platform: xiaomi_cloud_map_extractor
host: !secret vacuum_host
token: !secret vacuum_token
username: !secret xiaomi_cloud_username
password: !secret xiaomi_cloud_password
draw: ["all"]
attributes:
- calibration_points
- rooms
switch:
- platform: wake_on_lan
mac: D8:BB:C1:4B:A8:00
name: PC
command_line:
- sensor:
name: CPU Temperature
command: "/bin/cat /sys/class/thermal/thermal_zone0/temp"
unit_of_measurement: "°C"
value_template: "{{ (value | int / 1000) | int }}"
sensor:
- platform: random
name: Random Sensor 1
maximum: 255
- platform: random
name: Random Sensor 2
maximum: 255
- platform: random
name: Random Sensor 3
maximum: 255
- platform: template
sensors:
living_room_air_purifier_aqi:
friendly_name: Living Room Air Purifier Air Quality Index
value_template: "{{ states.fan.living_room_air_purifier.attributes.aqi }}"
icon_template: mdi:weather-windy
living_room_air_purifier_temperature:
friendly_name: Living Room Air Purifier Temperature
value_template: "{{ states.fan.living_room_air_purifier.attributes.temperature }}"
unit_of_measurement: "°C"
living_room_air_purifier_humidity:
friendly_name: Living Room Air Purifier Humidity
value_template: "{{ states.fan.living_room_air_purifier.attributes.humidity }}"
unit_of_measurement: "%"
icon_template: mdi:water-percent
mqtt:
sensor:
- name: "Krzysztof Weight"
state_topic: "scale/Krzysztof/weight"
unit_of_measurement: "kg"
icon: mdi:scale-bathroom
- name: "Marta Weight"
state_topic: "scale/Marta/weight"
unit_of_measurement: "kg"
icon: mdi:scale-bathroom
history:
exclude:
entities:
- sensor.random_sensor_1
- sensor.random_sensor_2
- sensor.random_sensor_3