71_COE_Node: fix for negative temparatures by thor3

git-svn-id: https://svn.fhem.de/fhem/trunk@25442 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
delmar 2022-01-09 12:37:31 +00:00
parent b8f846e58e
commit 0efdd77184
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# 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.
- bugfix: 71_COE_Node: fix for negative temparatures by thor3
- bugfix: 47_OBIS: remove control characters in strings
- feature: 10_KNX: KNX_scan Utility function
- bugfix: 82_LGTV_WebOS: rewrite and change code, fix bugs of older version

View File

@ -167,6 +167,7 @@ sub COE_Node_HandleAnalogValues {
my $existingConfig = exists $readingsMapping[$entryId];
my $value = $values[$i];
my $type = $types[$i];
my $vorz = (substr $value, 0,1);
if ($existingConfig) {
@ -176,6 +177,9 @@ sub COE_Node_HandleAnalogValues {
$value = (substr $value, 0, (length $value)-2) . "." . (substr $value, -2);
}
if ( COE_Node_BeginsWith($value, '-.') ) {
$value = "-0." . (substr $value, 2, (length $value));
}
if ( COE_Node_BeginsWith($value, '.') ) {
$value = "0$value";
}