2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 03:06:37 +00:00

HMInfo: correct RSSImin count

git-svn-id: https://svn.fhem.de/fhem/trunk@11872 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2016-07-31 16:29:33 +00:00
parent 6cafdad0a9
commit 4949f7eed7

View File

@ -279,7 +279,7 @@ sub HMinfo_status($){##########################################################
foreach (keys %{$ehash->{helper}{rssi}}){
next if($_ !~ m /at_.*$ehash->{IODev}->{NAME}/ );#ignore unused IODev
$rssiMin{$eName} = $ehash->{helper}{rssi}{$_}{min}
if ($rssiMin{$eName} < $ehash->{helper}{rssi}{$_}{min});
if ($rssiMin{$eName} > $ehash->{helper}{rssi}{$_}{min});
}
}
}