bug with CUL in HMInfo and protocol evets

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@4358 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2013-12-11 13:30:26 +00:00
parent 3d3246856d
commit ce71155a21

View File

@ -431,11 +431,16 @@ sub HMinfo_SetFn($@) {#########################################################
@IOlist = HMinfo_noDup(@IOlist);
foreach(@IOlist){
$_ .= ":".$defs{$_}{STATE}
.(defined $defs{$_}{helper}{q}?
" pending=".$defs{$_}{helper}{q}{answerPend} :
"")
.(defined $defs{$_}{helper}{q}
? " pending=".$defs{$_}{helper}{q}{answerPend}
: ""
)
." condition:".ReadingsVal($_,"cond","-")
."\n msgLoadEst: ".$defs{$_}{msgLoadEst};
.(defined $defs{$_}{msgLoadEst}
? "\n msgLoadEst: ".$defs{$_}{msgLoadEst}
: ""
)
;
}
$ret .= "\n IODevs:".(join"\n ",HMinfo_noDup(@IOlist));
}