ollo69 / ha-smartthinq-sensors

HomeAssistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface.
Apache License 2.0
1.03k stars 149 forks source link

My 2023 Air conditioner doesn't have Fan_only mode #734

Open kkqq9320 opened 2 months ago

kkqq9320 commented 2 months ago
  1. The model name of my 2023 LG air conditioner is FQ18SDTHAN.AKOR, and in HA's climate service, the Fan_only setting is not available. Currently, only Cool / Dry modes are possible.

  2. I would like to add the Fan_only mode.

  3. After adding ACMode.AIRCLEAN.name: HVACMode.FAN_ONLY below HVAC_MODE_LOOKUP in custom components -> smartthinq_sensors -> climate.py, Fan_only mode started working. HVAC_MODE_LOOKUP: dict[str, HVACMode] = { ACMode.AI.name: HVACMode.AUTO, ACMode.HEAT.name: HVACMode.HEAT, ACMode.DRY.name: HVACMode.DRY, ACMode.COOL.name: HVACMode.COOL, ACMode.FAN.name: HVACMode.FAN_ONLY, ACMode.ACO.name: HVACMode.HEAT_COOL, ACMode.AIRCLEAN.name: HVACMode.FAN_ONLY, }

  4. Here is what I've configured. 1