From e54e564b87ee6829f7257d4b02ff85fc828328d7 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Tue, 12 Feb 2013 12:22:21 +0000 Subject: [PATCH] ReadingsVal added git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@2705 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- docs/faq.html | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/docs/faq.html b/docs/faq.html index 122a66325..8d01eb67d 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -251,9 +251,7 @@ Help me! we just can change it with
set FHZ FHTcode <hex-code> (1 byte, range 1 to 99)
  • Resync the FHT80b: Press PROG until "Sond" appears, then select "CEnt" - with the wheel, press PROG again, Select "nA" with the wheel, press PROG - again. For more details, see IP-Symcon Wiki (especially Fredje's comment) - and Contronics "Anmelden von Raumreglern FHT80b".
  • + with the wheel, press PROG again, Select "nA" with the wheel, press PROG @@ -383,8 +381,8 @@ messages from my FHT80b. How to switch back to the actuator:0% messages? You can automate it with the following notify:
       define lime_reset notify .*lime-protection {\
    -    $d = $defs{@}{READINGS}{"desired-temp"}{VAL};;\
    -    $m = $defs{@}{READINGS}{"measured-temp"}{VAL};;\
    +    $d = ReadingsVal("@", "desired-temp", 0);;\
    +    $m = ReadingsVal("@", "measured-temp", 0);;\
         if($m gt $d) {\
           fhem("set @ desired-temp 29");;\
           fhem("set @ desired-temp $d");;\
    @@ -427,22 +425,20 @@ messages from  my FHT80b. How to switch back to the actuator:0% messages?