Advertisement
maxalbani

Untitled

Nov 19th, 2019
673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. - alias: Switch Shelly By Netatmo
  2. trigger:
  3. - platform: template
  4. value_template: '{{ states.climate.netatmo_smart_thermostat.attributes.temperature != states.climate.netatmo_smart_thermostat.attributes.current_temperature }}'
  5. action:
  6. service_template: >
  7. {% if states.climate.netatmo_smart_thermostat.attributes.temperature > states.climate.netatmo_smart_thermostat.attributes.current_temperature %} switch.turn_on
  8. {% elif states.climate.netatmo_smart_thermostat.attributes.temperature < states.climate.netatmo_smart_thermostat.attributes.current_temperature %} switch.turn_off
  9. {% endif %}
  10. entity_id: switch.shelly
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement