Skip to content

Instantly share code, notes, and snippets.

@eouthwaite
Last active December 9, 2022 09:23
Show Gist options
  • Save eouthwaite/ede4e8e4e7937d28abe3e525bdbcfb16 to your computer and use it in GitHub Desktop.
Save eouthwaite/ede4e8e4e7937d28abe3e525bdbcfb16 to your computer and use it in GitHub Desktop.
Home Assistant + Hive Turn down heating overnight
alias: Overnight
description: Turn down heating overnight
trigger:
- platform: time
at: "22:30:00"
condition:
- condition: numeric_state
entity_id: climate.thermostat_2
attribute: temperature
above: 19
action:
- service: climate.set_temperature
target:
entity_id: climate.thermostat_2
data:
temperature: 19
hvac_mode: heat
mode: single
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment