AC automation for bedroom
This commit is contained in:
parent
ac24a3b7c0
commit
94d7100ebf
@ -48,7 +48,6 @@
|
|||||||
target:
|
target:
|
||||||
entity_id: climate.ac
|
entity_id: climate.ac
|
||||||
|
|
||||||
|
|
||||||
- id: ac-turn-off
|
- id: ac-turn-off
|
||||||
alias: '[AC] Turn off when windows are open'
|
alias: '[AC] Turn off when windows are open'
|
||||||
mode: single
|
mode: single
|
||||||
|
75
configuration/automations/bedroom-ac.yaml
Normal file
75
configuration/automations/bedroom-ac.yaml
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
- id: bedroom-ac-turn-on
|
||||||
|
alias: '[AC][Bedroom] Turn on AC when it is hot in bedroom'
|
||||||
|
mode: single
|
||||||
|
trigger:
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.ble_temperature_bedroom_sensor_ble
|
||||||
|
above: '26'
|
||||||
|
for:
|
||||||
|
minutes: 15
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.bedroom_air_purifier_temperature
|
||||||
|
above: '26'
|
||||||
|
for:
|
||||||
|
minutes: 15
|
||||||
|
condition:
|
||||||
|
- condition: state
|
||||||
|
entity_id: input_select.home_mode
|
||||||
|
state: Night
|
||||||
|
action:
|
||||||
|
- 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
|
||||||
|
- service: climate.set_temperature
|
||||||
|
data:
|
||||||
|
temperature: 24
|
||||||
|
hvac_mode: cool
|
||||||
|
target:
|
||||||
|
entity_id: climate.ac
|
||||||
|
|
||||||
|
- id: bedroom-ac-turn-off
|
||||||
|
alias: '[AC][Bedroom] Turn off AC when it is cold in bedroom'
|
||||||
|
trigger:
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.ble_temperature_bedroom_sensor_ble
|
||||||
|
below: '23'
|
||||||
|
for:
|
||||||
|
minutes: 15
|
||||||
|
- platform: numeric_state
|
||||||
|
entity_id: sensor.bedroom_air_purifier_temperature
|
||||||
|
below: '26'
|
||||||
|
for:
|
||||||
|
minutes: 15
|
||||||
|
condition:
|
||||||
|
- condition: state
|
||||||
|
entity_id: input_select.home_mode
|
||||||
|
state: Night
|
||||||
|
action:
|
||||||
|
- choose:
|
||||||
|
- conditions:
|
||||||
|
- condition: state
|
||||||
|
entity_id: climate.ac
|
||||||
|
attribute: temperature
|
||||||
|
state: '25'
|
||||||
|
sequence:
|
||||||
|
- service: climate.turn_off
|
||||||
|
target:
|
||||||
|
entity_id: climate.ac
|
||||||
|
default:
|
||||||
|
- service: climate.set_temperature
|
||||||
|
target:
|
||||||
|
entity_id: climate.ac
|
||||||
|
data:
|
||||||
|
temperature: "{{ state_attr('climate.ac', 'temperature') + 1 }} "
|
@ -45,6 +45,12 @@ good_night:
|
|||||||
- service: lock.lock
|
- service: lock.lock
|
||||||
target:
|
target:
|
||||||
entity_id: lock.front_door_25f246fe_door_lock
|
entity_id: lock.front_door_25f246fe_door_lock
|
||||||
|
- choose:
|
||||||
|
- conditions:
|
||||||
|
- condition: numeric_state
|
||||||
|
entity_id: sensor.ble_temperature_bedroom_sensor_ble
|
||||||
|
below: '26'
|
||||||
|
sequence:
|
||||||
- service: climate.turn_off
|
- service: climate.turn_off
|
||||||
target:
|
target:
|
||||||
entity_id: climate.ac
|
entity_id: climate.ac
|
||||||
|
Loading…
Reference in New Issue
Block a user