Eurom Alutherm Heater in HA

Hi, so this is how you do it:

Open file on HA …\config\custom_components\localtuya\climate.py
In climate.py you can find HVAC_MODE_SETS (line 59 or around) and
add new set:

"manual (m) / automatic (p)": {
        HVAC_MODE_HEAT: "m",
        HVAC_MODE_AUTO: "p",
    },

in the same file find PRESET_SETS (line 94 or around)
and add

 "low/mid/high/off": {
        PRESET_NONE: "low",
        PRESET_AWAY: "mid",
        PRESET_HOME: "high",
    },

Now you can set the device:
Protocol version 3.3



You will get device with every option.

Preset is not corresponding to real values but you will find what is what. I do control heaters from the AppDaemon so I do not care. It may be possible to fix that as well.

4 Likes