OPC UA - Connect MATLAB as Client to an OPC UA Server
Mostrar comentarios más antiguos
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 comentarios
Suria Reddy
el 26 de Sept. de 2019
Reyhane Mokhtarname
el 24 de Sept. de 2020
Dear Suria
I have the same problem, did you find any solution for that?
Respuestas (2)
Timo Schmid
el 6 de Oct. de 2019
0 votos
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:
Categorías
Más información sobre Unified Architecture en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!