1. Home
    1. Dashboard
    2. Search
  2. Forum
    1. Unresolved Threads
    2. Members
      1. Recent Activities
      2. Users Online
      3. Team Members
      4. Search Members
      5. Trophys
  3. Articles
  4. Blog
  5. Videos
  6. Jobs
  7. Shop
    1. Orders
  • Login or register
  • Search
Everywhere
  • Everywhere
  • Articles
  • Pages
  • Forum
  • Blog Articles
  • Products
  • More Options
  1. Robotforum - Support and discussion community for industrial robots and cobots
  2. Members
  3. Johnny B

Posts by Johnny B

  • Remote Error Clear with PLC

    • Johnny B
    • January 6, 2025 at 4:03 PM

    It is possible and it needs to be coded using the ClrErr command in a supervisory program.

    In our applications the supervisory program monitors both SysState and the error output. We can then send a discreet (or EIP depending) "reset" signal form the PLC to trigger ClrErr.

    Properly coded your PLC and a supervisory program can reset an error, turn on the motor, and start program(s) running to initialize your robot and start it cycling. That way you are not tied to the use of the robot pendant.

  • AB CompactLogix L35E to RC8 via EthernetIP

    • Johnny B
    • October 23, 2024 at 3:51 PM

    I believe it is because your input and output sizes are mismatched. The Denso is a multiple of 8 bits and the AB is multiple of 32.

    In my applications I have the Denso set as 64 (512 bits) and the AB at 16 (512 bits)

  • New owner of a Denso RC7M controller with probably some simple questions.

    • Johnny B
    • May 13, 2024 at 8:55 PM

    Depending on the model of the RC7 controller (standard or global), the e-stops channels are hard wired via the Mini I/O (CN5) connector or the Safety I/O (CN10) connector. I do not believe you can disable them.

  • Denso Robot : receive a string via Profinet

    • Johnny B
    • April 30, 2024 at 8:48 PM

    I'm happy it worked out for you!

  • Angled WorkPlace with a SCARA HSR-065A1-N20-RC8A

    • Johnny B
    • April 30, 2024 at 8:47 PM

    I'm struggling to visualize what you are trying to do. Maybe attach a sketch or something.

    With XYZ, RX, RY, and RZ, you can locate and angle work planes six ways from Sunday.

  • Fanuc Ethernet/IP Help

    • Johnny B
    • March 5, 2024 at 2:40 PM

    Also an option that must be purchased.

    Fanuc options are a-la-carte. They will be happy to take your $$$$.

    Are you trying to re-purpose and existing robot, or did you purchase this thing new? If you contact Fanuc with the robots F number they should be able to assist you in purchasing the option(s) you desire.

  • Fanuc Ethernet/IP Help

    • Johnny B
    • March 4, 2024 at 4:48 PM

    Did you purchase the option?

    Go to:

    Menu

    0 -- Next

    4 Status

    2 Version ID

    Config

    If you do not have Ethernet /IP in there, you do not have the option.

  • Denso Robot : receive a string via Profinet

    • Johnny B
    • February 7, 2024 at 1:15 AM

    It looks like you have a programming challenge ahead of you. Maybe someone else can chime in with an easier way.

    As far as the RC8 is concerned, the Profinet option board brings in the data as IO points. You need 8 points per character. You can use the DefIO command to read 8 points into an integer and then use the Chr command to convert the integer to a character. I just played with it in WinCaps doing a single character.

    You will have to loop the code to read 8 points at a time and build the string using the results.

    What is the device sending the string to the Profinet board?

  • Denso Robot : receive a string via Profinet

    • Johnny B
    • January 25, 2024 at 7:38 PM

    What controller do you have? Denso has a Profinet option board.

  • Remote Control for Denso VS-6242E/GM and RC7M Controller

    • Johnny B
    • November 30, 2023 at 3:17 PM

    I had an application going from ethernet/ip to device net and I used an RTA 460ESDM-N34-D. That was pretty straight forward mapping in the RTA.

    Are you trying to pass your 16 bits addressed as coils or as registers?

  • Remote Control for Denso VS-6242E/GM and RC7M Controller

    • Johnny B
    • November 8, 2023 at 4:05 PM

    Hmmm… not really any resources out there that I’m aware of. It’s stuff I learned doing my first vision application and expanded on with other applications.

    The comma delimited strings can be configured to hold whatever data you want. Send and received strings should have the same structure so that you can use a similar subroutine structures in the PLC and the RC7 to parse through them. My strings have looked something like this (*Note- Not shown is the carriage return or carriage return/line feed at the end of the string. That depends on which one your system is set up for.):

    1034,125.83,-75.38,46.13,138

    • The first value is I/O boolean points converted to an integer. In the RC7 you can use ndInb.pac and ndOnb.pac to encode and decode the I/O points, however you are limited to 16 points. You cannot use 32 as the RC7 uses the last bit as the sign bit. I modified and made my own code so I can use more points, up to 31. In the P3K PLC I used the Pack Bits and Unpack Bits instructions. I’m not sure what instructions the Click has to accomplish the same thing. These are your “expanded I/O”. I primarily used them for manual commands and feedback so that communications latency is not a big issue.
    • The second, third, and fourth values are X, Y, and RZ coordinates. In this example these could be the coordinates of the part the camera is seeing.
    • The fifth value is a timer value. In this example it is the vison process time of 138 ms.

    The limitation to the strings is the overall string length. None of my applications ever gotten to that many characters.

  • Remote Control for Denso VS-6242E/GM and RC7M Controller

    • Johnny B
    • November 7, 2023 at 3:24 PM

    I was looking at the Click manual. Another option is to use the RS-232 ports and exchange ASCII strings. You did not specify what your application is, and/or if comms speed is an issue. Comma delimited strings require programming to parse the data so there is always that too. It does work though if you are trying to expand on "usable I/O" and exchange data such as position, timer, or counter values.

  • Remote Control for Denso VS-6242E/GM and RC7M Controller

    • Johnny B
    • November 6, 2023 at 3:44 PM

    Ethernet/IP is the easier way to go as far as communications, but the cards are not cheap. A new one far an RC8 controller is around $1200. I would contact Denso support to get the proper part number for an RC7. The cards also require a licensed extension code to be entered in the controller to activate it. Unless you can get a valid license with one you find on eBay, a used card may not work.

    The RC7 communicates via Ethernet TCP/IP. In the past I have used a protocol converter such as an RTA 460MSTCP https://www.rtautomation.com/product/460mstcp/ to communicate between an older Automation Direct P3K PLC that only had Modbus and an RC7's Ethernet TCP/IP using comma delimited strings.

  • Roboguide to AB PLC?

    • Johnny B
    • February 24, 2022 at 10:39 PM

    Is you UOP I/O setup in the same slot as the rest of your Ethernet/IP?

    I believe I found it in another thread on this forum, but Roboguide does not like the UOP to be on the same slot as anything else. On my project my Ethernet/IP was on Slot 1. I configured the UOP to be on Slot 2 and the UI inputs now work correctly. For whatever reason though Roboguide still over rides the colors of some of the UI.

  • Fanuc Roboguide "Export I/O comments" no longer available

    • Johnny B
    • October 28, 2021 at 7:40 PM

    Bump.

    I found this post by searching the forum for "import comments".

    I'm new to Fanuc and Roboguide. I would like to import the comments for a slew of Register, I/O, and Flags. They were provided in two .txt files as part of a program package we received for a new application. I cannot find how to import comments in any of the Roboguide or Handling Tool documentation that I have.

    Anyone?

Advertising from our partners

IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Advertise in Robotics
Advertise in Robotics
  1. Privacy Policy
  2. Legal Notice
Powered by WoltLab Suite™
As a registered Member:
* You will see no Google advertising
* You can translate posts into your local language
* You can ask questions or help the community with your knowledge
* You can thank the authors for their help
* You can receive notifications of replies or new topics on request
* We do not sell your data - we promise

JOIN OUR GREAT ROBOTICS COMMUNITY.
Don’t have an account yet? Register yourself now and be a part of our community!
Register Yourself Lost Password
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on Google Play
Robotforum - Support and discussion community for industrial robots and cobots in the WSC-Connect App on the App Store
Download