mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-19 06:36:04 +00:00
93_DbLog: standard unit assignment for readings beginning with 'temperature' removed, forum:#125087
git-svn-id: https://svn.fhem.de/fhem/trunk@25394 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
36486563e9
commit
3c77a77cda
@ -1,7 +1,7 @@
|
|||||||
# 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.
|
||||||
- change: 93_DbLog: standard unit assignment for readings beginning with
|
- change: 93_DbLog: standard unit assignment for readings beginning with
|
||||||
'temperature' or 'humidity' removed, forum:#125087
|
'temperature' removed, forum:#125087
|
||||||
- feature: 36_ShellyMonitor: support for readings of Shelly TRV
|
- feature: 36_ShellyMonitor: support for readings of Shelly TRV
|
||||||
- feature: 82_LGTV_WebOS: add weibu and change part's of code
|
- feature: 82_LGTV_WebOS: add weibu and change part's of code
|
||||||
- bugfix: 93_DbLog: logging negative temperature of Type FBDECT
|
- bugfix: 93_DbLog: logging negative temperature of Type FBDECT
|
||||||
|
@ -30,7 +30,7 @@ no if $] >= 5.017011, warnings => 'experimental::smartmatch';
|
|||||||
|
|
||||||
# Version History intern by DS_Starter:
|
# Version History intern by DS_Starter:
|
||||||
my %DbLog_vNotesIntern = (
|
my %DbLog_vNotesIntern = (
|
||||||
"4.12.5" => "31.12.2001 standard unit assignment for readings beginning with 'temperature' and 'humidity' removed, forum:#125087 ",
|
"4.12.5" => "31.12.2001 standard unit assignment for readings beginning with 'temperature' and removed, forum:#125087 ",
|
||||||
"4.12.4" => "27.12.2021 change ParseEvent for FBDECT, warning messages for deprecated commands added ",
|
"4.12.4" => "27.12.2021 change ParseEvent for FBDECT, warning messages for deprecated commands added ",
|
||||||
"4.12.3" => "20.04.2021 change sub DbLog_ConnectNewDBH for SQLITE, change error Logging in DbLog_writeFileIfCacheOverflow ",
|
"4.12.3" => "20.04.2021 change sub DbLog_ConnectNewDBH for SQLITE, change error Logging in DbLog_writeFileIfCacheOverflow ",
|
||||||
"4.12.2" => "08.04.2021 change standard splitting ",
|
"4.12.2" => "08.04.2021 change standard splitting ",
|
||||||
@ -1117,11 +1117,13 @@ sub DbLog_ParseEvent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#globales Abfangen von # removed in Version 4.12.5
|
#globales Abfangen von # changed in Version 4.12.5
|
||||||
# - temperature
|
# - temperature
|
||||||
# - humidity
|
# - humidity
|
||||||
#if ($reading =~ m(^temperature)) { $unit = "°C"; } # wenn reading mit temperature beginnt
|
#if ($reading =~ m(^temperature)) { $unit = "°C"; } # wenn reading mit temperature beginnt
|
||||||
#elsif($reading =~ m(^humidity)) { $unit = "%"; } # wenn reading mit humidity beginnt
|
#elsif($reading =~ m(^humidity)) { $unit = "%"; } # wenn reading mit humidity beginnt
|
||||||
|
if($reading =~ m(^humidity)) { $unit = "%"; } # wenn reading mit humidity beginnt
|
||||||
|
|
||||||
|
|
||||||
# the interpretation of the argument depends on the device type
|
# the interpretation of the argument depends on the device type
|
||||||
# EMEM, M232Counter, M232Voltage return plain numbers
|
# EMEM, M232Counter, M232Voltage return plain numbers
|
||||||
|
Loading…
x
Reference in New Issue
Block a user