From 720da8eaccc8a370f19a37fe6642b197e869dac2 Mon Sep 17 00:00:00 2001 From: HenrikHagen <14146420+HenrikHagen@users.noreply.github.com> Date: Sun, 7 Jan 2024 10:06:28 +0100 Subject: [PATCH] Update wavinahc9000v2_climate.cpp Setting temperature step individually for target (0.5) and current (0.1) so the steps in home assistant GUI matches the steps in the Wavin system. --- components/wavinahc9000v2/climate/wavinahc9000v2_climate.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/wavinahc9000v2/climate/wavinahc9000v2_climate.cpp b/components/wavinahc9000v2/climate/wavinahc9000v2_climate.cpp index 7e8d3952..661ce4ac 100644 --- a/components/wavinahc9000v2/climate/wavinahc9000v2_climate.cpp +++ b/components/wavinahc9000v2/climate/wavinahc9000v2_climate.cpp @@ -83,7 +83,8 @@ climate::ClimateTraits Wavinahc9000v2Climate::traits() { traits.set_supports_action(true); traits.set_supports_current_temperature(true); - traits.set_visual_temperature_step(0.5); + traits.set_visual_target_temperature_step(0.5); + traits.set_visual_current_temperature_step(0.1); traits.set_visual_min_temperature(6); traits.set_visual_max_temperature(40);