LinkTap hovedhane: omdøb entities, dashboard-kort og automatik (åbn før zoner, luk efter, periodisk kapillærvanding)

This commit is contained in:
2026-06-18 22:16:32 +02:00
parent bdf294cc32
commit fb19d1d641
14 changed files with 201 additions and 63 deletions
+1 -21
View File
@@ -1,21 +1 @@
- platform: template
sensors:
dishwasher_remaining_minutes:
friendly_name: "Opvask tid tilbage"
unit_of_measurement: "min"
value_template: >
{% set val = states('sensor.dishwasher_remaining_time_2') %}
{% if val in ['unknown','unavailable',''] %}
0
{% elif ':' in val %}
{% set parts = val.split(':') %}
{{ (parts[0] | int * 60) + (parts[1] | int) }}
{% elif 'min' in val %}
{{ val.replace('min','') | int }}
{% else %}
{{ val | int(0) }}
{% endif %}
## Migreret til include/templates/dishwasher.yaml (2026.6 - platform: template fjernet)