2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

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

git-svn-id: https://svn.fhem.de/fhem/trunk@10693 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-02-01 06:01:25 +00:00
parent c56ad3a549
commit ec2e1df37a

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;