Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- sensor:
- - platform: history_stats
- name: "Plynomer impulzy za poslednú minútu"
- entity_id: binary_sensor.plynomer_odpocet_contact
- state: "off"
- type: count
- start: "{{ now() - timedelta(minutes=1) }}"
- end: "{{ now() }}"
- template:
- - sensor:
- - name: "Plyn sa odoberá"
- state: >
- {% if states('sensor.plynomer_impulzy_za_poslednu_minutu') | int > 0 %}
- Áno
- {% else %}
- Nie
- {% endif %}
- icon: >
- {% if states('sensor.plynomer_impulzy_za_poslednu_minutu') | int > 0 %}
- mdi:fire
- {% else %}
- mdi:fire-off
- {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement