diff --git a/fhem/CHANGED b/fhem/CHANGED index cd33d1cc3..f0d96eef4 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,6 +1,7 @@ # 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: decimal for kWh fixed - change: 73_AutoShuttersControl: fix 'table with attributes' message then commandref create - new: 66_EseraAnalogInOut.pm: new modul diff --git a/fhem/FHEM/71_COE_Node.pm b/fhem/FHEM/71_COE_Node.pm index 9f793cf62..9063d0e33 100644 --- a/fhem/FHEM/71_COE_Node.pm +++ b/fhem/FHEM/71_COE_Node.pm @@ -170,7 +170,7 @@ sub COE_Node_HandleAnalogValues { if ($existingConfig) { - if ($type == 1) { + if ($type == 1 || $type == 10) { $value = (substr $value, 0, (length $value)-1) . "." . (substr $value, -1); } elsif ($type == 13) { $value = (substr $value, 0, (length $value)-2) . "." . (substr $value, -2);