2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-15 22:26:04 +00:00

LUXTRONIK2: robustness

git-svn-id: https://svn.fhem.de/fhem/trunk@12469 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
grompo 2016-10-29 20:43:25 +00:00
parent e932bf4493
commit 85a8080e2c

View File

@ -641,7 +641,7 @@ LUXTRONIK2_DoUpdate($)
# 62 - counterHeatQPool
$return_str .= "|". ($heatpump_visibility[2]==1 ? $heatpump_values[153] : "no");
# 63 - returnTemperatureTargetMin
$return_str .= "|". ($heatpump_visibility[295]==1 ? $heatpump_parameters[979] : "no");
$return_str .= "|". (defined($heatpump_visibility[295]) && $heatpump_visibility[295]==1 ? $heatpump_parameters[979] : "no");
return $return_str;
}