adccommunitymod (AutomationDirect) asked a question.

Communicating with an Universal Robot

Created Date: September 26,2017

Created By: mattdoran

**** This post has been imported from our legacy forum. Information in this post may be outdated and links contained in the post may no longer work.****

I am trying to talk to a Universal Robot. I can get it to work using the Sockettest which is what they have in there example. Is this doable through Do-more I am using a Brix PLC. Here is the link of what they gave me. https://www.universal-robots.com/how-tos-and-faqs/how-to/ur-how-tos/dashboard-server-port-29999-15690/


  • adccommunitymod (AutomationDirect)

    Created Date: September 26,2017

    Created by: BobO

    Easily.

    OPENTCP to open a TCP socket to the device, STRPRINT to format commands, STREAMOUT to send commands to the device, STREAMIN to read responses, and CLOSE to close the socket. I strongly recommend that you implement the protocol as a dedicated Program Block and use Stages (and the Stage transition features of the instructions) to create the protocol sequence. This can range from easy to hopelessly painful depending on how you code it. Do it with Stages in a Program and it should go well for you.

    Expand Post
  • adccommunitymod (AutomationDirect)

    Created Date: September 29,2017

    Created by: Adisharr

    I use both Modbus and sockets to talk to UR robots and it works very well. One thing I know, the Do-more line can talk to just about anything in my experience. If I'm having trouble linking two devices I'll typically use a Do-More to act and a gateway.

    Example: Kollmorgen AKD drive and UR robot, they won't talk over Modbus

  • adccommunitymod (AutomationDirect)

    Created Date: October 01,2017

    Created by: Ridgeline Mach

    You can also talk to a UR through Ethernet IP.

  • adccommunitymod (AutomationDirect)

    Created Date: November 30,2018

    Created by: Lucas.Allen

    You can also talk to a UR through Ethernet IP.

    I would like to explore using Ethernet IP but don't even know where to start, I have A BRX as well as a UR10 An would like to get I/O from robot control to PLC, What is the best place to find Info on this

  • adccommunitymod (AutomationDirect)

    Created Date: November 30,2018

    Created by: Todd Dice

    I would like to explore using Ethernet IP but don't even know where to start, I have A BRX as well as a UR10 An would like to get I/O from robot control to PLC, What is the best place to find Info on this

    https://www.universal-robots.com/how...p-guide-18712/

    https://forum.automationdirect.com/f...rsal-robots-ur

    Admittedly, in my application I am using a P2K, but the Modbus read and writes to the particular addresses should be what you focus on.

    Expand Post