diff --git a/docs/commandref.html b/docs/commandref.html
index cd7301dad..48af33a13 100644
--- a/docs/commandref.html
+++ b/docs/commandref.html
@@ -112,6 +112,7 @@
OREGON
OWFS
OWTEMP
+ POKEYS
RFXCOM
RFXMETER
RFXX10REC
@@ -5061,6 +5062,79 @@ A line ending with \ will be concatenated with the next one, so long lines
+
+
+
+ The POKEYS module is used to control the LAN POKEYS device (POKEYS56e) which supports
+ up to 56 digital input, analog inputs, counter inputs and digital outputs.
+ Each port/pin has to be configured before it can be used.
+
+ + + + Define +
define <name> POKEYS <ip-address> <pin> <io-state> [<time in ms>] + + <ip-address> the IP address where the POKEYS device can be accessed+ <pin> the pin number which should be configured+ <io-state> the new io state of the pin Obsolete(=undef) DigIn DigOut AdcIn DigInCtRise DigInCtFall ExtDigOut GetBasic + <time in ms> optional else 1000ms: cyclic update time for Input pin + + + Example: +
define PoInfo POKEYS 192.168.178.34 0 GetBasic + # creates a virtual pin for getting infos about the device with the get command+ define Pin44in POKEYS 192.168.178.34 44 DigIn 200 + # creates a digitial input port on pin 44 + define Pin25out POKEYS 192.168.178.34 25 DigOut + # creates a digial output port on pin 25 + + + + Set +
set <name> <state> [<time in ms>] + + <state> can be OFF ON OFF_PULSE ON_PULSE + <time in ms> optional else 1000ms hold time for the ON_PULSE OFF_PULSE state+ + Example: +
set Pin25out ON + # sets Pin25out to ON (0V) + + + + Get +
get <name> <type> + + only supported for pins of type GetBasic + <type> can be Version DevName Serial User CPUload + + Example: +
get PoInfo Version + # gets the version of the POKEYS device + + + + Attributes +
+ + + + VantagePro2 |