Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. - platform: template
  2. sensors:
  3. tado_living_room_status:
  4. value_template: >-
  5. {%- if states.climate.living_room.attributes.hvac_action == 'heating' -%}
  6. Heating
  7. {%- else-%}
  8. {%- if states.climate.living_room.attributes.hvac_action == 'idle' -%}
  9. Auto
  10. {%- else -%}
  11. {%- if states.climate.living_room.attributes.hvac_action == 'off' -%}
  12. Off
  13. {%- else -%}
  14. Error
  15. {%- endif -%}
  16. {%- endif -%}
  17. {%- endif -%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement