From a01bb07644d143fd4549bf58b58db15bd61f1eff Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Thu, 24 Sep 2009 18:08:14 +0000 Subject: [PATCH] Updated as wished by Juergen git-svn-id: https://svn.fhem.de/fhem/trunk@442 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/docs/commandref.html | 6 ++++-- fhem/docs/faq.html | 25 +++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/fhem/docs/commandref.html b/fhem/docs/commandref.html index 3a9f6066b..ed723e95e 100644 --- a/fhem/docs/commandref.html +++ b/fhem/docs/commandref.html @@ -186,7 +186,8 @@ use the client form of fhem.pl (described above).
Multiple fhem commands are separated by semicolon (;). In order to use semicolon in perl code or shell programs, they have to be escaped by the double semicolon -(;;).
+(;;). See the Notes section of the notify +chapter on command parameters and escape rules.
E.g. the following first command switches Lamp1 off at 07:00 and Lamp2 immediately (at the point of definition), the second one switches both lamps @@ -1491,7 +1492,7 @@ A line ending with \ will be concatenated with the next one, so long lines result of incomplete or buggy code
  • Currently supported devices are the HMS100-T HMS100-TF HMS100-WD - HMS100-MG HMS100-TFK HMS100-CO HMS100-FIT RM100-2
  • + HMS100-MG HMS100-TFK HMS100-CO HMS100-FIT RM100-2 RM100-3
  • The housecode of the HMS devices may change if the battery is renewed. In order to make life easier, you can define a "wildcard" device for each @@ -1965,6 +1966,7 @@ A line ending with \ will be concatenated with the next one, so long lines This module services messages received by the FHZ device, if you use one of the other alternetives, see the WS300 or CUL_WS entries.
    + Note: The KS555 is also reported to work.

    diff --git a/fhem/docs/faq.html b/fhem/docs/faq.html index 5d2bd8ad3..73287b1ab 100644 --- a/fhem/docs/faq.html +++ b/fhem/docs/faq.html @@ -66,6 +66,8 @@ reconnected. My log shows "USB device /dev/elv_fhz1300pc disconnected, waiting t What is wrong with my USB?
    +19. How do I set the dim100% from the at command?
    +

    @@ -417,6 +419,29 @@ See USB compendium for help.
    + +19. How do I set the dim100% from the at command? +
      + As the % and @ characters are special, they have to be escaped. See the + following list (copied here from the commandref.html, notify command + description).

      + +
    • The character % will be replaced with the received event, + e.g. with on or off or measured-temp: 21.7 + (Celsius)
      It is advisable to put the % into double + quotes, else the shell may get a syntax error.
    • + +
    • The character @ will be replaced with the device + name.
    • + +
    • To use % or @ in the text itself, use the double mode (%% or @@).
    • + +
    • Instead of % and @, the parameters + %EVENT (same as %), %NAME + (same as @) and %TYPE (contains the device + type, e.g. FHT) can be used. A single % + looses its special meaning if any of these parameters appears in the + definition.