How to subscribe to OPC data changes in PowerShell: Difference between revisions

From OPC Labs Knowledge Base
No edit summary
No edit summary
Line 1: Line 1:
[[Category:.NET]] [[Category:Console application]] [[Category:PowerShell]] [[Category:How to]] [[Category:OPC DA]]
[[Category:.NET]] [[Category:Console application]] [[Category:Example]] [[Category:PowerShell]] [[Category:How to]] [[Category:OPC DA]]
The following PowerShell code subscribes to an OPC item and displays the incoming data changes:
The following PowerShell code subscribes to an OPC item and displays the incoming data changes:



Revision as of 18:24, 8 February 2018

The following PowerShell code subscribes to an OPC item and displays the incoming data changes:

Add-Type -Path OpcLabs.EasyOpcClassic.dll

# Create EasyOPC-DA component 
$client = New-Object OpcLabs.EasyOpc.DataAccess.EasyDAClient

# Hook events
Register-ObjectEvent -InputObject $client -EventName ItemChanged -Action { Write-Host $EventArgs }

# Subscribe
$client.SubscribeItem("", "OPCLabs.KitServer.2", "Demo.Single", 1000)

We have tested this with QuickOPC 5.40 and PowerShell 3.0.

Note2-icon.png

Note: For some issues and limitations, see How to read an OPC item value in PowerShell.

Note2-icon.png

Note: A memory leak related to event handling has been observed under some circumstances in PowerShell (and QuickOPC 2017.2). Workaround is to use the "event pull" mechanism in QuickOPC, instead of hooking event handlers.


Links related to/used when writing this article: