2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

correct desired temp update in centrl mode

git-svn-id: https://svn.fhem.de/fhem/trunk@3949 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2013-09-23 13:14:55 +00:00
parent 2f9d068acd
commit 03f0292e76

View File

@ -637,8 +637,13 @@ sub CUL_HM_Parse($$) {##############################
if($chnHash){ if($chnHash){
push @entities,CUL_HM_UpdtReadSingle($chnHash,"state","$vp %",1); push @entities,CUL_HM_UpdtReadSingle($chnHash,"state","$vp %",1);
if ($chnHash->{helper}{needUpdate}){ if ($chnHash->{helper}{needUpdate}){
CUL_HM_stateUpdat(":".$chnHash->{NAME}); if ($chnHash->{helper}{needUpdate} == 1){
delete $chnHash->{helper}{needUpdate}; $chnHash->{helper}{needUpdate}++;
}
else{
CUL_HM_stateUpdat(":".$chnHash->{NAME});
delete $chnHash->{helper}{needUpdate};
}
} }
} }
push @event, "actuator:$vp %"; push @event, "actuator:$vp %";