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

98_ArduCounter.pm: changed default interval settings

git-svn-id: https://svn.fhem.de/fhem/trunk@19204 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
StefanStrobel 2019-04-17 08:52:35 +00:00
parent a45a81bccd
commit 9a10888b94

View File

@ -577,7 +577,7 @@ sub ArduCounter_ConfigureDevice($)
my $iAttr = AttrVal($name, "interval", "");
if (!$iAttr) {
$iAttr = "30 60 2 2";
$iAttr = "30 600 2 2";
Log3 $name, 5, "$name: ConfigureDevice: interval attr not set - take default $iAttr";
}
if ($iAttr =~ /^(\d+) (\d+) ?(\d+)? ?(\d+)?$/) {
@ -1494,8 +1494,8 @@ sub ArduCounter_HandleHistory($$$$)
if ($act eq "C") {$action = "count"}
elsif ($act eq "G") {$action = "gap"}
elsif ($act eq "R") {$action = "reject"}
elsif ($act eq "X") {$action = "ignore drop"}
elsif ($act eq "P") {$action = "ignore peak"}
elsif ($act eq "X") {$action = "ignore spike"}
elsif ($act eq "P") {$action = "ignore drop"}
my $histLine = sprintf ("%6s", $seq) . ' ' . $fTime . " $pinName " .
sprintf ("%7s", sprintf("%.3f", $len/1000)) . " seconds at $level -> $action";
Log3 $name, 5, "$name: HandleHistory $histLine ($he)";