2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

Firmware erweitert, Anzeige der Dauer des Parameter-holens erweitert

git-svn-id: https://svn.fhem.de/fhem/trunk@5444 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
oskarfessel 2014-04-05 09:37:26 +00:00
parent 48fff2e00a
commit b6847fbb04

View File

@ -49,8 +49,8 @@ sub LUXTRONIK2_doStatisticDelta ($$$$) ;
my $modulVersion = "2014-03-31";
#List of firmware versions that are known to be compatible with this modul
my $testedFirmware = "#V1.54C#V1.60#V1.69#";
my $compatibleFirmware = "#V1.54C#V1.60#V1.69#";
my $testedFirmware = "#V1.52#V1.54C#V1.60#V1.69#";
my $compatibleFirmware = "#V1.52#V1.54C#V1.60#V1.69#";
sub ########################################
LUXTRONIK2_Initialize($)
@ -838,7 +838,7 @@ LUXTRONIK2_UpdateDone($)
readingsBulkUpdate($hash, "deviceTimeCalc", $value);
my $delayDeviceTimeCalc=sprintf("%.0f",$a[29]-$a[22]);
readingsBulkUpdate($hash, "delayDeviceTimeCalc", $delayDeviceTimeCalc);
my $durationFetchReadings = sprintf("%.2f",$a[30]-$a[29]);
my $durationFetchReadings = sprintf("%.5f",$a[30]-$a[29]);
readingsBulkUpdate($hash, "durationFetchReadings", $durationFetchReadings);
#Remember min and max reading durations, will be reset when initializing the device
if ($hash->{fhem}{durationFetchReadingsMin} == 0 || $hash->{fhem}{durationFetchReadingsMin} > $durationFetchReadings) {