Created
January 6, 2021 08:44
-
-
Save logikal/0861a6decd58072fcdb465b7eeea7c08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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