Simple - Set Thermostat at specific time

Simple to use Blueprint that sets your Thermostat to a specific temperature at the same time every day

blueprint:
  name: Set thermostat temperature at specific time
  description: Sets a Thermostat to a specifc temperature at a certain time everyday
  domain: automation
  input:
    time_to_set:
      name: Time
      selector:
        time:
    climate_entity:
      name: Thermostat
      selector:
        target:
          entity:
            domain: climate
    temp_to_set:
      name: Temperature
      default: 72
      selector:
        number:
          min: 0
          max: 100
          unit_of_measurement: degrees
          mode: box
      

trigger:
  - platform: time
    at: !input time_to_set

mode: single

action:
  service: climate.set_temperature
  target: !input climate_entity
  data:
    temperature: !input temp_to_set
1 Like

Cool! Thanks. Weekday input could also be nice :slight_smile:

1 Like