2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

New devices

git-svn-id: https://svn.fhem.de/fhem/trunk@1003 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2011-09-14 17:27:00 +00:00
parent e80abc7e1e
commit 690cff94d4
2 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ my %culHmModel=(
"003C" => "HM-WDS20-TH-O", "003C" => "HM-WDS20-TH-O",
"003D" => "HM-WDS10-TH-O", # Reported to work (2011-07-26) "003D" => "HM-WDS10-TH-O", # Reported to work (2011-07-26)
"003E" => "HM-WDS30-T-O", "003E" => "HM-WDS30-T-O",
"003F" => "HM-WDS40-TH-I", "003F" => "HM-WDS40-TH-I", # Tested by peterp
"0040" => "HM-WDS100-C6-O", # Identical to KS550? "0040" => "HM-WDS100-C6-O", # Identical to KS550?
"0041" => "HM-WDC7000", "0041" => "HM-WDC7000",
"0042" => "HM-SEC-SD", # Tested "0042" => "HM-SEC-SD", # Tested
@ -113,6 +113,7 @@ my %culHmModel=(
"0060" => "HM-PB-4DIS-WM", # Tested "0060" => "HM-PB-4DIS-WM", # Tested
"0061" => "HM-LC-SW4-DR", "0061" => "HM-LC-SW4-DR",
"0062" => "HM-LC-SW2-DR", "0062" => "HM-LC-SW2-DR",
"0066" => "HM_LC_Sw4-WM", # Tested by peterp
); );

View File

@ -63,7 +63,7 @@ CUL_TX_Parse($$)
if($a[5] ne $a[8] || $a[6] ne $a[9]) { if($a[5] ne $a[8] || $a[6] ne $a[9]) {
Log 4, "CUL_TX $id3 ($msg) data error"; Log 4, "CUL_TX $id3 ($msg) data error";
return; return "";
} }
my $def = $modules{CUL_TX}{defptr}{$id3}; my $def = $modules{CUL_TX}{defptr}{$id3};
@ -110,7 +110,6 @@ CUL_TX_Parse($$)
DoTrigger($name, undef) if($init_done); DoTrigger($name, undef) if($init_done);
return $name; return $name;
} }
1; 1;