Материал из Module developer
In the module, refer to the fields of "Object" with the help of the link to the module "B.getModule (ModuleID)".
For example, the scanner gets the "NodeID" parameter, which we want to use in the module. For this purpose, there has to be the "NodeID" field in "Object". Getting access to "NodeID" in the module:
var Module = B.getModule (ModuleID);
IR.Log ("My node ID:" + Module.NodeID);
