Skip to content

Instantly share code, notes, and snippets.

@ronal2do
Created December 23, 2020 13:53
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 ronal2do/3c66e4d3be2bdc6a6f9fce0fbc4c1fba to your computer and use it in GitHub Desktop.
Save ronal2do/3c66e4d3be2bdc6a6f9fce0fbc4c1fba to your computer and use it in GitHub Desktop.
Sets a Thermostat to a specifc temperature at a certain time everyday
# https://community.home-assistant.io/t/simple-set-thermostat-at-specific-time/255778
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