minor bug

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@6500 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2014-09-03 18:42:22 +00:00
parent 0f1798802b
commit f28c1e9eb2
3 changed files with 5 additions and 4 deletions

View File

@ -228,6 +228,7 @@ sub CUL_HM_updateConfig($){
foreach ( "autoReadReg","actCycle","actStatus","burstAccess","serialNr" foreach ( "autoReadReg","actCycle","actStatus","burstAccess","serialNr"
,"IODev","IOList","IOgrp","hmProtocolEvents","rssiLog"); ,"IODev","IOList","IOgrp","hmProtocolEvents","rssiLog");
$hash->{helper}{role}{vrt} = 1; $hash->{helper}{role}{vrt} = 1;
$hash->{helper}{role}{dev} = 1;
next; next;
} }
CUL_HM_ID2PeerList($name,"",1); # update peerList out of peerIDs CUL_HM_ID2PeerList($name,"",1); # update peerList out of peerIDs
@ -7517,8 +7518,8 @@ sub CUL_HM_tempListTmpl(@) { ##################################################
<a href="#CUL_HMpeerChan">peerChan</a>.<br> <a href="#CUL_HMpeerChan">peerChan</a>.<br>
</li> </li>
<li><B>peerBulk</B> &lt;peerch1,peerch2,...&gt; [set|unset]<a name="CUL_HMpeerBulk"></a><br> <li><B>peerBulk</B> &lt;peerch1,peerch2,...&gt; [set|unset]<a name="CUL_HMpeerBulk"></a><br>
peerBulk will add peer channels to the channel. All peers in the peerBulk will add peer channels to the channel. All peers in the list will be added. <br>
list will be added. <br> with unset option the peers in the list will be subtracted from the device's peerList.<br>
peering sets the configuration of this link to its defaults. As peers are not peering sets the configuration of this link to its defaults. As peers are not
added in pairs default will be as defined for 'single' by HM for this device. <br> added in pairs default will be as defined for 'single' by HM for this device. <br>
More suffisticated funktionality is provided by More suffisticated funktionality is provided by

View File

@ -537,7 +537,7 @@ sub HMinfo_paramCheck(@) { ####################################################
if (!$defs{$eName}{helper}{role}{vrt}){ if (!$defs{$eName}{helper}{role}{vrt}){
if ($pairId eq "undefined") { push @noID,$eName;} if ($pairId eq "undefined") { push @noID,$eName;}
elsif ($pairId !~ m /$ioHmId/ elsif ($pairId !~ m /$ioHmId/
&& $IoDev ) { push @idMismatch,"$eName paired:$pairId IO attr: $ioHmId";} && $IoDev ) { push @idMismatch,"$eName paired:$pairId IO attr: ${ioHmId}.";}
} }
} }
} }

View File

@ -1338,7 +1338,7 @@ $culHmSubTypeDevSets{blindActuator} = $culHmSubTypeDevSets{switch};
%culHmGlobalSetsChn = (# all channels but virtuals %culHmGlobalSetsChn = (# all channels but virtuals
sign => "[on|off]", sign => "[on|off]",
peerBulk => "<peer1,peer2,...>", peerBulk => "<peer1,peer2,...> [set|unset]",
); );
%culHmSubTypeSets = (# channels of this subtype %culHmSubTypeSets = (# channels of this subtype
switch =>{ "on-for-timer" =>"<ontime>" switch =>{ "on-for-timer" =>"<ontime>"