mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
bugs fixed
git-svn-id: https://svn.fhem.de/fhem/trunk@4872 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
41a39fa313
commit
d01d3a898b
@ -259,7 +259,7 @@ sub HMLAN_Attr(@) {############################################################
|
||||
@{$defs{$name}{helper}{log}{ids}}=@ids;
|
||||
}
|
||||
return "logging set to $attr{$name}{$aName}"
|
||||
if ($attr{$name}{$aName} ne $aVal);
|
||||
if ($aVal && $attr{$name}{$aName} ne $aVal);
|
||||
}
|
||||
elsif($aName eq "dummy"){
|
||||
if ($cmd eq "set" && $aVal != 0){
|
||||
|
@ -990,7 +990,7 @@ sub CUL_HM_Parse($$) {##############################
|
||||
("02",$d[1],$d[1], $d[2],$d[2],$d[2],$d[2],$d[3]);
|
||||
$setTemp =(($setTemp >>10) & 0x3f )/2;
|
||||
$actTemp =(($actTemp ) & 0x2ff)/10;
|
||||
$actTemp = -1 * $actTemp if ($1 & 0x200 );# obey signed
|
||||
$actTemp = -1 * $actTemp if ($d[1] & 0x200 );# obey signed
|
||||
$bat =(($bat ) & 0x1f)/10+1.5;
|
||||
$lbat = ($lbat ) & 0x80;
|
||||
$ctrlMode = ($ctrlMode >> 6) & 0x3 ;
|
||||
|
@ -1268,8 +1268,9 @@ $culHmModelSets{"ROTO_ZEL-STG-RM-FWT"} = $culHmModelSets{"HM-CC-TC"};
|
||||
,tempListWed =>"[prep|exec] [p1|p2|p3] HH:MM temp ..."
|
||||
,tempListFri =>"[prep|exec] [p1|p2|p3] HH:MM temp ..."
|
||||
,"desired-temp" =>"[on|off|5.0..30.0]"
|
||||
,peerChan =>"<btnNumber> <actChn> ... single [set|unset] [actor|remote|both]"
|
||||
},
|
||||
"HM-TC-IT-WM-W-EU07"=>{ peerChan =>"<btnNumber> <actChn> ... single [set|unset] [actor|remote|both]"},
|
||||
"HM-TC-IT-WM-W-EU07"=>{ peerChan =>"<btnNumber> <actChn> ... single [set|unset] [actor|remote|both]"},
|
||||
"HM-ES-PMSw1-Pl01" =>{ "on-for-timer" =>"<sec>"
|
||||
,"on-till" =>"<time>"
|
||||
,on =>""
|
||||
|
Loading…
Reference in New Issue
Block a user