2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

- Pest, Sun Apr 15 14:54:30 MEST 2007

- doc: fhem.pl and commandref.html (notifyon -> notify, correction of examples)


git-svn-id: https://svn.fhem.de/fhem/trunk@54 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
pest 2007-04-15 12:55:01 +00:00
parent b555ec3191
commit 9a4281059b
9 changed files with 17 additions and 13 deletions

View File

@ -324,3 +324,4 @@
- ==DATE== (4.1)
- doc: linux.html (private udev-rules, not 50-..., ATTRS)
- bugfix: setting devices with "-" in their name did not work
- doc: fhem.pl and commandref.html (notifyon -> notify, correction of examples)

View File

@ -84,3 +84,6 @@
- Pest, Sat Apr 14 14:21:00 MEST 2007
- doc: linux.html (private udev-rules, not 50-..., ATTRS)
- Pest, Sun Apr 15 14:54:30 MEST 2007
- doc: fhem.pl and commandref.html (notifyon -> notify, correction of examples)

View File

@ -732,13 +732,13 @@ split in multiple lines<br><br>
Examples:
<ul>
<code>notify btn3 set lamp %</code><br>
<code>notify btn3 { fhem "set lamp %" }</code><br>
<code>notify btn3 "/usr/local/bin/setlamp "%""</code><br>
<code>notify btn3 set lamp1 %;;set lamp2 %</code><br>
<code>notify wz:measured.* "/usr/local/bin/logfht @ "%""</code><br>
<code>notify .*H:.* {DbLog("@","%")}</code><br>
<code>notify UNDEFINED "send-me-mail.sh "%""</code><br>
<code>define b3lampV1 notify btn3 set lamp %</code><br>
<code>define b3lampV2 notify btn3 { fhem "set lamp %" }</code><br>
<code>define b3lampV3 notify btn3 "/usr/local/bin/setlamp "%""</code><br>
<code>define b3lampV3 notify btn3 set lamp1 %;;set lamp2 %</code><br>
<code>define wzMessLg notify wz:measured.* "/usr/local/bin/logfht @ "%""</code><br>
<code>define LogHToDB notify .*H:.* {DbLog("@","%")}</code><br>
<code>define LogUndef notify UNDEFINED "send-me-mail.sh "%""</code><br>
</ul>
<br>

View File

@ -11,7 +11,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity (min 1, max 5)
attr global port 7072 # our TCP/IP port (localhost only)
attr global modpath . # where our FHEM directory is
attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC

View File

@ -13,7 +13,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity
attr global port 7072 # our TCP/IP port (localhost only)
attr global modpath . # where our FHEM directory is
attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC

View File

@ -12,7 +12,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity
attr global port 7072 # our TCP/IP port (localhost only)
attr global modpath . # where our FHEM directory is
attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
define wz FHT 3232 # type FHT, transmitter code 3232 (default value)

View File

@ -8,7 +8,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity
attr global port 7072 # our TCP/IP port (localhost only)
attr global modpath . # where our FHEM directory is
attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
define wz FHT 3232 # type FHT, transmitter code 3232 (default value)

View File

@ -12,7 +12,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity (min 1, max 5)
attr global port 7072 # our TCP/IP port (localhost only)
attr global modpath . # where our FHEM directory is
attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC

View File

@ -150,7 +150,7 @@ my %cmds = (
"defattr" => { Fn=>"CommandDefAttr",
Hlp=>"<attrname> <attrvalue>,set attr for following definitions" },
"define" => { Fn=>"CommandDefine",
Hlp=>"<name> <type> <options>,define a device/at/notifyon entity" },
Hlp=>"<name> <type> <options>,define a device/at/notify entity" },
"delattr" => { Fn=>"CommandDelAttr",
Hlp=>"<name> [<attrname>],delete attribute <attrname> for <name>" },
"delete" => { Fn=>"CommandDelete",