diff --git a/fhem/FHEM/00_ZWDongle.pm b/fhem/FHEM/00_ZWDongle.pm
index 11ed2e769..8ab2d583a 100755
--- a/fhem/FHEM/00_ZWDongle.pm
+++ b/fhem/FHEM/00_ZWDongle.pm
@@ -22,10 +22,10 @@ sub ZWDongle_ProcessSendStack($);
# https://bitbucket.org/bradsjm/aeonzstickdriver
my %sets = (
"addNode" => { cmd => "4a%02x@", # ZW_ADD_NODE_TO_NETWORK'
- param => { nwOn=>0xc1, on=>0x81, off=>0x05,
- secNwOn=>0xc1, secOn=>0x81 } },
+ param => { onNw =>0xc1, on =>0x81, off=>0x05,
+ onNwSec=>0xc1, onSec=>0x81 } },
"removeNode" => { cmd => "4b%02x@", # ZW_REMOVE_NODE_FROM_NETWORK'
- param => {nwOn=>0xc1, on=>0x81, off=>0x05 } },
+ param => {onNw=>0xc1, on=>0x81, off=>0x05 } },
"createNode" => { cmd => "60%02x" }, # ZW_REQUEST_NODE_INFO'
"removeFailedNode" => { cmd => "61%02x@" }, # ZW_REMOVE_FAILED_NODE_ID
"replaceFailedNode"=> { cmd => "63%02x@" }, # ZW_REPLACE_FAILED_NODE
@@ -742,21 +742,21 @@ ZWDongle_Ready($)
Set
- - addNode [on|nwOn|secOn|secNwOn|off]
+ - addNode [on|onNw|onSec|onNwSec|off]
Activate (or deactivate) inclusion mode. The controller (i.e. the dongle)
will accept inclusion (i.e. pairing/learning) requests only while in this
mode. After activating inclusion mode usually you have to press a switch
three times within 1.5 seconds on the node to be included into the network
of the controller. If autocreate is active, a fhem device will be created
- after inclusion. "on" activates standard inclusion. "nwOn" activates network
+ after inclusion. "on" activates standard inclusion. "onNw" activates network
wide inclusion (only SDK 4.5-4.9, SDK 6.x and above).
- If secOn/secNwOn is specified, the ZWDongle networkKey ist set, and the
+ If onSec/onNwSec is specified, the ZWDongle networkKey ist set, and the
device supports the SECURITY class, then a secure inclusion is attempted.
- - removeNode [nwOn|on|off]
+ - removeNode [onNw|on|off]
Activate (or deactivate) exclusion mode. "on" activates standard exclusion.
- "nwOn" activates network wide exclusion (only SDK 4.5-4.9, SDK 6.x and
+ "onNw" activates network wide exclusion (only SDK 4.5-4.9, SDK 6.x and
above). Note: the corresponding fhem device have to be deleted
manually.
diff --git a/fhem/FHEM/10_ZWave.pm b/fhem/FHEM/10_ZWave.pm
index a8e2360dd..d508ba9fe 100755
--- a/fhem/FHEM/10_ZWave.pm
+++ b/fhem/FHEM/10_ZWave.pm
@@ -3781,7 +3781,7 @@ s2Hex($)
This class needs the installation of the perl module Crypt::Rijndael
and a defined networkkey in the attributes of the ZWDongle device
Currently a secure inclusion can only be started from the command input
- with "set <ZWDongle_device_name> addNode <On|nwOn> sec"
+ with "set <ZWDongle_device_name> addNode [onSec|onNwSec]"
These commands are only described here for completeness of the
documentation, but are not intended for manual usage. These commands
will be removed from the interface in future version.
@@ -4082,7 +4082,7 @@ s2Hex($)
This class needs the installation of the perl module Crypt::Rijndael and
a defined networkkey in the attributes of the ZWDongle device
Currently a secure inclusion can only be started from the command input
- with "set <ZWDongle_device_name> addNode <On|nwOn> sec"
+ with "set <ZWDongle_device_name> addNode [onSec|onNwSec]"
These commands are only described here for completeness of the
documentation, but are not intended for manual usage. These commands
will be removed from the interface in future version.