The .Net interface and implementation of mechanism for access to OPC parameters on OPC server.
If you need to use an opc-server (RSLinx, Matricon and etc.) the library helps you to do it.
First, you need to create and connect to opc-server.
Second, you can use OpcValueImpl to read and write values from and into the server.
var server = new OPCServer();
server.Connect("OPC.SimaticNET", "localhost");
var curvalue = new OpcValueImpl(server);
curvalue.Name = "UseYourTagName";
curvalue.IsListenValueChanging = true;
curvalue.SubscribeToValueChange(new Listener());
curvalue.Activate();
curvalue.WriteValue(123);
-
Notifications
You must be signed in to change notification settings - Fork 7
denxc/OpcTagAccessProvider
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
The .Net interface and implementation of mechanism for access to OPC parameters on OPC server.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published