2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-01 01:09:47 +00:00

14_CUL_TCM97001: Bugfix for unknown sensor

git-svn-id: https://svn.fhem.de/fhem/trunk@10092 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
dancer0705 2015-12-04 18:31:27 +00:00
parent ec2d0f2370
commit d51a141341

View File

@ -1190,7 +1190,8 @@ CUL_TCM97001_Parse($$)
return $name;
} else {
if (length($msg) == 8 || length($msg) == 10 || length($msg) == 12) {
Log3 "Unknown", 2, "xxxxxxxx $msg xxxx " . length($msg);
if (length($msg) == 8 || length($msg) == 10 || length($msg) == 12 || length($msg) == 14) {
my $defUnknown = $modules{CUL_TCM97001}{defptr}{"Unknown"};
if (!$defUnknown) {