2023-06-12 21:56:22 +00:00
|
|
|
- id: ac_turn_on
|
2021-06-15 07:32:51 +00:00
|
|
|
alias: '[AC] Computer cave too hot'
|
|
|
|
description: ''
|
|
|
|
mode: single
|
|
|
|
trigger:
|
|
|
|
- platform: numeric_state
|
2023-07-09 20:26:06 +00:00
|
|
|
entity_id: sensor.office_sensor_temperature
|
2022-08-04 22:30:08 +00:00
|
|
|
above: '26'
|
2021-06-24 18:37:07 +00:00
|
|
|
for:
|
|
|
|
minutes: 1
|
2021-06-15 07:32:51 +00:00
|
|
|
condition:
|
|
|
|
- condition: state
|
2021-06-24 18:37:07 +00:00
|
|
|
entity_id: input_select.home_mode
|
|
|
|
state: Day
|
2022-06-05 23:27:38 +00:00
|
|
|
- condition: state
|
|
|
|
entity_id: input_boolean.vacation_mode
|
|
|
|
state: 'off'
|
2021-07-05 08:56:14 +00:00
|
|
|
- condition: state
|
2021-10-11 18:15:50 +00:00
|
|
|
entity_id: binary_sensor.dining_window_1_open_close
|
2021-07-05 08:56:14 +00:00
|
|
|
state: 'off'
|
|
|
|
- condition: state
|
2021-10-11 18:15:50 +00:00
|
|
|
entity_id: binary_sensor.dining_window_2_open_close
|
2021-07-05 08:56:14 +00:00
|
|
|
state: 'off'
|
|
|
|
- condition: state
|
2021-10-11 18:15:50 +00:00
|
|
|
entity_id: binary_sensor.office_window_open_close
|
2021-07-05 08:56:14 +00:00
|
|
|
state: 'off'
|
2021-06-15 07:32:51 +00:00
|
|
|
action:
|
2022-08-29 22:45:41 +00:00
|
|
|
- service: script.ac_on
|
|
|
|
- choose:
|
|
|
|
- conditions:
|
|
|
|
- condition: state
|
2022-08-04 22:30:08 +00:00
|
|
|
entity_id: climate.ac
|
2022-08-29 22:45:41 +00:00
|
|
|
state: cool
|
|
|
|
sequence:
|
|
|
|
- service: climate.set_temperature
|
|
|
|
target:
|
|
|
|
entity_id: climate.ac
|
2023-08-27 19:02:16 +00:00
|
|
|
data_template:
|
2022-08-29 22:45:41 +00:00
|
|
|
temperature: "{{ state_attr('climate.ac', 'temperature') -1 }} "
|
2022-08-04 22:30:08 +00:00
|
|
|
|
2023-08-27 19:02:16 +00:00
|
|
|
- id: ac_enable
|
|
|
|
alias: '[AC] Enable back AC when windows are closed'
|
|
|
|
trigger:
|
|
|
|
- platform: state
|
|
|
|
entity_id: binary_sensor.dining_window_1_open_close
|
|
|
|
to: 'off'
|
|
|
|
for:
|
|
|
|
minutes: 1
|
|
|
|
- platform: state
|
|
|
|
entity_id: binary_sensor.dining_window_2_open_close
|
|
|
|
to: 'off'
|
|
|
|
for:
|
|
|
|
minutes: 1
|
|
|
|
- platform: state
|
|
|
|
entity_id: binary_sensor.office_window_open_close
|
|
|
|
to: 'off'
|
|
|
|
for:
|
|
|
|
minutes: 1
|
|
|
|
condition:
|
|
|
|
- condition: state
|
|
|
|
entity_id: input_select.home_mode
|
|
|
|
state: Day
|
|
|
|
- condition: state
|
|
|
|
entity_id: input_boolean.vacation_mode
|
|
|
|
state: 'off'
|
|
|
|
- condition: state
|
|
|
|
entity_id: binary_sensor.dining_window_1_open_close
|
|
|
|
state: 'off'
|
|
|
|
- condition: state
|
|
|
|
entity_id: binary_sensor.dining_window_2_open_close
|
|
|
|
state: 'off'
|
|
|
|
- condition: state
|
|
|
|
entity_id: binary_sensor.office_window_open_close
|
|
|
|
state: 'off'
|
|
|
|
action:
|
|
|
|
- service: script.ac_on
|
|
|
|
|
2023-06-12 21:56:22 +00:00
|
|
|
- id: ac_turn_off
|
2021-08-11 21:51:12 +00:00
|
|
|
alias: '[AC] Turn off when windows are open'
|
2021-07-05 08:56:14 +00:00
|
|
|
mode: single
|
|
|
|
trigger:
|
|
|
|
- platform: state
|
2021-10-11 18:15:50 +00:00
|
|
|
entity_id: binary_sensor.dining_window_1_open_close
|
2021-07-05 08:56:14 +00:00
|
|
|
to: 'on'
|
|
|
|
for:
|
|
|
|
minutes: 1
|
|
|
|
- platform: state
|
2021-10-11 18:15:50 +00:00
|
|
|
entity_id: binary_sensor.dining_window_2_open_close
|
2021-07-05 08:56:14 +00:00
|
|
|
to: 'on'
|
|
|
|
for:
|
|
|
|
minutes: 1
|
|
|
|
- platform: state
|
2021-10-11 18:15:50 +00:00
|
|
|
entity_id: binary_sensor.office_window_open_close
|
2021-07-05 08:56:14 +00:00
|
|
|
to: 'on'
|
|
|
|
for:
|
|
|
|
minutes: 1
|
|
|
|
action:
|
2022-08-29 22:45:41 +00:00
|
|
|
- service: script.ac_off
|