2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

10_ZWave.pm: decode ZW_APPLICATION_UPDATE failed (Forum #51520)

git-svn-id: https://svn.fhem.de/fhem/trunk@11152 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2016-03-30 08:22:52 +00:00
parent c8a3d0a910
commit 40788d4cf6

View File

@ -3749,25 +3749,33 @@ ZWave_Parse($$@)
return ZWave_execInits($dh, 0);
}
} elsif($cmd eq "ZW_APPLICATION_UPDATE" && $arg =~ m/....(..)..(.*)$/) {
my ($type6,$classes) = ($1, $2);
my $ret = ZWave_SetClasses($homeId, $id, $type6, $classes);
} elsif($cmd eq "ZW_APPLICATION_UPDATE") {
if($arg =~ m/....(..)..(.*)$/) {
my ($type6,$classes) = ($1, $2);
my $ret = ZWave_SetClasses($homeId, $id, $type6, $classes);
my $hash = $modules{ZWave}{defptr}{"$homeId $id"};
if($hash) {
if(!AttrVal($hash->{NAME}, "noWakeupForApplicationUpdate", 0)) { # 50090
if(ZWave_isWakeUp($hash)) {
ZWave_wakeupTimer($hash, 1);
ZWave_processSendStack($hash, "next");
my $hash = $modules{ZWave}{defptr}{"$homeId $id"};
if($hash) {
if(!AttrVal($hash->{NAME}, "noWakeupForApplicationUpdate", 0)) { # 50090
if(ZWave_isWakeUp($hash)) {
ZWave_wakeupTimer($hash, 1);
ZWave_processSendStack($hash, "next");
}
}
if(!$ret) {
readingsSingleUpdate($hash, "CMD", $cmd, 1); # forum:20884
return $hash->{NAME};
}
}
return $ret;
} else {
Log3 $ioName, 2, "ZW_REQUEST_NODE_INFO ".
($callbackid eq "81" ? "failed" : "unknown $calbackid");
return "";
if(!$ret) {
readingsSingleUpdate($hash, "CMD", $cmd, 1); # forum:20884
return $hash->{NAME};
}
}
return $ret;
} elsif($cmd eq "ZW_SEND_DATA") { # 0013cb00....
my $hash = ZWave_callbackId($callbackid);