$value -> Value

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@2704 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2013-02-12 12:13:00 +00:00
parent a5af031e7c
commit dbcdc41c00

View File

@@ -336,21 +336,21 @@ by fhem.pl?</h4>
<pre> <pre>
# Check simply the value. It is the same as seen in "list" # Check simply the value. It is the same as seen in "list"
fhem> {$value{myfht}} fhem> {Value(myfht)}
measured-temp: 23.8 (Celsius) measured-temp: 23.8 (Celsius)
# Get the second word, so we can compare it. # Get the second word, so we can compare it.
fhem> { my @a = split(" ", $value{myfht});; $a[1] } fhem> { my @a = split(" ", Value(myfht));; $a[1] }
23.8 23.8
# Set the ventilator on now, if its too hot. # Set the ventilator on now, if its too hot.
fhem> { my @a = split(" ", $value{myfht});; fhem("set ventilator on") if($a[1] > 25.0) } fhem> { my @a = split(" ", Value(myfht));; fhem("set ventilator on") if($a[1] > 25.0) }
# Now do this regularly # Now do this regularly
fhem> define chilldown at +*00:30:00 { my @a = split(" ", $value{myfht});; fhem("set ventilator on") if($a[1] > 25.0) } fhem> define chilldown at +*00:30:00 { my @a = split(" ", Value(myfht));; fhem("set ventilator on") if($a[1] > 25.0) }
# An alternative: # An alternative:
fhem> define chilldown at +*00:30:00 { fhem("set ventilator on") if($value{myfht} gt "measured-temp: 25.0") } fhem> define chilldown at +*00:30:00 { fhem("set ventilator on") if(Value(myfht) gt "measured-temp: 25.0") }
</pre> </pre>
</ul> </ul>