Hi, I’m trying to set my thermostats in HomeAssistant but I’m going crazy with the setup. I have an Airzone gateway to communicate with my KNX installation. I’m able to get everything working fine except for the control mode. According to the Airzone documentation to contol the modes, I need to send the following values: 0 - Stop, 3 - Fan, 4 - Dry, 6 - Heat and 8 - Cool. The problem is that i’ve been seeing everywhere that the default configuration is: 0 - Auto, 1 - Heat, 3 - Cool, 9 - Fan, 14 - Dry. Is there a way to change the values that Home Assistant sends?
This is my code:
knx:
climate:
- name: "Termostato Salón"
temperature_address: "1/7/22"
target_temperature_address: "1/7/20"
target_temperature_state_address: "1/7/19"
min_temp: 18.0
max_temp: 30.0
operation_mode_address: "1/7/2"
operation_mode_state_address: "1/7/1"
controller_modes:
- "Off"
- "Heat"
- "Cool"
- "Fan only"
- "Dry"
on_off_address: "1/7/18"
on_off_state_address: "1/7/17"