Quantcast
Channel: OPC Labs - OPC Labs - Recent Topics - OPC Labs Online Forums
Viewing all articles
Browse latest Browse all 1794

Complex Data (Extension Object) handling in OPC UA - by: JaiPrakashShukla

$
0
0
I have a requirement to send PID loop function block information from OPC UA server to Client.
The information can be described as a C structure as follows:

struct PID_Block
{
int32 Setpoint;
int32 Output;
int32 PID_BlockStatus;
float P_gain;
float I_gain;
float D_gain;
}

My application requirement is that the Client should be able to read and understand this structure and its data types dynamically without special configuration or software change.
Client should initially understand the structure format and subsequently able to access the data atomically.
Is it possible to do this in OPC UA stack? How?

Viewing all articles
Browse latest Browse all 1794