Advertisement
jurajjamriska

plyn prietok

Feb 10th, 2025
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.67 KB | Source Code | 0 0
  1. sensor:
  2.   - platform: history_stats
  3.     name: "Plynomer impulzy za poslednú minútu"
  4.     entity_id: binary_sensor.plynomer_odpocet_contact
  5.     state: "off"
  6.     type: count
  7.     start: "{{ now() - timedelta(minutes=1) }}"
  8.     end: "{{ now() }}"
  9.  
  10. template:
  11.   - sensor:
  12.       - name: "Plyn sa odoberá"
  13.         state: >
  14.          {% if states('sensor.plynomer_impulzy_za_poslednu_minutu') | int > 0 %}
  15.             Áno
  16.           {% else %}
  17.             Nie
  18.           {% endif %}
  19.         icon: >
  20.          {% if states('sensor.plynomer_impulzy_za_poslednu_minutu') | int > 0 %}
  21.             mdi:fire
  22.           {% else %}
  23.             mdi:fire-off
  24.           {% endif %}
  25.  
Tags: #plyn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement