NetLinx Programming
37
NXB-KNX Operation/Reference Guide
KNX_Tools.axi
We recommend not to use the send commands directly, but always use the functions of this include file. The
compiler has the opportunity to avoid typing errors already during compiling. Additional typing is avoided.
This file also provides absolute terms for relative dimming and blinds control:
// Constants for dimming Lights
KNX_DIM_UP = 9 //Brighter
KNX_DIM_DN = 1 //Darker
KNX_DIM_SP = 0 //Dimming Stop
// Constants for blind control
KNX_DIR_UP = 1 //UP
KNX_DIR_DOWN = 9 //Down
KNX_DIR_STOP = 0 //Stop
Functions Available In KNX_Tools.axi
The following functions are available in file KNX_Tools.axi for programming:
Functions Available In KNX_Tools.axi
Function
Description
KNXSet
Syntax:
KNXSet (<NXB-KNX Device >,<actor No>,<Value>)
Function: Sets actuator <actor No> to <Value>.
Note
: The module limits the value range automatically to the maximum range of the
selected actuator type.
Example:
KNXSet (dvKNX,13,1)
KNXGet
Syntax:
KNXGet (<NXB-KNX Device>,<actor No>)
Function: Gets the value of actuator <actor No> to <Value> stored in module.
Example:
nVAL = KNXGet (dvKNX,13)
KNXPoll
Syntax:
KNXPoll (<NXB-KNX Device>,<actor No>)
Function: Polls the actuator <actor No>
Example:
KNXPoll (dvKNX,13)
KNXAdd
Syntax:
KNXAdd (<NXB-KNX Device>,<actor No>,<Type>,
<Group Address>,<Flags>)
Function: Adds entry to KNX table (description of parameters see above).
Example:
KNXAdd (dvKNX,13,KNX2Byte,'1/0/206',"knxPollstart")
KNXWhenPoll
Syntax:
KNXWhenPoll (<NXB-KNX Device>,<actor No1>,<actor No2>)
Function: Adds a poll trigger.
Note
: Value report from <actor No1> triggers polling on <actor No2>.
Example:
KNXWhenPoll (dvKNX,13,20)
Содержание NetLinx NXB-KNX
Страница 6: ...iv NXB KNX Operation Reference Guide Table of Contents ...
Страница 56: ...One Time Upgrade of the NXB KNX to a Native NetLinx Device 50 NXB KNX Operation Reference Guide ...
Страница 64: ...Appendix A Telnet Commands 58 NXB KNX Operation Reference Guide ...
Страница 67: ...Programming Telnet Commands 61 NXB KNX Operation Reference Guide ...