KNX Integration A/C-Unit Operation Modes

Hello everyone,

I would like to use Home Assistant to control my air conditioning system via KNX. I have written the following code:

climate:
  # Klimaanlage Schlafzimmer
  - name: "Schlafzimmer Klimaanlage"
    temperature_address: "5/2/2"
    target_temperature_address: "5/2/0"
    target_temperature_state_address: "5/2/1"
    min_temp: 16.0
    max_temp: 30.0
    temperature_step: 1.0
    controller_mode_address: "5/2/3"
    controller_mode_state_address: "5/2/4"
    controller_modes:
      - "Off"
      - "Cool"
      - "Heat"
      - "Fan only"

The temperature setting works. However, I cannot set the operating mode because the values for the operating mode that are sent via Home Assistant are not the ones I need. The following values are sent:
Off: 6
Cooling: 3
Heating: 1
Fan only: 9

However, I need the following values for my air conditioning system:
Off: 0
Cooling: 1
Heating: 2
Fan only: 3

So how can I change the default values sent by Home Assistant?

This is not DPT 20.105 compatible, so you may configure a separate select entity instead to control that.

Thank you for the idea. Could you please explain me how to to this?

Have a look at the documentation https://www.home-assistant.io/integrations/knx/#select

Ah, ok. So it seems that I can’t control the air conditioning with the template, since it is not possible to chnage the values in Home Assistat. Then I will probably use a logic block in the KNX system to convert the values.