IoDrvEthernetDiag.Enable (PROP) ¶ PROPERTY Enable : BOOL This property returns if the node is enabled in the device tree. The setter can be used to change the Enabled flag. If enabling/disabling is not supported on the node the flag’s value will not change.
IoDrvEthernetDiag.FirstChildNode (PROP) ¶ PROPERTY FirstChildNode : DED.INode Returns the first child node below the current one
IoDrvEthernetDiag.Index (PROP) ¶ PROPERTY Index : UDINT
IoDrvEthernetDiag.IsRootNode (PROP) ¶ PROPERTY IsRootNode : BOOL returns true, if the current node is the root (plc) node, otherwise false
IoDrvEthernetDiag.NextSiblingNode (PROP) ¶ PROPERTY NextSiblingNode : DED.INode returns the next sibling node at the same level used for step through all nodes
IoDrvEthernetDiag.ParentNode (PROP) ¶ PROPERTY ParentNode : DED.INode Returns the parent node or zero if already the root node is reached
INode ¶ ChildNodeCount (Property) Connector (Property) Enable (Property) FirstChildNode (Property) Index (Property) IsRootNode (Property) NextSiblingNode (Property) ParentNode (Property) SiblingNodeCount (Property)
IStack ¶ GetBusScanAsync (Method) GetDeviceDiagnosisInfo (Method) GetDeviceErrorAsync (Method) GetDeviceInfo (Method) GetDeviceState (Method) GetLogger (Method) GetSpecificDeviceErrorAsync (Method) GetSpecificDeviceState (Method) SetCommunicationState (Method)
KNXConvertFunctions ¶ DPT10_IEC_to_KNX (Function) DPT10_KNX_to_IEC (Function) DPT16_IEC_to_KNX (Function) DPT16_KNX_to_IEC (Function) DPT19_IEC_to_KNX (Function) DPT19_KNX_to_IEC (Function)
DPT10_IEC_to_KNX (FUN) ¶ FUNCTION DPT10_IEC_to_KNX : ARRAY [0..2] OF BYTE Convert the IEC TIME_OF_DAY value to KNX DPT10 Example Following example code converts from IEC to KNX DPT10 PROGRAM PLC_PRG VAR data : IoDrvKnxlibrary.DPT10 ; END_VAR data.lTimeOfDay := TIME_OF_DAY#15:36:30 ; data.uisDay := 2 ; OutputDPT_10.DataValue := IoDrvKnxlibrary.DPT10_IEC_to_KNX ( data ); Note The Day (Monday … Sunday) is converted from the usiDay element of the structure DPT10 InOut: Scope Name Type Return DPT10_IEC_to_KNX ARRAY [0..2] OF BYTE Input data DPT10