Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. - platform: template
  2. sensors:
  3. porta_ingresso:
  4. friendly_name: "Porta Ingresso"
  5. value_template: >-
  6. {% if is_state('binary_sensor.porta_ingresso', 'off') %}
  7. Chiusa
  8. {% elif is_state('binary_sensor.porta_ingresso', 'on') %}
  9. Aperta
  10. {% else %}
  11. failed
  12. {% endif %}
  13. icon_template: >-
  14. {% if is_state('binary_sensor.porta_ingresso', 'off') %}
  15. mdi:door-closed
  16. {% elif is_state('binary_sensor.porta_ingresso', 'on') %}
  17. mdi:door-open
  18. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement