mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-04 17:08:43 +00:00
controls_fhem.txt: fhemupdate checkin
git-svn-id: https://svn.fhem.de/fhem/trunk@12802 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
8bd7371838
commit
1a13fe6cd2
1862
fhem/controls_fhem.txt
Normal file
1862
fhem/controls_fhem.txt
Normal file
File diff suppressed because it is too large
Load Diff
@ -47,9 +47,9 @@
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
Skip this section if you installed fhem via the Debian <a
|
Skip this section if you installed fhem via the Debian <a
|
||||||
href="http://fhem.de/fhem-=VERS=.deb">package</a>, the Fritz!Box 7390
|
href="http://fhem.de/fhem-5.3.deb">package</a>, the Fritz!Box 7390
|
||||||
<a href="http://fhem.de/fhem-=VERS=-fb7390.image">image</a>, or the FB
|
<a href="http://fhem.de/fhem-5.3-fb7390.image">image</a>, or the FB
|
||||||
7170/7270 <a href="http://fhem.de/fhem-=VERS=-fb7270.zip">zip file</a>.
|
7170/7270 <a href="http://fhem.de/fhem-5.3-fb7270.zip">zip file</a>.
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
||||||
Many fhem installations access the "outer world" via a USB device
|
Many fhem installations access the "outer world" via a USB device
|
||||||
|
@ -41,8 +41,8 @@
|
|||||||
<a name="starting"></a>
|
<a name="starting"></a>
|
||||||
<h3>Mit FHEM beginnen</h3>
|
<h3>Mit FHEM beginnen</h3>
|
||||||
<ul>
|
<ul>
|
||||||
Diesen Abschnitt können Sie überspringen wenn Sie FHEM entweder mittels eines Debian-<a href="http://fhem.de/fhem-=VERS=.deb">Paketes</a> oder mittels
|
Diesen Abschnitt können Sie überspringen wenn Sie FHEM entweder mittels eines Debian-<a href="http://fhem.de/fhem-5.3.deb">Paketes</a> oder mittels
|
||||||
einer <a href="http://fhem.de/fhem-=VERS=-fb7390.image">Imagedatei</a> auf der FRITZ!Box oder mittels des <a href="http://fhem.de/fhem-=VERS=-fb7270.zip">Zip-Files</a> für die FRITZ!Box 7170/7270
|
einer <a href="http://fhem.de/fhem-5.3-fb7390.image">Imagedatei</a> auf der FRITZ!Box oder mittels des <a href="http://fhem.de/fhem-5.3-fb7270.zip">Zip-Files</a> für die FRITZ!Box 7170/7270
|
||||||
installiert haben.
|
installiert haben.
|
||||||
<p>Viele FHEM-Installationen verbinden die Außenwelt über ein USB-Gerät welches mit dem FHEM-Rechner verbunden ist (diese
|
<p>Viele FHEM-Installationen verbinden die Außenwelt über ein USB-Gerät welches mit dem FHEM-Rechner verbunden ist (diese
|
||||||
Geräte sind z.B. CUL, FHZ1x00, TUL, EUL etc). Diese Installationen benötigen
|
Geräte sind z.B. CUL, FHZ1x00, TUL, EUL etc). Diese Installationen benötigen
|
||||||
|
18
fhem/fhem.pl
18
fhem/fhem.pl
@ -4188,18 +4188,26 @@ readingsBulkUpdate($$$@)
|
|||||||
if( $eocr
|
if( $eocr
|
||||||
&& $eocrv[0] =~ m/.*:(.*)/ ) {
|
&& $eocrv[0] =~ m/.*:(.*)/ ) {
|
||||||
my $threshold = $1;
|
my $threshold = $1;
|
||||||
|
my $ov = $value;
|
||||||
|
|
||||||
if($value =~ m/([\d\.\-eE]+)/ && looks_like_number($1)) { #41083, #62190
|
$value =~ s/[^\d\.\-eE]//g; # We expect only numbers here.
|
||||||
my $mv = $1;
|
my $isNum = looks_like_number($value);
|
||||||
|
if(!$isNum) { # Forum #41083
|
||||||
|
$value = $ov;
|
||||||
|
$value =~ s/[^\d\.\-]//g;
|
||||||
|
$isNum = looks_like_number($value);
|
||||||
|
}
|
||||||
|
if($isNum) {
|
||||||
my $last_value = $hash->{".attreocr-threshold$reading"};
|
my $last_value = $hash->{".attreocr-threshold$reading"};
|
||||||
if( !defined($last_value) ) {
|
if( !defined($last_value) ) {
|
||||||
$hash->{".attreocr-threshold$reading"} = $mv;
|
$hash->{".attreocr-threshold$reading"} = $value;
|
||||||
} elsif( abs($mv - $last_value) < $threshold ) {
|
} elsif( abs($value-$last_value) < $threshold ) {
|
||||||
$eocr = 0;
|
$eocr = 0;
|
||||||
} else {
|
} else {
|
||||||
$hash->{".attreocr-threshold$reading"} = $mv;
|
$hash->{".attreocr-threshold$reading"} = $value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$value = $ov;
|
||||||
}
|
}
|
||||||
|
|
||||||
# determine if an event should be created:
|
# determine if an event should be created:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user