Tado Smart Schedule Mode

I’m hoping someone can help me use a script to put my Tado Smart Radiator Valves back into Smart schedule mode.

I did have this working, but the climate component changed a few months ago and I’ve just never managed to figure out how to get them back into Smart schedule mode.

Towards the end of the night a use climate.set_temperature to make changes to the rooms, then when I arrive home I have another script that I would like to use to set them back into Smart schedule mode.

I’ve read the documentation & tried making a few changes but just can’t figure out how to do it.

Any help would be greatly appreciate.

Regards

This is what I have

cinema_rad_override:
  alias: Cinema rad on
  sequence:
    - service: climate.set_temperature
      entity_id: climate.cinema_room
      data:
        hvac_mode: heat
        temperature: 21

This is from an automation but shows you how to script it to reset to auto

  action:
    - service: climate.set_hvac_mode
      entity_id: climate.heating
      data:
        hvac_mode: auto

Hope this helps

2 Likes

Many thanks @EGO01

It worked! I had to rearrange some of the code you posted slightly but its work.
I’ll post it below for anyone else who may want to use it in a script:

- data:
      entity_id: climate.bedroom
      hvac_mode: auto
    service: climate.set_hvac_mode

Please check out my related pull request at https://github.com/home-assistant/home-assistant/pull/29014

This causes the tado component to use “Tado Mode” instead of “Manual”, so it can switch back to “Smart Schedule” when the schedule kicks in.

1 Like