에어컨 가동시 습도문제 해결 자동화2



2년간 테스트해보니 전기소모량은 크게 차이나지 않고 습도관리는 가능.
송풍모드를 사용하지 않아 냉각팬에 맺힌 물방울 때문에 곰팡이 쓸 우려를 제기하지만 짧은 시간 on/off에는 크게 염려하지 않아도 됨. 재가동되면 맺힌 물방울은 다시 배수구로 빠져 나가고 장시간 off시에만 자동건조를 30분이상 돌려주면 됨.

** 휴일 주간에 사용할 때나 실외 기온이 매우 높은 상태에선 인버터 에어컨이라면 온도설정하고 자동화 off하고 그대로 두는 게 낫다. 재가동될 때 소비전력이 증가하여 하루 전체 소비전력을 높인다. 그래서 주로 저녁이후 야간에 사용하는게 효과가 좋다.



에어컨 가동 트리거는 실내온도가 27 or 28도 도달시 에어컨 가동
automation:
- id: aircon-turn_on
  alias: aircon-turn_on
  trigger:
  - above: '27'
    entity_id: sensor.livingroom_temperature
    platform: numeric_state
  - above: '28'
    entity_id: sensor.livingroom_temperature
    platform: numeric_state
  action:
  - service: input_boolean.turn_on
    entity_id: input_boolean.aircon_livingroom
  mode: single

에어컨 off 트리거는 플러그의 소비전력 200w이하이거나 실내온도 26도 도달시.
소비전력 200w이하면 송풍모드로 작동하고 있는 것으로 보면 됨.
- id: aircon-turn_off
  alias: aircon-turn_off
  trigger:
  - above: '10'
    below: '200'
    for: "00:03:00"
    entity_id: sensor.0x5c0272fffea01181_power
    platform: numeric_state
  - below: '26'
    entity_id: sensor.livingroom_temperature
    platform: numeric_state
  action:
  - service: input_boolean.turn_off
    entity_id: input_boolean.dry_livingroom
  - delay: "00:00:05"
  - service: input_boolean.turn_off
    entity_id: input_boolean.aircon_livingroom
  mode: single


자동건조 스크립트인데 아침 출근전 자동화로 가동시키면 30분간 자동건조를 타이머로 실행하고 에어컨 가동 자동화도 off시킴.
script:
aircon_auto_dry:
  sequence:
    - service: homeassistant.turn_off
      entity_id:
        - automation.aircon_turn_on
        - automation.aircon_turn_off
        - automation.aircon_dehumid
    - service: homeassistant.turn_on
      entity_id: input_boolean.dry_livingroom
    - service: timer.start
      entity_id: timer.dry_livingroom

** 에어컨 송풍구간시 습도관리