mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
fhem.pl: userreading name may contain -
git-svn-id: https://svn.fhem.de/fhem/trunk@5498 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
bc2851ed36
commit
02102ff8af
@ -492,9 +492,15 @@ A line ending with \ will be concatenated with the next one, so long lines
|
||||
<ul><code>attr myPowerMeter userReadings power
|
||||
differential { ReadingsVal("myPowerMeter","counters.A",0)/1250.0;; }
|
||||
</code></ul>
|
||||
Note: user readings with modifiers difference and differential store the
|
||||
Notes:
|
||||
<ul>
|
||||
<li>user readings with modifiers difference and differential store the
|
||||
calculated values internally. The user reading is set earliest at the
|
||||
second evaluation. Beware of stale values when changing definitions!
|
||||
second evaluation. Beware of stale values when changing
|
||||
definitions!</li>
|
||||
<li>the name of the defined Readings consists of alphanumeric characters
|
||||
with underscore (_) and the minus (-) sign.</li>
|
||||
</ul>
|
||||
</li><br>
|
||||
</ul>
|
||||
<br>
|
||||
|
@ -508,9 +508,13 @@ Zeilen erstreckende Befehle, indem man keine \ am Zeilenende eingeben muss.</p>
|
||||
attr myPowerMeter userReadings power differential
|
||||
{ ReadingsVal("myPowerMeter","counters.A",0)/1250.0}
|
||||
</code></ul>
|
||||
Achtung: Falls difference oder differential spezifiziert ist, dann werden
|
||||
für die Berechnung ältere Werte benötigt, d.h. der Wert wird
|
||||
frühestens beim zweiten Änderung gesetzt.
|
||||
Achtung:<ul>
|
||||
<li>Falls difference oder differential spezifiziert ist, dann werden
|
||||
für die Berechnung ältere Werte benötigt, d.h. der Wert
|
||||
wird frühestens beim zweiten Änderung gesetzt.</li>
|
||||
<li>der Name der definierten Readings besteht aus alphanumerischen
|
||||
Zeichen, Unterstrich (_) und Minus-Zeichen (-).</li>
|
||||
</ul>
|
||||
</li><br>
|
||||
|
||||
|
||||
|
@ -2166,7 +2166,7 @@ CommandAttr($$)
|
||||
my $arg= $a[2];
|
||||
|
||||
# matches myReading1[:trigger2] { codecode1 }
|
||||
my $regexi= '\s*(\w+)(:\S*)?\s+((\w+)\s+)?({.*?})\s*';
|
||||
my $regexi= '\s*([\w-]+)(:\S*)?\s+((\w+)\s+)?({.*?})\s*';
|
||||
my $regexo= '^(' . $regexi . ')(,\s*(.*))*$';
|
||||
|
||||
#Log 1, "arg is $arg";
|
||||
|
Loading…
Reference in New Issue
Block a user