bug with CUL in HMInfo and protocol evets

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@4358 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876
2013-12-11 13:30:26 +00:00
parent 14e3fa96eb
commit 7149b922e5

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));
}