mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-04 11:26:55 +00:00
612 lines
21 KiB
Perl
Executable File
612 lines
21 KiB
Perl
Executable File
##############################################
|
|
# $Id$
|
|
package main;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use vars qw($FW_ME); # webname (default is fhem)
|
|
|
|
#####################################
|
|
sub
|
|
notify_Initialize($)
|
|
{
|
|
my ($hash) = @_;
|
|
|
|
$hash->{DefFn} = "notify_Define";
|
|
$hash->{NotifyFn} = "notify_Exec";
|
|
$hash->{AttrFn} = "notify_Attr";
|
|
$hash->{AttrList} = "disable:0,1 disabledForIntervals forwardReturnValue:0,1 showtime:0,1 addStateEvent:0,1";
|
|
$hash->{SetFn} = "notify_Set";
|
|
$hash->{StateFn} = "notify_State";
|
|
$hash->{FW_detailFn} = "notify_fhemwebFn";
|
|
}
|
|
|
|
|
|
#####################################
|
|
sub
|
|
notify_Define($$)
|
|
{
|
|
my ($hash, $def) = @_;
|
|
my ($name, $type, $re, $command) = split("[ \t]+", $def, 4);
|
|
|
|
if(!$command) {
|
|
if($hash->{OLDDEF}) { # Called from modify, where command is optional
|
|
(undef, $command) = split("[ \t]+", $hash->{OLDDEF}, 2);
|
|
$hash->{DEF} = "$re $command";
|
|
} else {
|
|
return "Usage: define <name> notify <regexp> <command>";
|
|
}
|
|
}
|
|
|
|
# Checking for misleading regexps
|
|
return "Bad regexp: starting with *" if($re =~ m/^\*/);
|
|
eval { "Hallo" =~ m/^$re$/ };
|
|
return "Bad regexp: $@" if($@);
|
|
$hash->{REGEXP} = $re;
|
|
$hash->{".COMMAND"} = $command;
|
|
|
|
my $doTrigger = ($name !~ m/^$re$/); # Forum #34516
|
|
readingsSingleUpdate($hash, "state", "active", $doTrigger);
|
|
notifyRegexpChanged($hash, $re);
|
|
|
|
return undef;
|
|
}
|
|
|
|
#####################################
|
|
sub
|
|
notify_Exec($$)
|
|
{
|
|
my ($ntfy, $dev) = @_;
|
|
|
|
my $ln = $ntfy->{NAME};
|
|
return "" if(IsDisabled($ln));
|
|
|
|
my $n = $dev->{NAME};
|
|
my $re = $ntfy->{REGEXP};
|
|
my $events = deviceEvents($dev, AttrVal($ln, "addStateEvent", 0));
|
|
return if(!$events); # Some previous notify deleted the array.
|
|
my $max = int(@{$events});
|
|
my $t = $dev->{TYPE};
|
|
|
|
my $ret = "";
|
|
for (my $i = 0; $i < $max; $i++) {
|
|
my $s = $events->[$i];
|
|
$s = "" if(!defined($s));
|
|
my $found = ($n =~ m/^$re$/ || "$n:$s" =~ m/^$re$/);
|
|
if(!$found && AttrVal($n, "eventMap", undef)) {
|
|
my @res = ReplaceEventMap($n, [$n,$s], 0);
|
|
shift @res;
|
|
$s = join(" ", @res);
|
|
$found = ("$n:$s" =~ m/^$re$/);
|
|
}
|
|
if($found) {
|
|
Log3 $ln, 5, "Triggering $ln";
|
|
my %specials= (
|
|
"%NAME" => $n,
|
|
"%TYPE" => $t,
|
|
"%EVENT" => $s
|
|
);
|
|
my $exec = EvalSpecials($ntfy->{".COMMAND"}, %specials);
|
|
|
|
Log3 $ln, 4, "$ln exec $exec";
|
|
my $r = AnalyzeCommandChain(undef, $exec);
|
|
Log3 $ln, 3, "$ln return value: $r" if($r);
|
|
$ret .= " $r" if($r);
|
|
$ntfy->{STATE} =
|
|
AttrVal($ln,'showtime',1) ? $dev->{NTFY_TRIGGERTIME} : 'active';
|
|
}
|
|
}
|
|
|
|
return $ret if(AttrVal($ln, "forwardReturnValue", 0));
|
|
return undef;
|
|
}
|
|
|
|
sub
|
|
notify_Attr(@)
|
|
{
|
|
my @a = @_;
|
|
my $do = 0;
|
|
|
|
if($a[0] eq "set" && $a[2] eq "disable") {
|
|
$do = (!defined($a[3]) || $a[3]) ? 1 : 2;
|
|
}
|
|
$do = 2 if($a[0] eq "del" && (!$a[2] || $a[2] eq "disable"));
|
|
return if(!$do);
|
|
|
|
readingsSingleUpdate($defs{$a[1]}, "state", $do==1 ? "disabled":"active", 1);
|
|
return undef;
|
|
}
|
|
|
|
###################################
|
|
|
|
sub
|
|
notify_Set($@)
|
|
{
|
|
my ($hash, @a) = @_;
|
|
my $me = $hash->{NAME};
|
|
|
|
return "no set argument specified" if(int(@a) < 2);
|
|
my %sets = (addRegexpPart=>2, removeRegexpPart=>1, inactive=>0, active=>0);
|
|
|
|
my $cmd = $a[1];
|
|
return "Unknown argument $cmd, choose one of " # No dropdown in FHEMWEB
|
|
if(!defined($sets{$cmd}));
|
|
return "$cmd needs $sets{$cmd} parameter(s)" if(@a-$sets{$cmd} != 2);
|
|
|
|
if($cmd eq "addRegexpPart") {
|
|
my %h;
|
|
my $re = "$a[2]:$a[3]";
|
|
map { $h{$_} = 1 } split(/\|/, $hash->{REGEXP});
|
|
$h{$re} = 1;
|
|
$re = join("|", sort keys %h);
|
|
return "Bad regexp: starting with *" if($re =~ m/^\*/);
|
|
eval { "Hallo" =~ m/^$re$/ };
|
|
return "Bad regexp: $@" if($@);
|
|
$hash->{REGEXP} = $re;
|
|
$hash->{DEF} = "$re ".$hash->{".COMMAND"};
|
|
notifyRegexpChanged($hash, $re);
|
|
|
|
} elsif($cmd eq "removeRegexpPart") {
|
|
my %h;
|
|
map { $h{$_} = 1 } split(/\|/, $hash->{REGEXP});
|
|
return "Cannot remove regexp part: not found" if(!$h{$a[2]});
|
|
return "Cannot remove last regexp part" if(int(keys(%h)) == 1);
|
|
delete $h{$a[2]};
|
|
my $re = join("|", sort keys %h);
|
|
return "Bad regexp: starting with *" if($re =~ m/^\*/);
|
|
eval { "Hallo" =~ m/^$re$/ };
|
|
return "Bad regexp: $@" if($@);
|
|
$hash->{REGEXP} = $re;
|
|
$hash->{DEF} = "$re ".$hash->{".COMMAND"};
|
|
notifyRegexpChanged($hash, $re);
|
|
|
|
} elsif($cmd eq "inactive") {
|
|
readingsSingleUpdate($hash, "state", "inactive", 1);
|
|
|
|
}
|
|
elsif($cmd eq "active") {
|
|
readingsSingleUpdate($hash, "state", "active", 1)
|
|
if(!AttrVal($me, "disable", undef));
|
|
}
|
|
|
|
return undef;
|
|
}
|
|
|
|
#############
|
|
sub
|
|
notify_State($$$$)
|
|
{
|
|
my ($hash, $tim, $vt, $val) = @_;
|
|
|
|
return undef if($vt ne "state" || $val ne "inactive");
|
|
readingsSingleUpdate($hash, "state", "inactive", 1);
|
|
return undef;
|
|
}
|
|
|
|
|
|
#########################
|
|
sub
|
|
notify_fhemwebFn($$$$)
|
|
{
|
|
my ($FW_wname, $d, $room, $pageHash) = @_; # pageHash is set for summaryFn.
|
|
my $hash = $defs{$d};
|
|
|
|
my $ret .= "<br>Regexp wizard";
|
|
my $row=0;
|
|
$ret .= "<br><table class=\"block wide\">";
|
|
my @ra = split(/\|/, $hash->{REGEXP});
|
|
if(@ra > 1) {
|
|
foreach my $r (@ra) {
|
|
$ret .= "<tr class=\"".(($row++&1)?"odd":"even")."\">";
|
|
my $cmd = "cmd.X= set $d removeRegexpPart&val.X=$r"; # =.set: avoid JS
|
|
$ret .= "<td>$r</td>";
|
|
$ret .= FW_pH("$cmd&detail=$d", "removeRegexpPart", 1,undef,1);
|
|
$ret .= "</tr>";
|
|
}
|
|
}
|
|
|
|
my @et = devspec2array("TYPE=eventTypes");
|
|
if(!@et) {
|
|
$ret .= FW_pH("$FW_ME/docs/commandref.html#eventTypes",
|
|
"To add a regexp an eventTypes definition is needed",
|
|
1, undef, 1);
|
|
} else {
|
|
my %dh;
|
|
my $etList = AnalyzeCommand(undef, "get $et[0] list");
|
|
$etList = "" if(!$etList);
|
|
foreach my $l (split("\n", $etList)) {
|
|
my @a = split(/[ \r\n]/, $l);
|
|
$a[1] = "" if(!defined($a[1]));
|
|
$a[1] =~ s/\.\*//g;
|
|
$a[1] =~ s/,.*//g;
|
|
next if(@a < 2);
|
|
$dh{$a[0]}{".*"} = 1;
|
|
$dh{$a[0]}{$a[1].".*"} = 1;
|
|
}
|
|
my $list = "";
|
|
foreach my $dev (sort keys %dh) {
|
|
$list .= " $dev:" . join(",", sort keys %{$dh{$dev}});
|
|
}
|
|
$list =~ s/(['"])/./g;
|
|
|
|
$ret .= "<tr class=\"".(($row++&1)?"odd":"even")."\">";
|
|
$ret .= '<td colspan="2">';
|
|
$ret .= FW_detailSelect($d, "set", $list, "addRegexpPart");
|
|
$ret .= "</td></tr>";
|
|
}
|
|
$ret .= "</table>";
|
|
|
|
return $ret;
|
|
}
|
|
|
|
1;
|
|
|
|
=pod
|
|
=begin html
|
|
|
|
<a name="notify"></a>
|
|
<h3>notify</h3>
|
|
<ul>
|
|
<br>
|
|
|
|
<a name="notifydefine"></a>
|
|
<b>Define</b>
|
|
<ul>
|
|
<code>define <name> notify <pattern> <command></code>
|
|
<br><br>
|
|
Execute a command when received an event for the <a
|
|
|
|
href="#define">definition</a> <code><pattern></code>. If
|
|
<command> is enclosed in {}, then it is a perl expression, if it is
|
|
enclosed in "", then it is a shell command, else it is a "plain" fhem.pl
|
|
command (chain). See the <a href="#trigger">trigger</a> command for
|
|
testing it.
|
|
|
|
Examples:
|
|
<ul>
|
|
<code>define b3lampV1 notify btn3 set lamp $EVENT</code><br>
|
|
<code>define b3lampV2 notify btn3 { fhem "set lamp $EVENT" }</code><br>
|
|
<code>define b3lampV3 notify btn3 "/usr/local/bin/setlamp "$EVENT""</code><br>
|
|
<code>define b3lampV3 notify btn3 set lamp1 $EVENT;;set lamp2 $EVENT</code><br>
|
|
<code>define wzMessLg notify wz:measured.* "/usr/local/bin/logfht $NAME "$EVENT""</code><br>
|
|
<code>define LogUndef notify global:UNDEFINED.* "send-me-mail.sh "$EVENT""</code><br>
|
|
</ul>
|
|
<br>
|
|
|
|
Notes:
|
|
<ul>
|
|
<li><code><pattern></code> is either the name of the triggering
|
|
device, or <code>devicename:event</code>.</li>
|
|
|
|
<li><code><pattern></code> must completely (!)
|
|
match either the device name, or the compound of the device name and
|
|
the event. To identify the events use the inform command from the
|
|
telnet prompt or the "Event Monitor" link in the browser
|
|
(FHEMWEB), and wait for the event to be printed. See also the
|
|
eventTypes device.</li>
|
|
|
|
<li>in the command section you can access the event:
|
|
<ul>
|
|
<li>The variable $EVENT will contain the complete event, e.g.
|
|
<code>measured-temp: 21.7 (Celsius)</code></li>
|
|
<li>$EVTPART0,$EVTPART1,$EVTPART2,etc contain the space separated event
|
|
parts (e.g. <code>$EVTPART0="measured-temp:", $EVTPART1="21.7",
|
|
$EVTPART2="(Celsius)"</code>. This data is available as a local
|
|
variable in perl, as environment variable for shell scripts, and will
|
|
be textually replaced for FHEM commands.</li>
|
|
<li>$NAME contains the device triggering the event, e.g.
|
|
<code>myFht</code></li>
|
|
</ul></li>
|
|
|
|
<li>Note: the following is deprecated and will be removed in a future
|
|
release. The described replacement is attempted if none of the above
|
|
variables ($NAME/$EVENT/etc) found in the command.
|
|
<ul>
|
|
<li>The character <code>%</code> will be replaced with the received
|
|
event, e.g. with <code>on</code> or <code>off</code> or
|
|
<code>measured-temp: 21.7 (Celsius)</code><br> It is advisable to put
|
|
the <code>%</code> into double quotes, else the shell may get a syntax
|
|
error.</li>
|
|
|
|
<li>The character <code>@</code> will be replaced with the device
|
|
name.</li>
|
|
|
|
<li>To use % or @ in the text itself, use the double mode (%% or
|
|
@@).</li>
|
|
|
|
<li>Instead of <code>%</code> and <code>@</code>, the parameters
|
|
<code>%EVENT</code> (same as <code>%</code>), <code>%NAME</code> (same
|
|
as <code>@</code>) and <code>%TYPE</code> (contains the device type,
|
|
e.g. <code>FHT</code>) can be used. The space separated event "parts"
|
|
are available as %EVTPART0, %EVTPART1, etc. A single <code>%</code>
|
|
looses its special meaning if any of these parameters appears in the
|
|
definition.</li>
|
|
</ul></li>
|
|
|
|
<li>Following special events will be generated for the device "global"
|
|
<ul>
|
|
<li>INITIALIZED after initialization is finished.</li>
|
|
<li>REREADCFG after the configuration is reread.</li>
|
|
<li>SAVE before the configuration is saved.</li>
|
|
<li>SHUTDOWN before FHEM is shut down.</li>
|
|
<li>DEFINED <devname> after a device is defined.</li>
|
|
<li>DELETED <devname> after a device was deleted.</li>
|
|
<li>RENAMED <old> <new> after a device was renamed.</li>
|
|
<li>UNDEFINED <defspec> upon reception of a message for an
|
|
undefined device.</li>
|
|
</ul></li>
|
|
|
|
<li>Notify can be used to store macros for manual execution. Use the <a
|
|
href="#trigger">trigger</a> command to execute the macro.
|
|
E.g.<br>
|
|
<code>fhem> define MyMacro notify MyMacro { Log 1, "Hello"}</code><br>
|
|
<code>fhem> trigger MyMacro</code><br>
|
|
</li>
|
|
|
|
</ul>
|
|
</ul>
|
|
<br>
|
|
|
|
|
|
<a name="notifyset"></a>
|
|
<b>Set </b>
|
|
<ul>
|
|
<li>addRegexpPart <device> <regexp><br>
|
|
add a regexp part, which is constructed as device:regexp. The parts
|
|
are separated by |. Note: as the regexp parts are resorted, manually
|
|
constructed regexps may become invalid. </li>
|
|
<li>removeRegexpPart <re><br>
|
|
remove a regexp part. Note: as the regexp parts are resorted, manually
|
|
constructed regexps may become invalid.<br>
|
|
The inconsistency in addRegexpPart/removeRegexPart arguments originates
|
|
from the reusage of javascript functions.</li>
|
|
<li>inactive<br>
|
|
Inactivates the current device. Note the slight difference to the
|
|
disable attribute: using set inactive the state is automatically saved
|
|
to the statefile on shutdown, there is no explicit save necesary.<br>
|
|
This command is intended to be used by scripts to temporarily
|
|
deactivate the notify.<br>
|
|
The concurrent setting of the disable attribute is not recommended.</li>
|
|
<li>active<br>
|
|
Activates the current device (see inactive).</li>
|
|
</ul>
|
|
<br>
|
|
|
|
|
|
<a name="notifyget"></a>
|
|
<b>Get</b> <ul>N/A</ul><br>
|
|
|
|
<a name="notifyattr"></a>
|
|
<b>Attributes</b>
|
|
<ul>
|
|
<li><a href="#disable">disable</a></li>
|
|
<li><a href="#disabledForIntervals">disabledForIntervals</a></li>
|
|
|
|
<a name="forwardReturnValue"></a>
|
|
<li>forwardReturnValue<br>
|
|
Forward the return value of the executed command to the caller,
|
|
default is disabled (0). If enabled (1), then e.g. a set command which
|
|
triggers this notify will also return this value. This can cause e.g
|
|
FHEMWEB to display this value, when clicking "on" or "off", which is
|
|
often not intended.</li>
|
|
|
|
<a name="addStateEvent"></a>
|
|
<li>addStateEvent<br>
|
|
The event associated with the state Reading is special, as the "state: "
|
|
string is stripped, i.e $EVENT is not "state: on" but just "on". In some
|
|
circumstances it is desireable to get an additional event where "state: "
|
|
is not stripped. In such a case the addStateEvent attribute should be
|
|
set to 1 (default is 0, i.e. do not generate an additional event).<br>
|
|
|
|
Note 1: you have to set this attribute for the event "receiver", i.e.
|
|
notify, FileLog, etc.<br>
|
|
|
|
Note 2: this attribute will only work for events generated by devices
|
|
supporting the <a href="#readingFnAttributes">readingFnAttributes</a>.
|
|
</li>
|
|
</ul>
|
|
<br>
|
|
|
|
</ul>
|
|
|
|
=end html
|
|
|
|
=begin html_DE
|
|
|
|
<a name="notify"></a>
|
|
<h3>notify</h3>
|
|
<ul>
|
|
<br>
|
|
|
|
<a name="notifydefine"></a>
|
|
<b>Define</b>
|
|
<ul>
|
|
<code>define <name> notify <Suchmuster> <Anweisung></code>
|
|
<br><br>
|
|
Führt eine oder mehrere Anweisungen aus, wenn ein Event generiert
|
|
wurde, was dem <Suchmuster> (Gerätename oder
|
|
Gerätename:Event) entspricht.
|
|
|
|
Die Anweisung ist einer der FHEM <a href="#command">Befehlstypen</a>.
|
|
Zum Test dient das <a href="#trigger">trigger</a>-Kommando.
|
|
<br><br>
|
|
|
|
Beispiele:
|
|
<ul>
|
|
<code>define b3lampV1 notify btn3 set lamp $EVENT</code><br>
|
|
<code>define b3lampV2 notify btn3 { fhem "set lamp $EVENT" }</code><br>
|
|
<code>define b3lampV3 notify btn3 "/usr/local/bin/setlamp
|
|
"$EVENT""</code><br>
|
|
|
|
<code>define b3lampV3 notify btn3 set lamp1 $EVENT;;set lamp2
|
|
$EVENT</code><br>
|
|
|
|
<code>define wzMessLg notify wz:measured.* "/usr/local/bin/logfht $NAME
|
|
"$EVENT""</code><br>
|
|
|
|
<code>define LogUndef notify global:UNDEFINED.* "send-me-mail.sh
|
|
"$EVENT""</code><br>
|
|
|
|
</ul>
|
|
<br>
|
|
|
|
Hinweise:
|
|
<ul>
|
|
<li><code><Suchmuster></code> ist entweder der Name des
|
|
auslösenden ("triggernden") Gerätes oder die Kombination aus
|
|
Gerät und auslösendem Ereignis (Event)
|
|
<code>Gerätename:Event</code>.</li>
|
|
|
|
<li>Das <code><Suchmuster></code> muss exakt (!)
|
|
entweder dem Gerätenamen entsprechen oder der Zusammenfügung
|
|
aus Gerätename:Event. Events lassen sich mit "inform" in Telnet
|
|
oder durch Beobachtung des "Event-Monitors" in FHEMWEB ermitteln.</li>
|
|
|
|
<li>In der Anweisung von Notify kann das auslösende Ereignis (Event)
|
|
genutzt werden:
|
|
|
|
<ul>
|
|
<li>Die Anweisung $EVENT wird das komplette Ereignis (Event)
|
|
beinhalten, z.B. <code>measured-temp: 21.7 (Celsius)</code></li>
|
|
|
|
<li>$EVTPART0,$EVTPART1,$EVTPART2,etc enthalten die durch Leerzeichen
|
|
getrennten Teile des Events der Reihe nach (im Beispiel also
|
|
<code>$EVTPART0="measured-temp:", $EVTPART1="21.7",
|
|
$EVTPART2="(Celsius)"</code>.<br> Diese Daten sind verfügbar
|
|
als lokale Variablen in Perl, als Umgebungs-Variablen für
|
|
Shell-Scripts, und werden als Text ausgetauscht in
|
|
FHEM-Kommandos.</li>
|
|
|
|
<li>$NAME enthält den Namen des Ereignis auslösenden
|
|
Gerätes, z.B. <code>myFht</code></li>
|
|
</ul></li>
|
|
|
|
<li>Achtung: Folgende Vorgehensweise ist abgekündigt und wird in
|
|
einem zukünftigen Release von FHEM nicht mehr unterstützt.
|
|
Wenn keine der oben genannten Variablen ($NAME/$EVENT/usw.) in der
|
|
Anweisung gefunden wird, werden Platzhalter ersetzt.
|
|
|
|
<ul>
|
|
<li>Das Zeichen <code>%</code> wird ersetzt mit dem empfangenen
|
|
Ereignis (Event), z.B. mit <code>on</code> oder <code>off</code> oder
|
|
<code>measured-temp: 21.7 (Celsius)</code>.
|
|
</li>
|
|
|
|
<li>Das Zeichen <code>@</code> wird ersetzt durch den
|
|
Gerätenamen.</li>
|
|
|
|
<li>Um % oder @ im Text selbst benutzen zu können, müssen
|
|
sie verdoppelt werden (%% oder @@).</li>
|
|
|
|
<li>Anstelle von <code>%</code> und <code>@</code>, können die
|
|
Parameter <code>%EVENT</code> (funktionsgleich mit <code>%</code>),
|
|
<code>%NAME</code> (funktionsgleich mit <code>@</code>) und
|
|
<code>%TYPE</code> (enthält den Typ des Gerätes, z.B.
|
|
<code>FHT</code>) benutzt werden. Die von Leerzeichen unterbrochenen
|
|
Teile eines Ereignisses (Event) sind verfügbar als %EVTPART0,
|
|
%EVTPART1, usw. Ein einzeln stehendes <code>%</code> verliert seine
|
|
%oben beschriebene Bedeutung, falls auch nur einer dieser Parameter
|
|
%in der Definition auftaucht.</li>
|
|
|
|
</ul></li>
|
|
|
|
<li>Folgende spezielle Ereignisse werden für das Gerät "global"
|
|
erzeugt:
|
|
<ul>
|
|
<li>INITIALIZED sobald die Initialization vollständig ist.</li>
|
|
<li>REREADCFG nachdem die Konfiguration erneut eingelesen wurde.</li>
|
|
<li>SAVE bevor die Konfiguration gespeichert wird.</li>
|
|
<li>SHUTDOWN bevor FHEM heruntergefahren wird.</li>
|
|
<li>DEFINED <devname> nach dem Definieren eines
|
|
Gerätes.</li>
|
|
<li>DELETED <devname> nach dem Löschen eines
|
|
Gerätes.</li>
|
|
<li>RENAMED <old> <new> nach dem Umbenennen eines
|
|
Gerätes.</li>
|
|
<li>UNDEFINED <defspec> beim Auftreten einer Nachricht für
|
|
ein undefiniertes Gerät.</li>
|
|
</ul></li>
|
|
|
|
<li>Notify kann dazu benutzt werden, um Makros für eine manuelle
|
|
Ausführung zu speichern. Mit einem <a
|
|
href="#trigger">trigger</a> Kommando können solche Makros dann
|
|
ausgeführt werden. Z.B.<br> <code>fhem> define MyMacro notify
|
|
MyMacro { Log 1, "Hello"}</code><br> <code>fhem> trigger
|
|
MyMacro</code><br> </li>
|
|
|
|
</ul>
|
|
</ul>
|
|
<br>
|
|
|
|
|
|
<a name="notifyset"></a>
|
|
<b>Set </b>
|
|
<ul>
|
|
<li>addRegexpPart <device> <regexp><br>
|
|
Fügt ein regexp Teil hinzu, der als device:regexp aufgebaut ist.
|
|
Die Teile werden nach Regexp-Regeln mit | getrennt. Achtung: durch
|
|
hinzufügen können manuell erzeugte Regexps ungültig
|
|
werden.</li>
|
|
<li>removeRegexpPart <re><br>
|
|
Entfernt ein regexp Teil. Die Inkonsistenz von addRegexpPart /
|
|
removeRegexPart-Argumenten hat seinen Ursprung in der Wiederverwendung
|
|
von Javascript-Funktionen.</li>
|
|
<li>inactive<br>
|
|
Deaktiviert das entsprechende Gerät. Beachte den leichten
|
|
semantischen Unterschied zum disable Attribut: "set inactive"
|
|
wird bei einem shutdown automatisch in fhem.state gespeichert, es ist
|
|
kein save notwendig.<br>
|
|
Der Einsatzzweck sind Skripte, um das notify temporär zu
|
|
deaktivieren.<br>
|
|
Das gleichzeitige Verwenden des disable Attributes wird nicht empfohlen.
|
|
</li>
|
|
<li>active<br>
|
|
Aktiviert das entsprechende Gerät, siehe inactive.
|
|
</li>
|
|
</ul>
|
|
<br>
|
|
|
|
<a name="notifyget"></a>
|
|
<b>Get</b> <ul>N/A</ul><br>
|
|
|
|
<a name="notifyattr"></a>
|
|
<b>Attribute</b>
|
|
<ul>
|
|
<li><a href="#disable">disable</a></li>
|
|
<a name="forwardReturnValue"></a>
|
|
<li>forwardReturnValue<br>
|
|
Rückgabe der Werte eines ausgeführten Kommandos an den
|
|
Aufrufer. Die Voreinstellung ist 0 (ausgeschaltet), um weniger
|
|
Meldungen im Log zu haben.
|
|
</li>
|
|
|
|
<a name="addStateEvent"></a>
|
|
<li>addStateEvent<br>
|
|
Das mit dem state Reading verknüpfte Event ist speziell, da das
|
|
dazugehörige Prefix "state: " entfernt wird, d.h. $EVENT ist nicht
|
|
"state: on", sondern nur "on". In manchen Fällen ist es aber
|
|
erwünscht ein zusätzliches Event zu bekommen, wo "state: " nicht
|
|
entfernt ist. Für diese Fälle sollte addStateEvent auf 1
|
|
gesetzt werden, die Voreinstellung ist 0 (deaktiviert).<br>
|
|
|
|
Achtung:
|
|
<ul>
|
|
<li>dieses Attribut muss beim Empfänger (notify, FileLog, etc)
|
|
gesetzt werden.</li>
|
|
|
|
<li>dieses Attribut zeigt nur für solche Geräte-Events eine
|
|
Wirkung, die <a href="#readingFnAttributes">readingFnAttributes</a>
|
|
unterstützen.</li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
</ul>
|
|
<br>
|
|
|
|
</ul>
|
|
|
|
=end html_DE
|
|
|
|
=cut
|