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

12_HProtocolGateway: Filllevel conversion corrected

git-svn-id: https://svn.fhem.de/fhem/trunk@17393 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
eisler 2018-09-23 14:16:58 +00:00
parent 485aec5008
commit 412f07db2c
2 changed files with 2 additions and 1 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: 12_HProtocolGateway: Filllevel conversion corrected
- bugfix: 57_Calendar.pm: make ical file work again
- change: 34_ESPEasy: get/set cmd handling rewritten, more supported ESP
Easy cmds, user defined cmds/mappings, nfx plugin handling

View File

@ -363,7 +363,7 @@ sub HProtocolGateway_Tank($$$) {
}
close $fh;
my $messwert = $filllevel/10;
my $messwert = $filllevel/100;
my $volume = 0;
foreach my $level (sort keys %TankChartHash) {