1
0

Add autolowering of temperature on ac

This commit is contained in:
Przemek Grondek 2022-08-05 00:30:08 +02:00
parent 6d7157cdac
commit d33ef15efc

View File

@ -5,7 +5,7 @@
trigger:
- platform: numeric_state
entity_id: sensor.ble_temperature_computer_cave_sensor
above: '27'
above: '26'
for:
minutes: 1
condition:
@ -25,15 +25,29 @@
entity_id: binary_sensor.office_window_open_close
state: 'off'
action:
- service: climate.turn_on
target:
entity_id: climate.ac
- service: climate.set_temperature
data:
temperature: 25
hvac_mode: cool
target:
entity_id: climate.ac
- choose:
- conditions:
- condition: state
entity_id: climate.ac
state: cool
sequence:
- service: climate.set_temperature
target:
entity_id: climate.ac
data:
temperature: "{{ state_attr('climate.ac', 'temperature') -1 }} "
default:
- service: climate.turn_on
target:
entity_id: climate.ac
data: {}
- service: climate.set_temperature
data:
temperature: 25
hvac_mode: cool
target:
entity_id: climate.ac
- id: ac-turn-off
alias: '[AC] Turn off when windows are open'