mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
modified such that changes of the state reading never generate events
git-svn-id: https://svn.fhem.de/fhem/trunk@2531 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
60936c48c1
commit
bbf80de275
@ -23,11 +23,6 @@
|
|||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
# Todos:
|
|
||||||
# - stateFormat via Interface
|
|
||||||
# - warum wird jeder Wert 2x geloggt?
|
|
||||||
# ==> bitte prüfen ob das an der fehlenden UnDefFn gelegen hat!
|
|
||||||
|
|
||||||
package main;
|
package main;
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
@ -493,7 +488,7 @@ OWDevice_UpdateValues($) {
|
|||||||
readingsBulkUpdate($hash,"location",$location);
|
readingsBulkUpdate($hash,"location",$location);
|
||||||
}
|
}
|
||||||
$state =~ s/\s+$//;
|
$state =~ s/\s+$//;
|
||||||
readingsBulkUpdate($hash,"state",$state);
|
readingsBulkUpdate($hash,"state",$state,0);
|
||||||
readingsEndUpdate($hash,1);
|
readingsEndUpdate($hash,1);
|
||||||
}
|
}
|
||||||
InternalTimer(int(gettimeofday())+$hash->{fhem}{interval}, "OWDevice_UpdateValues", $hash, 0)
|
InternalTimer(int(gettimeofday())+$hash->{fhem}{interval}, "OWDevice_UpdateValues", $hash, 0)
|
||||||
@ -640,7 +635,7 @@ OWDevice_Define($$)
|
|||||||
readingsBeginUpdate($hash);
|
readingsBeginUpdate($hash);
|
||||||
readingsBulkUpdate($hash,"id",$id);
|
readingsBulkUpdate($hash,"id",$id);
|
||||||
readingsBulkUpdate($hash,"present",$present);
|
readingsBulkUpdate($hash,"present",$present);
|
||||||
readingsBulkUpdate($hash,"state","present: $present");
|
readingsBulkUpdate($hash,"state","present: $present",0);
|
||||||
readingsBulkUpdate($hash,"location",$location);
|
readingsBulkUpdate($hash,"location",$location);
|
||||||
readingsEndUpdate($hash,1);
|
readingsEndUpdate($hash,1);
|
||||||
}
|
}
|
||||||
@ -706,6 +701,7 @@ OWDevice_Define($$)
|
|||||||
<br><br>
|
<br><br>
|
||||||
This module is completely unrelated to the 1-wire modules with names all in uppercase.
|
This module is completely unrelated to the 1-wire modules with names all in uppercase.
|
||||||
<br><br>
|
<br><br>
|
||||||
|
<b>Note:</b>The state reading never triggers events to avoid confusion.<br><br>
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
<ul>
|
<ul>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user