Hi
Is it possible to create an automation that changes the Hive thermostat temperature setting when leaving home.
I have sensors and house alarm connected to my home assistant so when we set alarm to away it is certain house is empty so want to turn stat down to a lower level if it set high…
cant seem to be able to get this to work.
Reading Hive stuff on here there seems to be some restrictions is this one.
Any body got any ideas / examples/
Thanks
I have the same question. I cannot find a way to do it.
Assuming you have the Hive Integration installed, set the temp to 18:
- service: climate.set_temperature
target:
entity_id: climate.downstairs_thermotstat
data:
temperature: 18
thanks!
Unfortunately the methods I tried did not work using device
. That’s when I posted above.
However, using entity_id
did work:
### Set temperature to 24 in heat mode
automation:
trigger:
platform: time
at: "07:15:00"
action:
- service: climate.set_temperature
target:
entity_id: climate.kitchen
data:
temperature: 24
hvac_mode: heat
…and I just came back to provide this link for r/dchilton6
…not sure why it works with entity_id
and not with device
though.