UA_ByteString
This PLC data type maps the node "ByteString" [i=1]: reference.opcfoundation.org
This built-in data type defines a value that represents a sequence of byte values.
Syntax
TYPE UA_ByteString :
STRUCT
nLength : UDINT;
aData : ARRAY [0..255] OF BYTE;
END_STRUCT
END_TYPEParameter
Name | Type | Description |
|---|---|---|
nLength | UDINT | Number of bytes used in aData |
aData | ARRAY [0..255] OF BYTE | User data of the byte string |