mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-15 16:19:11 +00:00
00_Neuron.pm: added support for multiple physical deviced
10_NeuronPin.pm: added support for multiple physical deviced git-svn-id: https://svn.fhem.de/fhem/trunk@24902 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
420c4fabeb
commit
fa511cc9a7
@ -66,8 +66,8 @@ sub Neuron_Initialize(@) {
|
||||
$hash->{AttrFn} = 'Neuron_Attr';
|
||||
$hash->{NotifyFn} = 'Neuron_Notify';
|
||||
$hash->{AttrList} = "connection:websockets,polling poll_interval "
|
||||
."wsFilter:multiple-strict,ai,ao,input,led,relay,wd "
|
||||
."logicalDev:multiple-strict,ai,ao,input,led,relay,wd,temp "
|
||||
."wsFilter:multiple-strict,ai,ao,input,led,relay,wd,temp,unit_register "
|
||||
."logicalDev:multiple-strict,ai,ao,input,led,relay,wd,temp,unit_register "
|
||||
."$readingFnAttributes";
|
||||
return undef;
|
||||
}
|
||||
@ -97,7 +97,8 @@ sub Neuron_Set(@) {
|
||||
my ($hash, $name, $cmd, @args) = @_;
|
||||
my $sets = $hash->{HELPER}{SETS};
|
||||
if ($hash->{HELPER}{SETS} && index($hash->{HELPER}{SETS}, $cmd) != -1) { # dynamisch erzeugte outputs
|
||||
my ($dev, $circuit) = (split '_', $cmd, 2);
|
||||
my ($dev, $circuit) = Neuron_GetExt($hash, $cmd);
|
||||
#my ($dev, $circuit) = (split '_', $cmd, 2);
|
||||
my $value = (looks_like_number($args[0]) ? $args[0] : $setsP{$args[0]});
|
||||
if ($hash->{HELPER}{wsKey} && DevIo_IsOpen($hash)) {
|
||||
my $string = Neuron_wsEncode('{"cmd":"set", "dev":"'.$dev.'", "circuit":"'.$circuit.'", "value":"'.$value.'"}');
|
||||
@ -118,8 +119,6 @@ sub Neuron_Set(@) {
|
||||
}
|
||||
} elsif ($cmd eq "clearreadings") {
|
||||
fhem("deletereading $hash->{NAME} .*", 1);
|
||||
} elsif ($cmd eq "testdispatch") {
|
||||
Neuron_ParseWsResponse($hash, '{"dev":"temp","time":1527316294.23915,"temp":"23.4375","vis":"0.0002441","circuit":"2620531402000075","vad":"2.58","interval":15,"typ":"DS2438","humidity":51.9139754019274,"lost":false,"vdd":"5.34"}');
|
||||
} else {
|
||||
return "Unknown argument $cmd, choose one of clearreadings:noArg websocket:open,close " . ($hash->{HELPER}{SETS} ? $hash->{HELPER}{SETS} : '');
|
||||
}
|
||||
@ -134,7 +133,7 @@ sub Neuron_Get(@) {
|
||||
Neuron_ReadingstoSets($hash);
|
||||
} elsif ($cmd eq "value") {
|
||||
if (index($hash->{HELPER}{GETS}, $args[0]) != -1) {
|
||||
my ($dev, $circuit) = (split '_', $args[0], 2);
|
||||
my ($dev, $circuit) = Neuron_GetExt($hash, $args[0]);
|
||||
$hash->{HELPER}{CLVAL} = $hash->{CL};
|
||||
Neuron_HTTP($hash, $dev, $circuit);
|
||||
} else {
|
||||
@ -142,7 +141,7 @@ sub Neuron_Get(@) {
|
||||
}
|
||||
} elsif ($cmd eq "conf") {
|
||||
if (index($hash->{HELPER}{GETS}, $args[0]) != -1) {
|
||||
my ($dev, $circuit) = (split '_', $args[0], 2);
|
||||
my ($dev, $circuit) = Neuron_GetExt($hash, $args[0]);
|
||||
$hash->{HELPER}{CLCONF} = $hash->{CL};
|
||||
Neuron_HTTP($hash, $dev, $circuit);
|
||||
} else {
|
||||
@ -159,6 +158,19 @@ sub Neuron_Get(@) {
|
||||
return undef;
|
||||
}
|
||||
|
||||
sub Neuron_GetExt(@) { # bei Extensions mithilfe von ExtensionNamen splitten (geht sonst bei Typen mit "_" wie unit_register schief)
|
||||
my ($hash, $pinname) = @_;
|
||||
my $n = 2;
|
||||
while (exists($hash->{$n."_CIRCUIT"})){
|
||||
my $pos = index($pinname, $hash->{$n."_CIRCUIT"});
|
||||
if ( $pos != -1) {
|
||||
return (substr($pinname,0,$pos - 1), substr($pinname,$pos));
|
||||
}
|
||||
$n +=1;
|
||||
}
|
||||
return (split '_', $pinname, 2);
|
||||
}
|
||||
|
||||
sub Neuron_Attr(@) {
|
||||
my ($cmd, $name, $attr, $val) = @_;
|
||||
|
||||
@ -290,7 +302,7 @@ sub Neuron_HTTP(@){
|
||||
$data = '{"value":'.$data.'}'; # Sonderlösung, da der Analoge Ausgang den Wert nur ohne Hochkommas akzeptiert
|
||||
}
|
||||
}
|
||||
Log3($hash, 3,"$hash->{TYPE} ($hash->{NAME}): sending ".($data ? "POST ($data)" : "GET")." request to url $url");
|
||||
Log3($hash, 4,"$hash->{TYPE} ($hash->{NAME}): sending ".($data ? "POST ($data)" : "GET")." request to url $url");
|
||||
my $param= {
|
||||
url => $url,
|
||||
hash => $hash,
|
||||
@ -333,15 +345,23 @@ sub Neuron_callback(@) {
|
||||
|
||||
if($err){
|
||||
Log3($hash, 3, "$hash->{TYPE} ($hash->{NAME}) received callback with error:\n$err");
|
||||
readingsSingleUpdate($hash,"state",$err,1);
|
||||
} elsif($data){
|
||||
Log3($hash, 5, "$hash->{TYPE} ($hash->{NAME}) received callback with:\n$data");
|
||||
my $parser = $param->{parser};
|
||||
&$parser($hash, $data);
|
||||
asyncOutput($hash->{HELPER}{CLCONF}, $data) if $hash->{HELPER}{CLCONF};
|
||||
delete $hash->{HELPER}{CLCONF};
|
||||
if( substr($data,0,6) eq "<html>" ) {
|
||||
(my $title) = $data =~ /\<title\>(.*)\<\/title\>/;
|
||||
readingsSingleUpdate($hash,"state",$title,1);
|
||||
} else {
|
||||
my $parser = $param->{parser};
|
||||
&$parser($hash, $data);
|
||||
asyncOutput($hash->{HELPER}{CLCONF}, $data) if $hash->{HELPER}{CLCONF};
|
||||
}
|
||||
#delete $hash->{HELPER}{CLCONF};
|
||||
} else {
|
||||
Log3($hash, 2, "$hash->{TYPE} ($hash->{NAME}) received callback without Data and Error String!!!");
|
||||
readingsSingleUpdate($hash,"state","no data received",1);
|
||||
}
|
||||
delete $hash->{HELPER}{CLCONF};
|
||||
return undef;
|
||||
}
|
||||
|
||||
@ -377,10 +397,16 @@ sub Neuron_ParseSingle(@){
|
||||
}
|
||||
|
||||
if (ref $result eq 'HASH') {
|
||||
readingsSingleUpdate($hash,$result->{dev}."_".$result->{circuit},$result->{value},1);
|
||||
if (exists $result->{address}) {
|
||||
# {"interval": 15, "value": 23.7, "circuit": "VlTiba", "address": "28751F1F0C000067", "time": 1624541181.043978, "typ": "DS18B20", "lost": false, "dev": "temp"}
|
||||
# Besonderheit für 1Wire, dort ist im circuit scheinbar das alias enthalten
|
||||
readingsSingleUpdate($hash,$result->{dev}."_".$result->{address},$result->{value},1);
|
||||
} else {
|
||||
readingsSingleUpdate($hash,$result->{dev}."_".$result->{circuit},$result->{value},1);
|
||||
}
|
||||
asyncOutput($hash->{HELPER}{CLVAL}, $result->{value}) if $hash->{HELPER}{CLVAL};
|
||||
delete $hash->{HELPER}{CLVAL};
|
||||
Dispatch($hash, $result, (%addvals ? \%addvals : undef)) if index(AttrVal($hash->{NAME}, 'logicalDev', 'relay,input,led,ao,temp') , $result->{dev}) != -1;
|
||||
Dispatch($hash, $result, (%addvals ? \%addvals : undef)) if index(AttrVal($hash->{NAME}, 'logicalDev', 'relay,input,led,ao,temp,unit_register') , $result->{dev}) != -1;
|
||||
} else {
|
||||
Log3 ($hash, 3, "$hash->{TYPE} ($hash->{NAME}) http response not JSON: ".$result);
|
||||
}
|
||||
@ -439,7 +465,7 @@ sub Neuron_ParseAll(@){
|
||||
$value = $subdev->{value};
|
||||
#$value = $rsetsP{$value} if ($subdev->{dev} eq 'input' || $subdev->{dev} eq 'relay' || $subdev->{dev} eq 'led'); # on,off anstelle von 1,0
|
||||
readingsBulkUpdateIfChanged($hash,$subdev->{dev}."_".$subdev->{circuit},$value) if defined($value);
|
||||
Dispatch($hash, $subdev, (%addvals ? \%addvals : undef)) if index(AttrVal($hash->{NAME}, 'logicalDev', 'relay,input,led,ao'), $subdev->{dev}) != -1;
|
||||
Dispatch($hash, $subdev, (%addvals ? \%addvals : undef)) if index(AttrVal($hash->{NAME}, 'logicalDev', 'relay,input,led,ao,temp,,unit_register'), $subdev->{dev}) != -1;
|
||||
delete $subdev->{value};
|
||||
readingsBulkUpdateIfChanged($hash,".".$subdev->{dev}."_".$subdev->{circuit},toJSON($subdev),0);
|
||||
Log3 ($hash, 4, "$hash->{TYPE} ($hash->{NAME}) ".$subdev->{dev}."_".$subdev->{circuit} .": ". toJSON($subdev));
|
||||
@ -494,7 +520,7 @@ sub Neuron_DecodeWsJSON($$){
|
||||
my ($hash, $dev)=@_;
|
||||
eval {
|
||||
readingsBulkUpdate($hash,$dev->{dev}."_".$dev->{circuit},$dev->{value});
|
||||
Dispatch($hash, $dev, undef) if index(AttrVal($hash->{NAME}, 'logicalDev', 'relay,input,led,ao') , $dev->{dev}) != -1;
|
||||
Dispatch($hash, $dev, undef) if index(AttrVal($hash->{NAME}, 'logicalDev', 'relay,input,led,ao,temp,unit_register') , $dev->{dev}) != -1;
|
||||
};
|
||||
if ($@) {
|
||||
Log3 ($hash, 3, "$hash->{TYPE} ($hash->{NAME}): error decoding JSON $@\nData:\n$dev");
|
||||
@ -786,7 +812,7 @@ sub Neuron_wsDecode($$) {
|
||||
}
|
||||
#String kürzer als Längenangabe -> Zwischenspeichern?
|
||||
if (length($wsString) < $offset + $len) {
|
||||
Log3 $hash, 3, "Neuron_wsDecode Incomplete:\n" . $wsString;
|
||||
Log3 $hash, 4, "Neuron_wsDecode Incomplete:\n" . $wsString;
|
||||
return;
|
||||
}
|
||||
my $payload = substr($wsString, $offset, $len); # Daten aus String extrahieren
|
||||
@ -843,51 +869,51 @@ sub Neuron_wsMasking($$) {
|
||||
<h3>Neuron</h3>
|
||||
<ul>
|
||||
<a name="Neuron"></a>
|
||||
Module for EVOK driven devices like UniPi Neuron.
|
||||
Defines will be automatically created by the Neuron module.
|
||||
Module for EVOK driven devices like UniPi Neuron.<br>
|
||||
<br>
|
||||
<a name="NeuronDefine"></a>
|
||||
<b>Define</b>
|
||||
<ul>
|
||||
<code>define <name> Neuron <dev> <circuit></code><br><br>
|
||||
<dev> is an device type like input, ai (analog input), relay (digital output) etc.<br>
|
||||
<circuit> ist the number of the device.
|
||||
<br><br>
|
||||
|
||||
Example:
|
||||
<pre>
|
||||
<code>define <name> Neuron <IP>[:<Port>]</code><br><br>
|
||||
</pre>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<a name="NeuronSet"></a>
|
||||
<b>Set</b>
|
||||
<ul>
|
||||
<code>set <name> <value></code>
|
||||
<code>set <name> <value> [<args>]</code>
|
||||
<br><br>
|
||||
where <code>value</code> can be e.g.:<br>
|
||||
<ul><li>for relay
|
||||
<ul><code>
|
||||
off<br>
|
||||
on<br>
|
||||
</code>
|
||||
</ul>
|
||||
The <a href="#setExtensions"> set extensions</a> are also supported for output devices.<br>
|
||||
</li>
|
||||
Other set values depending on the options of the device function.
|
||||
Details can be found in the UniPi Evok documentation.
|
||||
<ul><li>dev_circuit<br>
|
||||
outputs only<br>
|
||||
<args>: on, off for outputs and slider for ao<br>
|
||||
</li>
|
||||
<li>clearreadings<br>
|
||||
delete all readings
|
||||
</li>
|
||||
<li>websocket<br>
|
||||
<arg>: open,close<br>
|
||||
open, close websocket connection
|
||||
</li>
|
||||
<li>postjson<br>
|
||||
<args>: <code>dev circuit type value</code><br>
|
||||
send JSON command to subdevice<br>
|
||||
example: <code>set neuron input 1_01 mode simple</code>
|
||||
</li>
|
||||
For details please refer to UniPi Evok documentation.
|
||||
</ul>
|
||||
</ul>
|
||||
</ul><br>
|
||||
|
||||
<a name="NeuronGet"></a>
|
||||
<b>Get</b>
|
||||
<ul>
|
||||
<code>get <name> <value></code>
|
||||
<code>get <name> <value> [<arg>]</code>
|
||||
<br><br>
|
||||
where <code>value</code> can be<br>
|
||||
<ul>
|
||||
<li>refresh: uptates all readings</li>
|
||||
<li>config: returns the configuration JSON</li>
|
||||
<li>all: refresh all readings</li>
|
||||
<li>config: returns the configuration from the subdevice <arg></li>
|
||||
<li>updt_sets_gets: updates all set and get options</li>
|
||||
<li>value: returns the state from the subdevice <arg></li>
|
||||
</ul>
|
||||
</ul><br>
|
||||
|
||||
@ -896,19 +922,23 @@ sub Neuron_wsMasking($$) {
|
||||
<ul>
|
||||
<li><a name="connection">connection</a><br>
|
||||
Set the connection type to the EVOK device<br>
|
||||
Default: polling, valid values: websockets, polling<br><br>
|
||||
Default: polling<br>
|
||||
valid values: websockets, polling<br><br>
|
||||
</li>
|
||||
<li><a name="poll_interval">poll_interval</a><br>
|
||||
Set the polling interval in minutes to query all readings (and distribute them to logical devices)<br>
|
||||
Default: -, valid values: decimal number<br><br>
|
||||
Default: -<br>
|
||||
valid values: decimal number<br><br>
|
||||
</li>
|
||||
<li><a name="wsFilter">wsFilter</a><br>
|
||||
Filter to limit the list of devices which should send websocket events<br>
|
||||
Default: all, valid values: all, ai, ao, input, led, relay, wd<br><br>
|
||||
Default: all<br>
|
||||
valid values: all, ai, ao, input, led, relay, wd, temp, unit_register<br><br>
|
||||
</li>
|
||||
<li><a name="logicalDev">logicalDev</a><br>
|
||||
Filter which subdevices should create / communicate with logical device<br>
|
||||
Default: ao, input, led, relay, valid values: ai, ao, input, led, relay, wd<br><br>
|
||||
Default: ao, input, led, relay<br>
|
||||
valid values: ai, ao, input, led, relay, wd, temp, unit_register<br><br>
|
||||
</li>
|
||||
<li><a href="#readingFnAttributes">readingFnAttributes</a></li>
|
||||
</ul>
|
||||
@ -922,13 +952,12 @@ sub Neuron_wsMasking($$) {
|
||||
<h3>Neuron</h3>
|
||||
<ul>
|
||||
<a name="Neuron"></a>
|
||||
Modul fü die Steuerung von Geräten auf denen EVOK läuft z.B. UniPi Neuron.
|
||||
Modul für die Steuerung von Geräten auf denen EVOK läuft z.B. UniPi Neuron.<br>
|
||||
<br>
|
||||
<a name="NeuronDefine"></a>
|
||||
<b>Define</b>
|
||||
<ul>
|
||||
<code>define <name> Neuron <IP>[:<Port>]</code><br><br>
|
||||
<br><br>
|
||||
</ul>
|
||||
|
||||
<a name="NeuronSet"></a>
|
||||
@ -936,12 +965,10 @@ sub Neuron_wsMasking($$) {
|
||||
<ul>
|
||||
<code>set <name> <value> [<args>]</code>
|
||||
<br><br>
|
||||
clearreadings:noArg websocket:open,close atest postjson
|
||||
where <code>value</code> can be e.g.:<br>
|
||||
Werte für <code>value</code>:<br>
|
||||
<ul><li>dev_circuit<br>
|
||||
nur fü Ausgänge<br>
|
||||
nur für Ausgänge<br>
|
||||
<args>: on, off für Ausgänge und Slider für ao<br>
|
||||
<br>
|
||||
</li>
|
||||
<li>clearreadings<br>
|
||||
lösche alle Readings
|
||||
@ -957,17 +984,17 @@ sub Neuron_wsMasking($$) {
|
||||
</li>
|
||||
Details dazu sind in der UniPi Evok Dokumentation zu finden.
|
||||
</ul>
|
||||
</ul>
|
||||
</ul><br>
|
||||
|
||||
<a name="NeuronGet"></a>
|
||||
<b>Get</b>
|
||||
<ul>
|
||||
<code>get <name> <value> [<arg>]</code>
|
||||
<br><br>
|
||||
where <code>value</code> can be<br>
|
||||
Werte für <code>value</code>:<br>
|
||||
<ul>
|
||||
<li>all: aktualisiert alle readings</li>
|
||||
<li>config: gibt das Konfiguration des Subdevices <arg> zurück</li>
|
||||
<li>config: gibt die Konfiguration des Subdevices <arg> zurück</li>
|
||||
<li>updt_sets_gets: Aktualisierung der Set und Get Auswahllisten</li>
|
||||
<li>value: gibt das Status des Subdevices <arg> zurück</li>
|
||||
</ul>
|
||||
@ -978,19 +1005,23 @@ sub Neuron_wsMasking($$) {
|
||||
<ul>
|
||||
<li><a name="connection">connection</a><br>
|
||||
Verbindungsart zum EVOK Device<br>
|
||||
Standard: polling, gültige Werte: websockets, polling<br><br>
|
||||
Standard: polling<br>
|
||||
gültige Werte: websockets, polling<br><br>
|
||||
</li>
|
||||
<li><a name="poll_interval">poll_interval</a><br>
|
||||
Interval in Minuten in dem alle Werte gelesen (und auch an die log. Devices weitergeleitet) werden.<br>
|
||||
Standard: -, gültige Werte: Dezimalzahl<br><br>
|
||||
Standard: -<br>
|
||||
gültige Werte: Dezimalzahl<br><br>
|
||||
</li>
|
||||
<li><a name="wsFilter">wsFilter</a>wsFilter<br>
|
||||
Filter um die liste der Geräte zu limitieren welche websocket events generieren sollen<br>
|
||||
Standard: all, gültige Werte: all, ai, ao, input, led, relay, wd<br><br>
|
||||
Standard: all<br>
|
||||
gültige Werte: all, ai, ao, input, led, relay, wd, temp, unit_register<br><br>
|
||||
</li>
|
||||
<li><a name="logicalDev">logicalDev</a><br>
|
||||
Filter um Geräte zu limitieren die logische Devices anlegen und mit ihnen kommunizieren.<br>
|
||||
Standard: ao, input, led, relay, gültige Werte: ai, ao, input, led, relay, wd<br><br>
|
||||
Standard: ao, input, led, relay<br>
|
||||
gültige Werte: ai, ao, input, led, relay, wd, temp, unit_register<br><br>
|
||||
</li>
|
||||
<li><a href="#readingFnAttributes">readingFnAttributes</a></li>
|
||||
</ul>
|
||||
@ -998,4 +1029,4 @@ sub Neuron_wsMasking($$) {
|
||||
</ul>
|
||||
=end html_DE
|
||||
|
||||
=cut
|
||||
=cut
|
||||
|
@ -7,6 +7,7 @@ package main;
|
||||
use strict;
|
||||
use warnings;
|
||||
use SetExtensions;
|
||||
use Encode qw(decode encode);
|
||||
|
||||
my %sets = (
|
||||
'on' => 1,
|
||||
@ -40,11 +41,28 @@ sub NeuronPin_Initialize($) {
|
||||
sub NeuronPin_Define($$) {
|
||||
my ($hash, $def) = @_;
|
||||
my @a = split('[ \t][ \t]*', $def);
|
||||
# hier fehlt noch Überprüfung der Attribute
|
||||
$modules{NeuronPin}{defptr}{$a[2]." ".$a[3]} = $hash;
|
||||
return "$hash->{NAME} Pintype not valid" unless ($a[2] =~ /^(input|relay|ai|ao|led|temp|wd)$/ );
|
||||
if (scalar(@a) == 4) {
|
||||
#altes Define (enthält noch nicht den Namen vom IODev), untauglich für mehrere Neurons
|
||||
$modules{NeuronPin}{defptr}{$a[2]." ".$a[3]} = $hash;
|
||||
#Log3 $hash, 1, "$hash->{TYPE} ($hash->{NAME}) Define: $a[2] $a[3]";
|
||||
my @EVOKS = devspec2array("TYPE=Neuron");
|
||||
if (scalar(@EVOKS) == 1) {
|
||||
Log3 ($hash, 1, "$hash->{TYPE} ($hash->{NAME}) one Neuron Device defined. Try to correct define." );
|
||||
$hash->{DEF} = $hash->{DEF} . " " . $EVOKS[0];
|
||||
$modules{NeuronPin}{defptr}{$a[2]." ".$a[3]." ".$EVOKS[0]} = $hash;
|
||||
} elsif (scalar(@EVOKS) >> 1) {
|
||||
Log3 ($hash, 0, "$hash->{TYPE} ($hash->{NAME}) more than one Neuron Device defined. Unable to autocorrect define." );
|
||||
$modules{NeuronPin}{defptr}{$a[2]." ".$a[3]} = $hash;
|
||||
}
|
||||
} elsif (scalar(@a) == 5) {
|
||||
$modules{NeuronPin}{defptr}{$a[2]." ".$a[3]." ".$a[4]} = $hash;
|
||||
} else {
|
||||
return "Define: Wrong syntax. Usage:\n" .
|
||||
"define <name> NeuronPin <dev> <circuit> <Neuron IODev>";
|
||||
}
|
||||
AssignIoPort($hash, AttrVal($hash->{NAME},"IODev", (split " ", $hash->{DEF})[2] ) );
|
||||
#return "$hash->{NAME} Pintype not valid" unless ($a[2] =~ /^(input|relay|ai|ao|led|temp|wd)$/ );
|
||||
$hash->{DEV} = $a[2];
|
||||
#return "$hash->{NAME} Circuit Name not valid" unless ($a[3] =~ /^[1-9]_((0[1-9])|[1-9][0-9])$/ );
|
||||
$hash->{CIRCUIT} = $a[3];
|
||||
$hash->{STATE} = "defined";
|
||||
|
||||
@ -57,12 +75,10 @@ sub NeuronPin_Define($$) {
|
||||
|
||||
sub NeuronPin_Init($$) {
|
||||
my ( $hash, $args ) = @_;
|
||||
unless (defined $args && int(@$args) == 2) {
|
||||
unless (defined $args && int(@$args) >= 2) {
|
||||
return "Define: Wrong syntax. Usage:\n" .
|
||||
"define <name> NeuronPin <dev> <circuit>";
|
||||
"define <name> NeuronPin <dev> <circuit> <Neuron IODev>";
|
||||
}
|
||||
AssignIoPort($hash);
|
||||
#$hash->{STATE} = 'Initialized';
|
||||
if (ReadingsVal($hash->{NAME}, '.conf', '')) {
|
||||
NeuronPin_CreateSets($hash);
|
||||
if (AttrVal($hash->{NAME},"restoreOnStartup",'')) {
|
||||
@ -72,7 +88,8 @@ sub NeuronPin_Init($$) {
|
||||
}
|
||||
} else {
|
||||
return if(IsDisabled($hash->{NAME}));
|
||||
IOWrite($hash, split " ", $hash->{DEF});
|
||||
#IOWrite($hash, split " ", $hash->{DEF});
|
||||
IOWrite($hash, $hash->{DEV}, $hash->{CIRCUIT});
|
||||
}
|
||||
$hash->{STATE} = ReadingsVal($hash->{NAME},'state','') if ReadingsVal($hash->{NAME},'state','');
|
||||
return undef;
|
||||
@ -90,7 +107,6 @@ sub NeuronPin_Catch($) {
|
||||
sub NeuronPin_State($$$$) { #reload readings at FHEM start
|
||||
my ($hash, $tim, $sname, $sval) = @_;
|
||||
#Log3 $hash, 5, "$hash->{TYPE} ($hash->{NAME}): $sname kann auf $sval wiederhergestellt werden $tim";
|
||||
|
||||
if ( $sname ne "STATE" && (my $pval = AttrVal($hash->{NAME},"restoreOnStartup",'')) && $hash->{DEV} =~ /relay|ao/ ) {
|
||||
if ($sname eq "state") {
|
||||
if ($pval eq 'on' || $pval eq 'off' || looks_like_number($pval)) {
|
||||
@ -108,75 +124,110 @@ sub NeuronPin_State($$$$) { #reload readings at FHEM start
|
||||
|
||||
sub NeuronPin_Parse ($$) {
|
||||
my ( $io_hash, $message) = @_;
|
||||
my $port = $message->{dev}." ".$message->{circuit};
|
||||
Log3 (undef, 4, "NeuronPin_Parse von $io_hash->{NAME} empfangen:\n" . encode_json $message);
|
||||
my $port = $message->{dev}." ".$message->{circuit};
|
||||
|
||||
Log3 (undef, 4, "NeuronPin_Parse von $io_hash->{NAME} empfangen: " . encode_json $message);
|
||||
if (my $hash = $modules{NeuronPin}{defptr}{$port}) {
|
||||
my $value = $message->{value};
|
||||
# zusätzliche Daten als Internal
|
||||
$hash->{RELAY_TYPE} = $message->{relay_type} if $message->{relay_type};
|
||||
$hash->{TYP} = $message->{typ} if defined $message->{typ};
|
||||
$hash->{GLOB_DEV_ID} = $message->{glob_dev_id} if defined $message->{glob_dev_id};
|
||||
$value = $rsets{$value} if ($message->{dev} eq 'input' || $message->{dev} eq 'relay' || $message->{dev} eq 'led');
|
||||
readingsBeginUpdate($hash);
|
||||
readingsBulkUpdate($hash,"state",$value);
|
||||
readingsBulkUpdate($hash,"dim",$value) if $message->{dev} eq 'ao';
|
||||
|
||||
# my @readings = ("mode","unit","range","debounce","counter","counter_mode","alias","pwm_freq","pwm_duty","temp","humidity","vdd","vad");
|
||||
# foreach (@readings){
|
||||
# if (exists($message->{$_})) {
|
||||
# readingsBulkUpdate($hash,"Z_".$_,$message->{$_});
|
||||
# } else {
|
||||
# readingsDelete($hash, "Z_".$_);
|
||||
# }
|
||||
# }
|
||||
foreach my $dev (devspec2array("TYPE=Neuron")) {
|
||||
Log3 (undef, 1, "NeuronPin_Parse Neuron Device gefunden: " . InternalVal($dev,"NAME","") );
|
||||
}
|
||||
}
|
||||
if (my $hash = $modules{NeuronPin}{defptr}{$port ." ". $io_hash->{NAME}}) {
|
||||
NeuronPin_TransferVals ($hash, $message);
|
||||
} elsif (my $hash = $modules{NeuronPin}{defptr}{$port}) {
|
||||
Log3 (undef, 1, "NeuronPin_Parse from $io_hash->{NAME} to $hash->{NAME} : incomplete Define");
|
||||
NeuronPin_TransferVals ($hash, $message);
|
||||
} else {
|
||||
Log3 ($hash, 4, "NeuronPin_Parse von $io_hash->{NAME} nothing found...create logical device");
|
||||
return "UNDEFINED $io_hash->{NAME}_".$message->{dev}."_".$message->{circuit}." NeuronPin " . $port . " " . $io_hash->{NAME};
|
||||
}
|
||||
}
|
||||
|
||||
my @skipreadings = split(',', AttrVal($hash->{NAME}, 'skipreadings', "relay_type,typ,dev,circuit,glob_dev_id,value,pending") );
|
||||
foreach (keys %{$hash->{READINGS}}) {
|
||||
#next if substr($_,0,2) eq "Z_";
|
||||
readingsDelete($hash, $_) unless exists($message->{$_}) || $_ eq "state" || $_ eq ".conf" || $_ eq "dim";
|
||||
sub NeuronPin_TransferVals ($$) {
|
||||
my ( $hash, $message) = @_;
|
||||
my @skipreadings = split(',', AttrVal($hash->{NAME}, 'skipreadings', "relay_type,typ,dev,circuit,glob_dev_id,pending") );
|
||||
my @uichreadings = split(',', "mode,unit,range,address,address,name");
|
||||
# zusätzliche Daten als Internal
|
||||
$hash->{RELAY_TYPE} = $message->{relay_type} if $message->{relay_type};
|
||||
$hash->{TYP} = $message->{typ} if defined $message->{typ};
|
||||
$hash->{GLOB_DEV_ID} = $message->{glob_dev_id} if defined $message->{glob_dev_id};
|
||||
my $value = $message->{value};
|
||||
my $basequantity = "";
|
||||
my $unit = defined $message->{unit} ? encode("UTF-8", " " . $message->{unit}) : "";
|
||||
if ($message->{dev} eq 'input' || $message->{dev} eq 'relay' || $message->{dev} eq 'led') {
|
||||
$value = $rsets{$value}
|
||||
} else {
|
||||
#$value = sprintf('%.2f', $value); #nur 2 Nachkommastellen
|
||||
#$value =~ s/\.(?:|.*[^0]\K)0*\z//; #keine 0 am Ende nach dem Komma
|
||||
#$value =~ s/^-0$/0/; #kein -0
|
||||
$value = round($value,2);
|
||||
if ($message->{mode}) {
|
||||
$basequantity = lc($message->{mode});
|
||||
} elsif ( $message->{dev} eq 'temp' ) {
|
||||
$basequantity = "temperature";
|
||||
$unit = " °C";
|
||||
} elsif ( $message->{dev} eq 'unit_register' ) {
|
||||
$basequantity = $message->{name};
|
||||
}
|
||||
foreach my $key (keys %$message){
|
||||
if (ref $message->{$key} eq 'ARRAY') { # alle Arrays überspringen
|
||||
} elsif (grep( /^$key/, @skipreadings )) { # Wer soll nicht als reading angelegt werden
|
||||
readingsDelete($hash, $key);
|
||||
} elsif ($key eq 'alias') { # al_ am Anfang von alias weg
|
||||
# my $alias = (split '_', $message->{$key})[1];
|
||||
my @aliases = (split '_', $message->{$key});
|
||||
my $alias = join(" ",@aliases[1 .. $#aliases]);
|
||||
readingsBulkUpdate($hash,$key,$alias);
|
||||
# autocreate alias attribute
|
||||
if (AttrVal($hash->{NAME}, 'alias', '?') ne $alias && defined AttrVal($hash->{NAME}, 'autoalias', '')) {
|
||||
my $msg = CommandAttr(undef, $hash->{NAME} . " alias $alias");
|
||||
Log3 ($hash, 2, "$hash->{TYPE} ($hash->{NAME}): Error creating alias $msg") if ($msg);
|
||||
}
|
||||
}else {
|
||||
}
|
||||
|
||||
# $value = $rsets{$value} if ($message->{dev} eq 'input' || $message->{dev} eq 'relay' || $message->{dev} eq 'led');
|
||||
# unless ( $value == 0 || $value == 1 ) {
|
||||
# $value = sprintf('%.2f', $value);
|
||||
# $value =~ s/\.(?:|.*[^0]\K)0*\z//;
|
||||
# $value =~ s/^-0$/0/;
|
||||
# }
|
||||
|
||||
readingsBeginUpdate($hash);
|
||||
readingsBulkUpdate($hash,"state", $value . $unit );
|
||||
readingsBulkUpdate($hash,"dim",$value) if $message->{dev} eq 'ao';
|
||||
|
||||
foreach (keys %{$hash->{READINGS}}) {
|
||||
#next if substr($_,0,2) eq "Z_";
|
||||
readingsDelete($hash, $_) unless exists($message->{$_}) || $_ eq "state" || $_ eq ".conf" || $_ eq "dim";
|
||||
}
|
||||
foreach my $key (keys %$message){
|
||||
if (ref $message->{$key} eq 'ARRAY') { # alle Arrays überspringen
|
||||
} elsif (grep( /^$key/, @skipreadings )) { # Wer soll nicht als reading angelegt werden
|
||||
readingsDelete($hash, $key);
|
||||
} elsif ($key eq 'alias') { # al_ am Anfang von alias weg
|
||||
my @aliases = (split '_', $message->{$key});
|
||||
my $alias = join(" ",@aliases[1 .. $#aliases]);
|
||||
readingsBulkUpdate($hash,$key,$alias);
|
||||
# autocreate alias attribute
|
||||
if (AttrVal($hash->{NAME}, 'alias', '?') ne $alias && defined AttrVal($hash->{NAME}, 'autoalias', '')) {
|
||||
my $msg = CommandAttr(undef, $hash->{NAME} . " alias $alias");
|
||||
Log3 ($hash, 2, "$hash->{TYPE} ($hash->{NAME}): Error creating alias $msg") if ($msg);
|
||||
}
|
||||
} else {
|
||||
if (grep( /^$key/, @uichreadings )) {
|
||||
readingsBulkUpdateIfChanged($hash,$key,encode("UTF-8",$message->{$key}));
|
||||
} else {
|
||||
readingsBulkUpdate($hash,$key,$message->{$key});
|
||||
}
|
||||
}
|
||||
delete $message->{value};
|
||||
readingsBulkUpdateIfChanged($hash,".conf",encode_json $message,0);
|
||||
readingsEndUpdate($hash,1);
|
||||
|
||||
NeuronPin_CreateSets($hash);
|
||||
|
||||
if ($hash->{HELPER}{SETREQ} && not $hash->{IODev}->{HELPER}{WESOCKETS}) { # workaround because neuron sends old value after set
|
||||
RemoveInternalTimer($hash,'NeuronPin_RereadPin');
|
||||
InternalTimer(gettimeofday() + 1, 'NeuronPin_RereadPin', $hash);
|
||||
delete $hash->{HELPER}{SETREQ};
|
||||
}
|
||||
asyncOutput($hash->{HELPER}{CL}, encode_json $message) if $hash->{HELPER}{CL}; # show conf after get
|
||||
delete $hash->{HELPER}{CL};
|
||||
return $hash->{NAME};
|
||||
} else {
|
||||
Log3 ($hash, 4, "NeuronPin_Parse von $io_hash->{NAME} nix gefunden...anlegen");
|
||||
return "UNDEFINED $io_hash->{NAME}_Pin_".$message->{dev}."_".$message->{circuit}." NeuronPin " . $port;
|
||||
}
|
||||
readingsBulkUpdate($hash, $basequantity, $message->{value} . $unit ) if $basequantity;
|
||||
delete $message->{value};
|
||||
readingsBulkUpdateIfChanged($hash,".conf",encode_json $message,0);
|
||||
readingsEndUpdate($hash,1);
|
||||
|
||||
NeuronPin_CreateSets($hash);
|
||||
|
||||
if ($hash->{HELPER}{SETREQ} && not $hash->{IODev}->{HELPER}{WESOCKETS}) { # workaround because neuron sends old value after set
|
||||
RemoveInternalTimer($hash,'NeuronPin_RereadPin');
|
||||
InternalTimer(gettimeofday() + 1, 'NeuronPin_RereadPin', $hash);
|
||||
delete $hash->{HELPER}{SETREQ};
|
||||
}
|
||||
asyncOutput($hash->{HELPER}{CL}, encode_json $message) if $hash->{HELPER}{CL}; # show conf after get
|
||||
delete $hash->{HELPER}{CL};
|
||||
return $hash->{NAME};
|
||||
}
|
||||
|
||||
sub NeuronPin_RereadPin($) {
|
||||
my ($hash) = @_;
|
||||
return if(IsDisabled($hash->{NAME}));
|
||||
IOWrite( $hash, split(" ", $hash->{DEF}) );
|
||||
IOWrite($hash, $hash->{DEV}, $hash->{CIRCUIT});
|
||||
}
|
||||
|
||||
sub NeuronPin_Attr (@) {
|
||||
@ -245,15 +296,6 @@ sub NeuronPin_CreateSets($) {
|
||||
}
|
||||
}
|
||||
}
|
||||
# my @stypes = ("modes","range_modes","counter_modes");
|
||||
# my @stype = ("mode","range_mode","counter_mode");
|
||||
# foreach my $i (0 .. $#stypes) {
|
||||
# if ($result->{$stypes[$i]} && scalar keys @{$result->{$stypes[$i]}} > 1) {
|
||||
# foreach (@{$result->{$stypes[$i]}}){
|
||||
# $hash->{HELPER}{SETS}{$stype[$i]}{$_} = 1;
|
||||
# }
|
||||
# }
|
||||
# }
|
||||
|
||||
my @freesets = split(';', AttrVal($hash->{NAME}, 'ownsets', "debounce;counter;interval;pwm_freq;pwm_duty:slider,0,0.1,100") );
|
||||
foreach (@freesets) {
|
||||
@ -294,13 +336,11 @@ sub NeuronPin_Set($@) {
|
||||
my $cmd = $a[1];
|
||||
my $arg = $a[2];
|
||||
|
||||
my @arguments = (split(" ",$hash->{DEF}));
|
||||
my @arguments = ($hash->{DEV}, $hash->{CIRCUIT});
|
||||
|
||||
#if(!defined($sets{$cmd})) {
|
||||
if(!defined($hash->{HELPER}{SETS}{$cmd})) {
|
||||
if (my $setlist = $hash->{HELPER}{SET}) {
|
||||
return SetExtensions($hash, $setlist, @a) ;
|
||||
#return 'Unknown argument ' . $cmd . ', choose one of ' . $setlist;
|
||||
}
|
||||
return undef
|
||||
} elsif ($cmd eq "dim") {
|
||||
@ -323,20 +363,17 @@ sub NeuronPin_Set($@) {
|
||||
$arguments[2] = $cmd;
|
||||
$arguments[3] = $arg;
|
||||
}
|
||||
#$hash->{HELPER}{SETREQ} = 1;
|
||||
#my @arguments = (split(" ",$hash->{DEF}),$sets{$cmd});
|
||||
return if(IsDisabled($hash->{NAME}));
|
||||
IOWrite($hash, @arguments);
|
||||
}
|
||||
|
||||
sub NeuronPin_Get($@) {
|
||||
my ($hash, $name, $cmd, @args) = @_;
|
||||
my @arguments = ($hash->{DEV}, $hash->{CIRCUIT});
|
||||
if ($cmd && $cmd eq "refresh") {
|
||||
my @arguments = (split " ", $hash->{DEF});
|
||||
return if(IsDisabled($hash->{NAME}));
|
||||
IOWrite($hash, @arguments);
|
||||
} elsif ($cmd && $cmd eq "config") {
|
||||
my @arguments = (split " ", $hash->{DEF});
|
||||
$hash->{HELPER}{CL} = $hash->{CL};
|
||||
return if(IsDisabled($hash->{NAME}));
|
||||
IOWrite($hash, @arguments);
|
||||
@ -353,17 +390,20 @@ sub NeuronPin_Undef($$) {
|
||||
return undef;
|
||||
}
|
||||
|
||||
#sub NeuronPin_DbLog_splitFn($) {
|
||||
# my ($event) = @_;
|
||||
# Log3 undef, 5, "in DbLog_splitFn empfangen: $event";
|
||||
# my ($reading, $value, $unit) = "";
|
||||
# my @parts = split(/ /,$event);
|
||||
# $reading = shift @parts;
|
||||
# $reading =~ tr/://d;
|
||||
# $value = $parts[0];
|
||||
# $unit = "V" if(lc($reading) =~ m/spannung/);
|
||||
# return ($reading, $value, $unit);
|
||||
#}
|
||||
sub NeuronPin_DbLog_splitFn($) {
|
||||
my ($event) = @_;
|
||||
Log3 undef, 5, "in NeuronPin DbLog_splitFn empfangen: $event";
|
||||
my ($reading, $value, $unit) = "";
|
||||
my @parts = split(/ /,$event);
|
||||
$reading = shift @parts;
|
||||
$reading =~ tr/://d;
|
||||
$unit = ''; # ReadingsVal($hash->{NAME},'unit','');
|
||||
if ($reading eq "value" && $unit) {
|
||||
$value = $parts[0];
|
||||
Log3 undef, 3, "in NeuronPin DbLog_splitFn empfangen: $event, return: |$reading|$value|$unit|";
|
||||
return ($reading, $value, $unit);
|
||||
}
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
@ -383,14 +423,15 @@ sub NeuronPin_Undef($$) {
|
||||
<a name="NeuronPinDefine"></a>
|
||||
<b>Define</b>
|
||||
<ul>
|
||||
<code>define <name> NeuronPin <dev> <circuit></code><br><br>
|
||||
<code>define <name> NeuronPin <dev> <circuit> <Neuron IODev></code><br><br>
|
||||
<dev> is an device type like input, ai (analog input), relay (digital output) etc.<br>
|
||||
<circuit> ist the number of the device.
|
||||
<circuit> is the number of the device.<br>
|
||||
<Neuron IODev> is the EVOK device where this subdevice is connected
|
||||
<br><br>
|
||||
|
||||
Example:
|
||||
<pre>
|
||||
define NeuronPin_relay_2_01 NeuronPin relay 2_01
|
||||
define NeuronPin_relay_2_01 NeuronPin relay 2_01 Neuron1
|
||||
</pre>
|
||||
</ul>
|
||||
|
||||
@ -411,7 +452,7 @@ sub NeuronPin_Undef($$) {
|
||||
</ul>
|
||||
Other set values depending on the options of the device function.
|
||||
Details can be found in the UniPi Evok documentation.
|
||||
</ul>
|
||||
</ul><br>
|
||||
|
||||
<a name="NeuronPinGet"></a>
|
||||
<b>Get</b>
|
||||
@ -430,27 +471,33 @@ sub NeuronPin_Undef($$) {
|
||||
<ul>
|
||||
<li><a name="poll_interval">poll_interval</a><br>
|
||||
Set the polling interval in minutes to query all readings<br>
|
||||
Default: -, valid values: decimal number<br><br>
|
||||
Default: -<br>
|
||||
valid values: decimal number<br><br>
|
||||
</li>
|
||||
<li><a name="restoreOnStartup">restoreOnStartup</a><br>
|
||||
Restore Readings and sets after reboot<br>
|
||||
Default: last, valid values: last, on, off, no<br><br>
|
||||
Default: last<br>
|
||||
valid values: last, on, off, no<br><br>
|
||||
</li>
|
||||
<li><a name="aomax">aomax</a><br>
|
||||
Maximum value for the slider from the analog output ports<br>
|
||||
Default: 10, valid values: decimal number<br><br>
|
||||
Default: 10<br>
|
||||
valid values: decimal number<br><br>
|
||||
</li>
|
||||
<li><a name="skipreadings">skipreadings</a><br>
|
||||
Values which will be sent from the Device and which shall not be listed as readings<br>
|
||||
Default: relay_type,typ,dev,circuit,glob_dev_id,value,pending; valid values: comma separated list<br><br>
|
||||
Default: relay_type,typ,dev,circuit,glob_dev_id,value,pending<br>
|
||||
valid values: comma separated list<br><br>
|
||||
</li>
|
||||
<li><a name="ownsets">ownsets</a><br>
|
||||
Values which will be sent from the Device which can be changed via set. For Values for where the device sends fixed choices, the sets will created automatically<br>
|
||||
Default: debounce;counter;interval;pwm_freq;pwm_duty:slider,0,0.1,100 valid values: semicolon separated list<br><br>
|
||||
Default: debounce;counter;interval;pwm_freq;pwm_duty:slider,0,0.1,100<br>
|
||||
valid values: semicolon separated list<br><br>
|
||||
</li>
|
||||
<li><a name="autoalias">autoalias</a><br>
|
||||
If set to 1, reading alias will automatically change the attribute "alias"<br>
|
||||
Default: 0, valid values: 0,1<br><br>
|
||||
Default: 1<br>
|
||||
valid values: 0,1<br><br>
|
||||
</li>
|
||||
<li><a href="#IODev">IODev</a></li>
|
||||
<li><a href="#readingFnAttributes">readingFnAttributes</a></li>
|
||||
@ -469,20 +516,21 @@ sub NeuronPin_Undef($$) {
|
||||
<h3>NeuronPin</h3>
|
||||
<ul>
|
||||
<a name="NeuronPin"></a>
|
||||
Logisches Modul fü Geräte auf denen EVOK läuft.
|
||||
Logisches Modul für Geräte auf denen EVOK läuft.
|
||||
Diese werden automatisch vom <a href="#Neuron"> Neuron</a> Modul angelegt.
|
||||
<br>
|
||||
<a name="NeuronPinDefine"></a>
|
||||
<b>Define</b>
|
||||
<ul>
|
||||
<code>define <name> NeuronPin <dev> <circuit></code><br><br>
|
||||
<code>define <name> NeuronPin <dev> <circuit> <Neuron IODev></code><br><br>
|
||||
<dev> ist der Typ des Subdevices/Pins z.B. input, ai (analoger Eingang), relay (digitaler Ausgang) etc.<br>
|
||||
<circuit> ist die Nummer des Subdevices/Pins.
|
||||
<circuit> ist die Nummer des Subdevices/Pins.<br>
|
||||
<Neuron IODev> ist der Name des EVOK Devices zu dem dieses Subdevice gehört.
|
||||
<br><br>
|
||||
|
||||
Beispiel:
|
||||
<pre>
|
||||
define NeuronPin_relay_2_01 NeuronPin relay 2_01
|
||||
define NeuronPin_relay_2_01 NeuronPin relay 2_01 Neuron1
|
||||
</pre>
|
||||
</ul>
|
||||
|
||||
@ -503,7 +551,7 @@ sub NeuronPin_Undef($$) {
|
||||
</ul>
|
||||
Weitere set values sind abhängig von den jeweiligen Subdevice Funktionen.
|
||||
Details dazu sind in der UniPi Evok Dokumentation zu finden.
|
||||
</ul>
|
||||
</ul><br>
|
||||
|
||||
<a name="NeuronPinGet"></a>
|
||||
<b>Get</b>
|
||||
@ -522,27 +570,33 @@ sub NeuronPin_Undef($$) {
|
||||
<ul>
|
||||
<li><a name="poll_interval">poll_interval</a><br>
|
||||
Interval in Minuten in dem alle Werte gelesen werden.<br>
|
||||
Standard: -, gültige Werte: Dezimalzahl<br><br>
|
||||
Standard: -<br>
|
||||
gültige Werte: Dezimalzahl<br><br>
|
||||
</li>
|
||||
<li><a name="restoreOnStartup">restoreOnStartup</a><br>
|
||||
Readings nach Neustart wiederherstellen<br>
|
||||
Standard: last, gültige Werte: last, on, off<br><br>
|
||||
Standard: last<br>
|
||||
gültige Werte: last, on, off<br><br>
|
||||
</li>
|
||||
<li><a name="aomax">aomax</a><br>
|
||||
Maxwert für den Schieberegler beim Analogen Ausgang<br>
|
||||
Standard: 10, gültige Werte: Dezimalzahl<br><br>
|
||||
Standard: 10<br>
|
||||
gültige Werte: Dezimalzahl<br><br>
|
||||
</li>
|
||||
<li><a name="skipreadings">skipreadings</a><br>
|
||||
Werte, die vom Gerät gesendet, aber nicht als Reading dargestellt werden sollen.<br>
|
||||
Standard: relay_type,typ,dev,circuit,glob_dev_id,value,pending; gültige Werte: kommaseparierte Liste<br><br>
|
||||
Standard: relay_type,typ,dev,circuit,glob_dev_id,value,pending<br>
|
||||
gültige Werte: kommaseparierte Liste<br><br>
|
||||
</li>
|
||||
<li><a name="ownsets">ownsets</a><br>
|
||||
Werte, die vom Gerät gesendet, und über set verändert werden können. Schickt das Gerät feste Auswahllisten für einen Wert dann werden die sets automatisch angelegt.<br>
|
||||
Standard: debounce;counter;interval;pwm_freq;pwm_duty:slider,0,0.1,100; gültige Werte: semikolonseparierte Liste<br><br>
|
||||
Standard: debounce;counter;interval;pwm_freq;pwm_duty:slider,0,0.1,100<br>
|
||||
gültige Werte: semikolonseparierte Liste<br><br>
|
||||
</li>
|
||||
<li><a name="autoalias">autoalias</a><br>
|
||||
Wenn auf 1 wird das reading alias automatisch als Attribut alias gesetzt.<br>
|
||||
Standard: 0, gültige Werte: 0,1<br><br>
|
||||
Standard: 1<br>
|
||||
gültige Werte: 0,1<br><br>
|
||||
</li>
|
||||
<li><a href="#IODev">IODev</a></li>
|
||||
<li><a href="#readingFnAttributes">readingFnAttributes</a></li>
|
||||
|
Loading…
x
Reference in New Issue
Block a user