Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Latest commit

 

History

History
18 lines (14 loc) · 508 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 508 Bytes

OPC Client

OPC is a software interface standard that allows Windows programs to communicate with industrial hardware devices.

shot

// READ
var strNodeIds = new string[]
{
    "ns=4;i=3",
    "ns=4;i=4"
};
var values = tmpOpcUaClient.ReadValues(strNodeIds);

shot2

The OPC client software is any program that needs to connect to the hardware, such as an HMI . The OPC client uses the OPC server to get data from or send commands to the hardware.