From a2791cea134f0f99cbd3304160bc8ec9c9593299 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Mon, 11 Jul 2011 07:23:33 +0000 Subject: [PATCH] Bugfix (by UliM) git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@939 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- docs/commandref.html | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/commandref.html b/docs/commandref.html index 89e91e3f4..a958c888b 100644 --- a/docs/commandref.html +++ b/docs/commandref.html @@ -5590,7 +5590,7 @@ Readings and STATE of temperature/humidity sensors are compatible with the CUL_W Double-Colon separated list of values. The values will be used to replace <L#> type of strings in the .gplot file, with # beginning at 1 (<L1>, <L2>, etc.). Each value will be evaluated as a perl - expression, so you have access e.g. to the $value hash.

+ expression, so you have access e.g. to the Value functions.

If the plotmode is gnuplot-scroll or SVG, you can also use the min, max, avg, cnt, sum, lastv (last value) and lastd (last date) values of the @@ -6065,7 +6065,7 @@ Readings and STATE of temperature/humidity sensors are compatible with the CUL_W If an entry in the holiday file matches the current day, then the STATE of this holiday instance displayed in the list command will be set to the holiday, else the state is set to the text none. Most - probably you'll want to query this value in some perl script: see $value in + probably you'll want to query this value in some perl script: see Value() in the perl section or the global attribute holiday2we.
The file will be reread once every night, to compute the value for the @@ -6943,10 +6943,9 @@ isday
  • The current value (the string you see in paranthesis in the output of the list command) is available in the value hash; to access it - use $value{<devicename>}
    - If you need the old value (and time) of the currently triggered device, - then you can access it with $oldvalue{$dev}{TIME} and - $oldvalue{$dev}{VAL}.
    + use Value("name"). If you need the old value (and time) of + the currently triggered device, then you can access it with + OldValue("name") and OldTimestamp("name").