git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@9000 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme1968
2015-07-28 17:12:40 +00:00
parent b353610293
commit edc1915d65

View File

@@ -119,9 +119,12 @@ readingsProxy_update($$)
$value = $value_fn if( $value_fn );
}
#readingsSingleUpdate($hash, "state", $value, 1)
readingsSingleUpdate($hash, "state", $value, 0);
DoTrigger( $name, "$value" );
if( AttrVal($name, 'event-on-change-reading', undef ) ) {
readingsSingleUpdate($hash, 'state', $value, 1)
} else {
readingsSingleUpdate($hash, 'state', $value, 0);
DoTrigger( $name, $value );
}
}
sub