1
0
Fork 0
ha-config/config/packages/climate.yaml

105 lines
3.1 KiB
YAML
Raw Normal View History

2023-04-25 07:36:58 +10:00
# TODO:
#
# * Turn on AC when: someone is home, weather outside is cold, and are out of bed or about to get out of bed
# - maybe can change the logic that manages the blinds using the sleep/wake logic to be backed by a schedule state that multiple things can key off?
automation:
2023-05-07 13:25:39 +10:00
- alias: "Keep Living Room AC ionizer on"
id: dfc2753d-9a70-4e77-adb0-c4a85f8f3406
2023-04-25 07:36:58 +10:00
trigger:
2023-05-07 13:25:39 +10:00
- platform: state
entity_id: climate.living_room_a_c
not_to:
- unavailable
- unknown
- "off"
not_from:
- unavailable
- unknown
- platform: state
entity_id: switch.living_room_a_c_jet_mode
not_to:
- unavailable
- unknown
2023-04-25 07:36:58 +10:00
action:
- service: switch.turn_on
entity_id: switch.living_room_a_c_ionizer
2023-05-07 13:25:39 +10:00
- alias: "Set Living Room AC fan to auto"
id: b09bd43d-4e5d-4ff3-84cb-3aaa8d878463
trigger:
- platform: state
entity_id: climate.living_room_a_c
not_to:
- unavailable
- unknown
- "off"
not_from:
- unavailable
- unknown
- platform: state
entity_id: switch.living_room_a_c_jet_mode
not_to:
- unavailable
- unknown
- "on"
condition: "{{ not is_state('switch.living_room_a_c_jet_mode', 'on') }}"
action:
2023-04-25 07:36:58 +10:00
- service: climate.set_fan_mode
data:
fan_mode: NATURE
target:
entity_id: climate.living_room_a_c
2023-05-07 13:25:39 +10:00
- alias: "Capture Living Room AC state"
id: 15a75d0a-bc08-45c7-95d1-b16d02f6927a
trigger:
- platform: state
entity_id: climate.living_room_a_c
not_to:
- unavailable
- unknown
- "off"
not_from:
- unavailable
- unknown
- platform: numeric_state
entity_id: climate.living_room_a_c
attribute: temperature
- platform: state
entity_id: climate.living_room_a_c
attribute: fan_mode
- platform: state
entity_id: climate.living_room_a_c
attribute: swing_mode
- platform: state
entity_id: climate.living_room_a_c
attribute: swing_mode_horizontal
- platform: state
entity_id: climate.living_room_a_c
attribute: swing_mode_vertical
- platform: state
entity_id: switch.living_room_a_c_jet_mode
not_to:
- unavailable
- unknown
- "on"
2023-05-07 16:25:44 +10:00
condition: "{{ not is_state('switch.living_room_a_c_jet_mode', 'on') and not is_state('climate.living_room_a_c', 'off') }}"
2023-05-07 13:25:39 +10:00
action:
- service: scene.create
data:
scene_id: living_room_ac_state
snapshot_entities:
- switch.living_room_a_c_ionizer
- climate.living_room_a_c
- id: 7e0f6c8f-28ab-4342-96f9-a28a1fa8d580
alias: Restore AC state after Jet mode is off
trigger:
- platform: state
entity_id: switch.living_room_a_c_jet_mode
to: "off"
action:
- service: scene.turn_on
target:
entity_id: scene.living_room_ac_state