Hello everyone…
We have a stupid heatwave right now and my house is getting cooked…
So i made an automation, that turns the ac on when a certain temp is reached…
Unfortunately, the Mini split dont turn off when temp is reached…they just idle along with the fan…
So i was wondering how i could have my thermometer watch the temp, and when it gets to warm, turn the ac on and when the temp falls below a certain temp, to shut it back off and repeat in case the temp rises again to the to hot limit.
Here my code with the just turn on when reached hot limit…
alias: AC_Keep_Bedroom_fresh
description: Turn on when room over 27C
triggers:
- type: temperature
device_id: 569bdd265a4b0227c03b6f6b8a166f74
entity_id: sensor.ble_temperature_schlafzimmer_a4c13888d685
domain: sensor
for:
hours: 0
minutes: 0
seconds: 30
above: 26
trigger: device
conditions:
- condition: time
after: "08:00:00"
before: "21:00:00"
weekday:
- sun
- sat
- fri
- thu
- wed
- tue
- mon
- condition: and
conditions:
- condition: state
entity_id: binary_sensor.window_sensor_bedroom_door_left_open
state: "off"
attribute: device_class
for:
hours: 0
minutes: 2
seconds: 0
actions:
- data:
hvac_mode: cool
temperature: 23
target:
device_id:
- fee953f90f472fc2436487244b3ad1e2
action: climate.set_temperature
- data: {}
target:
device_id:
- fee953f90f472fc2436487244b3ad1e2
action: climate.turn_on
- data:
message: Bedroom AC had to be turned on due to excessive heat
title: Keep Bedroom fresh
action: notify.notificationgroup
mode: queued
max: 10
This is using the HASS thermostat that is coming with the midea clones…
I would be also happy to use a different thermostat when it does something like that…
Happy for any input and thx in advance already