OPC UA - Connect MATLAB as Client to an OPC UA Server
Show older comments
Hi,
I want to connect MATLAB as Client to an OPC UA Server . The OPC UA Server is hosted by the software FillControl by PRIAMUS.
I can connect the Server with the UaExpert Client from Unified Automation and read my measurement data from the nodes.
So far it works.
But now I want to use MATLAB as Client and read the measured data from FillControll Software directly via OPC UA into MATLAB.
How can i configure the server acces data in MATLAB?
- Endpoint URL(s): opc.tcp://192.168.xx.xxx:xxxx/PRIAMUS
- User: ******
- Password: ********
Is it possible to make the connection in MATLAB or do I need an Local Discovery Service (LDS)?
2 Comments
Suria Reddy
on 26 Sep 2019
Reyhane Mokhtarname
on 24 Sep 2020
Dear Suria
I have the same problem, did you find any solution for that?
Answers (2)
Timo Schmid
on 6 Oct 2019
0 votes
I do have the exact same problem.
Please let me know as soon as you found a solution.
Hi,
In MATLAB, you can establish a connection to an OPC UA server using the ICOMM Toolbox. Here's an example of how you can do it:
% Create an OPC UA client object
obj = opcua(serverUrl);
% Connect to the OPC UA server with optional username and password
connect(obj, username, password);
In this code snippet, URL of your OPC UA server. The "opcua" function creates an OPC UA client object, and the "connect" function establishes a connection to the server. You can provide an optional "username" and "password" if your server requires authentication.
For more detailed information on using the OPC Toolbox in MATLAB, you can refer to the official documentation:
Categories
Find more on Unified Architecture in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!