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

minor Fixes

git-svn-id: https://svn.fhem.de/fhem/trunk@5129 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2014-03-04 18:50:27 +00:00
parent 2d86b5e030
commit c9112c924e
2 changed files with 6 additions and 4 deletions

View File

@ -119,10 +119,10 @@ sub HMLAN_Define($$) {#########################################################
$defs{$name}{helper}{log}{all} = 0;# selective log support
$defs{$name}{helper}{log}{sys} = 0;
my @al = ();
@{$defs{$name}{helper}{log}{ids}} = \@al;
$defs{$name}{helper}{assId} = 0;#define hash
@{$hash->{helper}{log}{ids}} = \@al;
$hash->{assignedIDsCnt} = 0;#define hash
$hash->{assignedIDs} = "";
HMLAN_condUpdate($hash,253);#set disconnected
$hash->{STATE} = "disconnected";
@ -1021,7 +1021,7 @@ sub HMLAN_getVerbLvl ($$$$){#get verboseLevel for message
<li><a href="#hmId">hmId</a></li><br>
<li><a name="HMLANhmKey">hmKey</a></li><br>
<li><a name="HMLANhmKey2">hmKey2</a></li><br>
<li><a name="HMLANhmKey3">hmKey3</a><br>
<li><a name="HMLANhmKey3">hmKey3</a></li><br>
<li><a name="HMLANhmKey4">hmKey4</a></li><br>
<li><a name="HMLANhmKey5">hmKey5</a><br>
AES keys for the HMLAN adapter. <br>

View File

@ -394,6 +394,7 @@ sub HMinfo_tempList(@) { ######################################################
}
}
}
close(aSave);
foreach (@exec){
my @param = split(" ",$_);
CUL_HM_Set($defs{$param[0]},@param);
@ -1149,6 +1150,7 @@ sub HMinfo_loadConfig($@) {####################################################
}
}
}
close(aSave);
$ret .= "\nadded data:\n " .join("\n ",@el) if (scalar@el);
$ret .= "\nfile data incomplete:\n ".join("\n ",@elincmpl) if (scalar@elincmpl);
$ret .= "\nentries not defind:\n " .join("\n ",@entryNF) if (scalar@entryNF);