Hi, I just bought a DIYLESS OpenTherm thermostat and I flashed it with ESPHome.
I got everything working and then I found out there is an option in Home assistant to select climate presets like home, away, comfort, eco etc.
I want to add it to my thermostat but I’m unable to find a way to configure the presets.
The presets with configurable temperatures seems so usefull.
Can someone help me with this?
This is my climate pid config in ESPHome:
climate:
- platform: pid
id: ch_climate
name: "Heating Climate"
heat_output: t_set
default_target_temperature: 20°C
sensor: thermostat_temp
visual:
min_temperature: 4°C
max_temperature: 35°C
temperature_step:
target_temperature: 0.5°C
current_temperature: 0.1°C
control_parameters:
kp: 4.585496559670449
ki: 0.0003293586854220727
kd: 15.960394874514796
derivative_averaging_samples: 10 # smooth the derivative value over 10 samples
starting_integral_term: 0.0
deadband_parameters:
threshold_high: 0.5°C
threshold_low: -0.5°C
kp_multiplier: 0.5
ki_multiplier: 0.5
kd_multiplier: 1.0
deadband_output_averaging_samples: 5 # average the output over 5 samples within the deadband
Here is an example of the kind of presets that I’m looking to implement.