Skip to content

Instantly share code, notes, and snippets.

@logikal
Created January 6, 2021 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save logikal/0861a6decd58072fcdb465b7eeea7c08 to your computer and use it in GitHub Desktop.
Save logikal/0861a6decd58072fcdb465b7eeea7c08 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment