2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 12:18:46 +00:00

Added CUL_WS to the type-list, so the unit-type for temperature and humidity is inserted in the db.

git-svn-id: https://svn.fhem.de/fhem/trunk@568 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
mr_p 2010-01-26 23:35:34 +00:00
parent c0cda51366
commit f34f5e4ddd

View File

@ -196,7 +196,14 @@ DbLog_ParseEvent($$)
$value=~ s/replaced/1/;
$value=~ s/empty/0/;
}
}
}
# CUL_WS
elsif($type eq "CUL_WS") {
if($event =~ m(T:.*)) { $reading= "data"; $value= $event; }
if($reading eq "temperature") { $unit= "°C"; }
if($reading eq "humidity") { $unit= "%"; }
}
@result= ($reading,$value,$unit);