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

correct bug in THSensor channel handling

git-svn-id: https://svn.fhem.de/fhem/trunk@3766 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2013-08-22 17:27:02 +00:00
parent 0333ea753b
commit b2c8c0fdf5

View File

@ -872,7 +872,7 @@ sub CUL_HM_Parse($$) {##############################
$d = sprintf("%0.1f",$d/10); $d = sprintf("%0.1f",$d/10);
my $chId = sprintf("%02X",hex($a) & 0x3f); my $chId = sprintf("%02X",hex($a) & 0x3f);
if($modules{CUL_HM}{defptr}{$chId}){ if($modules{CUL_HM}{defptr}{$src.$chId}){
push @entities,CUL_HM_UpdtReadSingle($modules{CUL_HM}{defptr}{$src.$chId} push @entities,CUL_HM_UpdtReadSingle($modules{CUL_HM}{defptr}{$src.$chId}
,'state',$d,1); ,'state',$d,1);
} }