-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensors.yaml
442 lines (315 loc) · 15.2 KB
/
sensors.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
# Zigbee MQTT
- platform: mqtt
name: Bridge state
state_topic: "zigbee2mqtt/bridge/state"
icon: mdi:router-wireless
########## Spalna
- platform: mqtt
name: Radiator Spalna Pozicia
state_topic: "zigbee2mqtt/0xbc33acfffe37e579"
value_template: '{{ value_json.position }}'
- platform: mqtt
name: Radiator Spalna Heat SetPoint
state_topic: "zigbee2mqtt/0xbc33acfffe37e579"
value_template: '{{ value_json.current_heating_setpoint }}'
########## Obyvacka
- platform: mqtt
name: Radiator Obyvacka Pozicia
state_topic: "zigbee2mqtt/0x60a423fffea0fc8f"
value_template: '{{ value_json.position }}'
- platform: mqtt
name: Radiator Obyvacka Heat SetPoint
state_topic: "zigbee2mqtt/0x60a423fffea0fc8f"
value_template: '{{ value_json.current_heating_setpoint }}'
########## Pracovna
- platform: mqtt
name: Radiator Pracovna Pozicia
state_topic: "zigbee2mqtt/0x60a423fffea3a842"
value_template: '{{ value_json.position }}'
- platform: mqtt
name: Radiator Pracovna Heat SetPoint
state_topic: "zigbee2mqtt/0x60a423fffea3a842"
value_template: '{{ value_json.current_heating_setpoint }}'
#==============================
#=== Installed hass.io version
#==============================
- platform: version
name: Installed Version
#================================
#=== Latest Available HA Version
#================================
- platform: version
name: Latest Available Version
beta: false
image: raspberrypi3
source: docker
#=============================================
#=== Last boot time, Disk, memory & CPU usage
#=============================================
- platform: systemmonitor
resources:
- type: last_boot
- type: disk_use_percent
arg: /
- type: memory_use_percent
- type: processor_use
- type: disk_use
arg: /
- type: disk_free
arg: /
#====================
#=== CPU Temperature
#====================
- platform: command_line
name: CPU Temp
command: "cat /sys/class/thermal/thermal_zone0/temp"
unit_of_measurement: "°C"
value_template: '{{ value | multiply(0.001) | round(0) }}'
#===================
#=== System Up Time
#===================
- platform: uptime
- platform: template
sensors:
#==========================
#=== Home Assistant uptime
#==========================
ha_uptime:
friendly_name: HA Uptime
value_template: >
{% set up_time = as_timestamp(now()) - as_timestamp(states('sensor.uptime')) %}
{% if up_time == 0 %}
Just restarted...
{% else %}
{% set minutes = (up_time // 60) | int %}
{% set hours = (minutes // 60) %}
{% set days = (hours // 24) %}
{% set weeks = (days // 7) %}
{% set minutes = (minutes % 60) %}
{% set hours = (hours % 24) %}
{% set days = (days % 7) %}
{% macro phrase(value, name) %}
{%- set value = value %}
{%- set end = 's' if value > 1 else '' %}
{{- '{} {}{}'.format(value, name, end) if value | int > 0 else '' }}
{%- endmacro %}
{% set text = [ phrase(weeks, 'week'), phrase(days, 'day'), phrase(hours, 'hr'), phrase(minutes, 'min') ] | select('!=','') | list | join(', ') %}
{% set last_comma = text.rfind(',') %}
{% if last_comma != -1 %}
{% set text = text[:last_comma] + ' and' + text[last_comma + 1:] %}
{% endif %}
{{ text }}
{% endif %}
#=========================================
#=== Raspberry Pi last boot date and time
#=========================================
last_boot_date_time:
friendly_name: Last Boot
value_template: >
{% set date = as_timestamp(states('sensor.last_boot')) | timestamp_custom('%d') %}
{% set date = '{:01}'.format(date | int) %}
{% if date in ('1', '21', '31') %}
{% set date = date ~ 'st' %}
{% elif date in ('2', '22') %}
{% set date = date ~ 'nd' %}
{% elif date in ('3', '23') %}
{% set date = date ~ 'rd' %}
{% else %}
{% set date = date ~ 'th' %}
{% endif %}
{{ as_timestamp(states('sensor.last_boot')) | timestamp_custom('%H:%M on %a') }} {{ date }} {{ as_timestamp(states('sensor.last_boot')) | timestamp_custom('%b %Y') }}
#=========================
#=== Raspberry Pi Up Time
#=========================
rpi_uptime:
friendly_name: RPi Uptime
value_template: >
{% set up_time = as_timestamp(now()) - as_timestamp(states('sensor.last_boot')) %}
{% set minutes = (up_time // 60) | int %}
{% set hours = (minutes // 60) %}
{% set days = (hours // 24) %}
{% set weeks = (days // 7) %}
{% set minutes = (minutes % 60) %}
{% set hours = (hours % 24) %}
{% set days = (days % 7) %}
{% macro phrase(value, name) %}
{%- set value = value %}
{%- set end = 's' if value > 1 else '' %}
{{- '{} {}{}'.format(value, name, end) if value | int > 0 else '' }}
{%- endmacro %}
{% set text = [ phrase(weeks, 'week'), phrase(days, 'day'), phrase(hours, 'hr'), phrase(minutes, 'min') ] | select('!=','') | list | join(', ') %}
{% set last_comma = text.rfind(',') %}
{% if last_comma != -1 %}
{% set text = text[:last_comma] + ' and' + text[last_comma + 1:] %}
{% endif %}
{{ text }}
- platform: template
sensors:
#----- Count Automations
count_automations:
value_template: "{{ states.automation | list | length }}"
#----- Count Scripts
count_scripts:
value_template: "{{ states.script| list | length }}"
#----- Count Device Trackers
count_device_trackers:
value_template: "{{ states.device_tracker | list | length }}"
#----- Count Binary Sensors
count_binary_sensors:
value_template: "{{ states.binary_sensor| list | length }}"
#----- Count Sensors
count_sensors:
value_template: "{{ states.sensor | list | length }}"
#----- Count Switches
count_switches:
value_template: "{{ states.switch | list | length }}"
#----- Count Zones
count_zones:
value_template: "{{ states.zone | list | length }}"
#----- Input Booleans
count_input_booleans:
value_template: "{{ states.input_boolean | list | length }}"
#----- Input Numbers
count_input_numbers:
value_template: "{{ states.input_number | list | length }}"
#----- Input Texts
count_input_texts:
value_template: "{{ states.input_text | list | length }}"
#----- Input Selects
count_input_selects:
value_template: "{{ states.input_select | list | length }}"
#----- Input Date Times
count_input_datetimes:
value_template: "{{ states.input_datetime | list | length }}"
#----- Lights
count_lights:
value_template: "{{ states.light | list | length }}"
################################################Spotreba v eur
- platform: template
sensors:
cena_elektriny:
friendly_name: "Cena Elektriny"
value_template: "0.1811631497683994"
unit_of_measurement: '€'
tv_dnesna_spotreba:
friendly_name: "TV Dnesna Spotreba"
value_template: "{{ (( states('sensor.tv_zasuvka_energy_today')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
tv_vcerajsia_spotreba:
friendly_name: "TV Vcerajsia Spotreba"
value_template: "{{ (( states('sensor.tv_zasuvka_energy_yesterday')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
tv_total_spotreba:
friendly_name: "TV Total Spotreba"
value_template: "{{ (( states('sensor.tv_zasuvka_energy_total')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
obyvacka_predlzovacka_dnesna_spotreba:
friendly_name: "Predlzovacka Dnesna Spotreba"
value_template: "{{ (( states('sensor.obyvacka_predlzovackaa_energy_today')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
obyvacka_predlzovacka_vcerajsia_spotreba:
friendly_name: "Predlzovacka Vcerajsia Spotreba"
value_template: "{{ (( states('sensor.obyvacka_predlzovacka_energy_yesterday')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
obyvacka_predlzovacka_total_spotreba:
friendly_name: "Predlzovacka Total Spotreba"
value_template: "{{ (( states('sensor.obyvacka_predlzovacka_energy_total')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
pracovna_dnesna_spotreba:
friendly_name: "Pracovna Dnesna Spotreba"
value_template: "{{ (( states('sensor.pracovna_energy_today')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
pracovna_vcerajsia_spotreba:
friendly_name: "Pracovna Vcerajsia Spotreba"
value_template: "{{ (( states('sensor.pracovna_energy_yesterday')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
pracovna_total_spotreba:
friendly_name: "Pracovna Total Spotreba"
value_template: "{{ (( states('sensor.pracovna_energy_total')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
pracka_dnesna_spotreba:
friendly_name: "Pracka Dnesna Spotreba"
value_template: "{{ (( states('sensor.pracka_zasuvka_energy_today')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
pracka_total_spotreba:
friendly_name: "Pracka Total Spotreba"
value_template: "{{ (( states('sensor.pracka_zasuvka_energy_total')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
susicka_dnesna_spotreba:
friendly_name: "Susicka Dnesna Spotreba"
value_template: "{{ (( states('sensor.susicka_zasuvka_energy_today')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
susicka_total_spotreba:
friendly_name: "Susicka Total Spotreba"
value_template: "{{ (( states('sensor.susicka_zasuvka_energy_total')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
balkon_dnesna_spotreba:
friendly_name: "Balkon Dnesna Spotreba"
value_template: "{{ (( states('sensor.stara_pracovna_energy_today')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
balkon_vcerajsia_spotreba:
friendly_name: "Balkon Vcerajsia Spotreba"
value_template: "{{ (( states('sensor.stara_pracovna_energy_yesterday')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
balkon_total_spotreba:
friendly_name: "Balkon Total Spotreba"
value_template: "{{ (( states('sensor.stara_pracovna_energy_total')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
elektromer_spotreba_start:
friendly_name: "Elektromer stav od zaciatku pocitania"
value_template: "3503"
unit_of_measurement: 'KWH'
elektromer_spotreba_posledne_vyuctovanie:
friendly_name: "Elektromer stav vyuctovania"
value_template: "2114"
unit_of_measurement: 'KWH'
elektromer_spotreba_novy_cyklus:
friendly_name: "Elektromer novy cyklus"
value_template: "{{ ( states('sensor.elektromer_spotreba_start')|float(0) ) - ( states('sensor.elektromer_spotreba_posledne_vyuctovanie')|float(0) ) }}"
unit_of_measurement: 'KWH'
elektromer_spotreba_total:
friendly_name: "Elektromer total"
value_template: "{{ ( states('sensor.0x0015bc001b02205d_energy')|float(0) ) + ( states('sensor.elektromer_spotreba_start')|float(0) ) }}"
unit_of_measurement: 'KWH'
elektromer_spotreba_kwh:
friendly_name: "Elektromer spotreba v KWH v novom cykle"
value_template: "{{ ( states('sensor.0x0015bc001b02205d_energy')|float(0) ) + ( states('sensor.elektromer_spotreba_novy_cyklus')|float(0) ) | round(2) }}"
unit_of_measurement: 'KWH'
elektromer_spotreba_cena:
friendly_name: "Elektromer spotreba v cene"
value_template: "{{ (( states('sensor.elektromer_spotreba_kwh')|float(0) ) * (states('sensor.cena_elektriny')|float(0)) ) | round(2) }}"
unit_of_measurement: '€'
elektromer_spotreba_cena_mesacne:
friendly_name: "Elektromer cena mesacne"
value_template: "{{ (( states('sensor.elektromer_spotreba_cena')|float(0) ) /12 ) | round(2) }}"
unit_of_measurement: '€'
################################################ Xiaomi Kettle
xiaomi_kettle_state:
friendly_name: "Kettle stav"
value_template: >-
{% if is_state_attr('binary_sensor.ble_switch_ac9a22f296d0', 'status', 'kettle is idle') %}
Kanvica je vypnuta
{% elif is_state_attr('binary_sensor.ble_switch_ac9a22f296d0', 'status', 'kettle is heating') %}
Kanvica zohrieva vodu
{% elif is_state_attr('binary_sensor.ble_switch_ac9a22f296d0', 'status', 'warming function active with boiling') %}
Voda zovrela - udrziavam
{% else %}
Failed
{% endif %}
################################################ Pozicia zaluzii
pozicia_zaluzie:
friendly_name: "Pozicia zaluzie"
value_template: "{{ ((state_attr('cover.0x5c0272fffedfd8a2', 'position'))) }}"
################################################ Vysavac
vysavac_state:
friendly_name: "Vysavac Dnesny stav vysavania"
value_template: >-
{% if now().strftime('%Y-%m-%d') == states('sensor.xiaomi_vacuum_cleaner_last_clean_start') | as_datetime | as_timestamp | timestamp_custom('%Y-%m-%d') %}
Vysavac dnes vysaval
{% else %}
Vysavac dnes nevysaval
{% endif %}
vysavac_dlzka_vysavania:
friendly_name: "Dlzka vysavania"
value_template: "{{ (( states('sensor.xiaomi_vacuum_cleaner_last_clean_duration')|float(0) ) / 60 ) | round(2) }}"
unit_of_measurement: 'min'