2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

14_CUL_TCM97001: Fix temperature reading

git-svn-id: https://svn.fhem.de/fhem/trunk@16274 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
bjoernh 2018-02-25 20:42:39 +00:00
parent 7b5e4db1bc
commit abd591b244
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it. # Do not insert empty lines here, update check depends on it.
- bugfix: 14_CUL_TCM97001: Fix temperature reading
- bugfix: 49_SSCam: V3.3.0, code review, API bug fix of runview lastrec, - bugfix: 49_SSCam: V3.3.0, code review, API bug fix of runview lastrec,
commandref revised (forum:#84953) commandref revised (forum:#84953)
- bugfix: 73_ElectricityCalculator: Spelling error "di(s)abled" corrected - bugfix: 73_ElectricityCalculator: Spelling error "di(s)abled" corrected

View File

@ -613,7 +613,7 @@ CUL_TCM97001_Parse($$)
$hasmode = TRUE; $hasmode = TRUE;
$hasbatcheck = TRUE; $hasbatcheck = TRUE;
$haschannel = TRUE; $haschannel = TRUE;
$id3 = $idType2 $id3 = $idType2;
} else { } else {
$name = "Unknown"; $name = "Unknown";
} }
@ -1683,7 +1683,9 @@ CUL_TCM97001_Parse($$)
$state="$state H: $valH"; $state="$state H: $valH";
Log3 $name, 4, "$iodev: CUL_TCM97001 $msgtype $name $id3 T: $val H: $valH"; Log3 $name, 4, "$iodev: CUL_TCM97001 $msgtype $name $id3 T: $val H: $valH";
} else { } else {
$msgtype = "other"; if ($model eq "W174") {
$msgtype = "other";
}
Log3 $name, 4, "$iodev: CUL_TCM97001 $msgtype $name $id3"; Log3 $name, 4, "$iodev: CUL_TCM97001 $msgtype $name $id3";
#Log3 $name, 4, "CUL_TCM97001 $msgtype $name $id3 "; #Log3 $name, 4, "CUL_TCM97001 $msgtype $name $id3 ";
} }