2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-08 13:24:56 +00:00

THZ: fix p15RoomInfluenceHC1 old tecalor for joerg: no percent going from 1to10

git-svn-id: https://svn.fhem.de/fhem/trunk@26161 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
immi 2022-06-20 17:50:46 +00:00
parent 38f85609ec
commit 45a0226f84

View File

@ -2072,7 +2072,7 @@ sub function_heatSetTemp($$) {
push(@ret, [$_, $Simul_heatSetTemp, $Simul_heatSetTemp_simplified]);
}
my $titlestring = 'roomSetTemp=' . $roomSetTemp . '°C p13GradientHC1=' . $p13GradientHC1 . ' p14LowEndHC1=' . $p14LowEndHC1 . 'K p15RoomInfluenceHC1=' . $p15RoomInfluenceHC1;
$titlestring .= "%" if (AttrVal($devname, "firmware" , "4.39") =~ /^2/ );
$titlestring .= "%" if (AttrVal($devname, "firmware" , "4.39") !~ /^2/ );
$titlestring .= " insideTemp=" . $insideTemp .'°C';
return (\@ret, $titlestring, $heatSetTemp, $outside_tempFiltered, $pOpMode);
}