10_ZWave.pm: mcCreateAll creates a device for channel #1 too (Forum #48445)

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@10693 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2016-02-01 06:01:25 +00:00
parent 5fd3ce6024
commit 2c7d588903

View File

@@ -1616,7 +1616,7 @@ ZWave_mcCreateAll($$)
}
$data =~ m/^046008(..)(..)/;
my $nGrp = hex($2);
for(my $c = 2; $c <= $nGrp; $c++) {
for(my $c = 1; $c <= $nGrp; $c++) {
ZWave_Get($hash, $hash->{NAME}, "mcCapability", $c);
}
return undef;