We use it to monitor the robot in the cloud by pulling back the state. We also do some control of the robot using it. The game that we built last year was fully driven off of this data layer.
Its not not as simple as just plugging in a USB stick though. They have a python library that you can use to create a data logger. There's an example of this on the support site that may do what you want.
If if you have any questions let me know. Im definitely not an expert on python but understand the basics of how the library works. We wrote our own that we use in node.js.
matthewd92: Thanks for that response. In the end I wrote a script that watched the RTDE input registers in a custom input recipe and then performed an action based on the codes we sent. The script then called the gripper commands that are available in the associated URCap. Wish I didn't have to write all that code (on two machines) just to move/pick/place but could not see any other way. But the up-side is I can access all the URScript math functions so that is nice to have. I still support the Dashboard interface as well so that I can launch my script when it isn't running.
lakshmip001: Yes it is possible, and the existing python example UR provides can be adapted easily to your needs (I did my interface in C# and I can't share the code).
matthewd92: Thanks for that response. In the end I wrote a script that watched the RTDE input registers in a custom input recipe and then performed an action based on the codes we sent. The script then called the gripper commands that are available in the associated URCap. Wish I didn't have to write all that code (on two machines) just to move/pick/place but could not see any other way. But the up-side is I can access all the URScript math functions so that is nice to have. I still support the Dashboard interface as well so that I can launch my script when it isn't running.
lakshmip001: Yes it is possible, and the existing python example UR provides can be adapted easily to your needs (I did my interface in C# and I can't share the code).
Hey guys,
I was wondering if anyone has used the RTDE offered by Universal Robots? I think I remember hearing that you can log data from the robot directly to a USB stick using the real-time data exchange? Is anyone using this tool to log data?