1
0
ansible-home-assistant/configuration/automations/ac.yaml

73 lines
1.8 KiB
YAML
Raw Normal View History

2021-07-05 08:56:14 +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
entity_id: sensor.ble_temperature_computer_cave_sensor
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-04 22:30:08 +00:00
- 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: 25
hvac_mode: cool
target:
entity_id: climate.ac
2021-07-05 08:56:14 +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:
- service: climate.turn_off
target:
entity_id: climate.ac