2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

some ec 3000 fixes

git-svn-id: https://svn.fhem.de/fhem/trunk@3871 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2013-09-07 10:55:36 +00:00
parent 66d0ed230a
commit 13b941fb54

View File

@ -415,10 +415,10 @@ JeeLink_Parse($$$$)
next if(!$dmsg || length($dmsg) < 1); # Bogus messages
return if($dmsg =~ m/^Available commands:/ ); # ignore startup messages
return if($dmsg =~ m/^ .* - / ); # ignore startup messages
return if($dmsg =~ m/^ / ); # ignore startup messages
return if($dmsg =~ m/^-> ack/ ); # ignore send ack
if($dmsg =~ m/^\[pcaSerial/ ) {
if($dmsg =~ m/^\[/ ) {
$hash->{VERSION} = $dmsg;
return;
}