Hello,
I do some Computer Vision on PC. Then, I want to send the location of the objects to the robot for picking up. Which communication protocol suits best to this use case?
Hello,
I do some Computer Vision on PC. Then, I want to send the location of the objects to the robot for picking up. Which communication protocol suits best to this use case?
You can use the socket communication.
After building the socket server on your pc, the command “socket_open” can be used on robot program as client.
Check out this page which details all the ways you can communicate with your robot: Overview of client interfaces - 21744
To send a position, I advise you either :
socket_open()
in your robot scriptThe articles on the UR website offer simple implementations in Python.
In addition, industrial libraries implement all these protocols and many others. Take a look at this one: UR+ | Communication & Toolkit Software Library for Universal Robots
Where can I a Python sample for sending a move command to the robot over TCP socket?