You are here: Start » Function Reference » System » OPC UA » OPCUAClient_WriteRealArrayValue
Header: | STD.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Writes an array of Float values to a variable node in a OPC UA server.
Syntax
void fil::OPCUAClient_WriteRealArrayValue ( int inConnectionId, const fil::OpcUaNodeId& inNodeId, const ftl::Conditional<ftl::Array<float>>& inValue, int inStatus = 0 )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inConnectionId | int | 0 - 99 | 0 | Slot id of the open connection to the server |
![]() |
inNodeId | const OpcUaNodeId& | Id of the variable node to write the value to | ||
![]() |
inValue | const Conditional<Array<float>>& | The value to write to the variable node | ||
![]() |
inStatus | int | 0 | OPC UA status code for the variable value |
Description
This filter is used to write (send) a value into the "Value" property of a Variable Class node on a OPC UA server.
The inConnectionId input specifies the server connection slot id and must correspond to the value specified in the OPCUAClient_Connect filter.
The inNodeId input specifies the Node Id of the server node to write the value to (see OpcUaNodeId for details). The node pointed to by this id must be of Variable class and with a compatible value data type (see below), otherwise the filter will throw an IOError exception.
The inValue input specifies the value to be written. This input has a conditional type. Setting the value to Nil will result in writing Null to the node's value variant.
The inStatus input specifies the value's usability Status Code to be assigned to the value in the server. In most cases, when writing a valid non-Null value, this input will be left on the default status of 0 (StatusCodeGood). Writing a Null value usually requires to specify a status code in the "Bad" severity range.
This filter can write an array value to variables with OPC UA basic types of Float and Double (or derived from those), by converting the inValue input value of type RealArray.
This filter can also write to variable nodes of the Number abstract data type, by storing the value under the Float concrete data type.
Errors
This filter will throw an IOError exception on network connection errors, server service call errors and write operation or data conversion errors.
See Also
- OPCUAClient_Connect – Establishes a connection to a OPC UA server
- OPCUAClient_ReadRealArrayValue – Reads a Float compatible array value of a variable node from a OPC UA server.
- OPCUAClient_WriteIntegerArrayValue – Writes an array of Integer values to a variable node in a OPC UA server.