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. I3ooI3oo

Posts by I3ooI3oo

  • intp-105 run request failed, Trying to start program from PLC

    • I3ooI3oo
    • April 7, 2025 at 9:39 PM

    In the config setting is the robot set to Remote?

    Menu -> System -> config

    Item 42 or so should be Local/Remote

  • Resuming program after HOLD

    • I3ooI3oo
    • July 25, 2023 at 10:29 PM

    Personally I have used reference positions with I/O to prevent motion into collision areas. Then check the I/O before moving there. I use 2 outs and 2 In for each area. One is controlled by Ref_pos the other is controlled by the program. The program controlled bits are "Going to location" once the robot is in the area it turns the bit off and allows the ref_pos to handle it.

  • FANUC programming, Sensor stutter problem

    • I3ooI3oo
    • April 20, 2021 at 2:49 PM

    I would just debounce the signal. Since if the signal is good then any previous off signal can be ignored.

    IF RI[3] = OFF , R[99] = R[99] + 1

    IF RI[4] = OFF , R[99] = R[99] + 1

    IF RI[3] =ON AND RI[4] = ON , R[99] = 0

    IF R[99] = 50 , CALL PART_LOST

  • How do I avoid dial table crashing the robot ?

    • I3ooI3oo
    • March 17, 2021 at 2:51 PM
    Quote from retobor

    I've tried to invert a bit for ref pos in the past. I recall this function not behaving as I expected; the controller ignored the bit inversion when assigned to ref pos. Can you confirm that it works?

    The Bit being inverted does work, however if you look at the I/o on the pendent it shows off when not in the ref pos. Since the bit is inverted it is correct, if you look at the electrical signal it has +24v when the robot is not in the Ref Pos.

    Quote from Fabian Munoz

    l3ool3oo

    The concept of ""DI[109]=ON" does not help me because I'm jogging the robot manually

    "If the robot is off the table can't rotate."

    This is what I'm talking about. It's not about the robot crashing the table. It's the other way around

    In my setup it doesn't matter how the robot is moving when it is in the ref pos the table can not rotate as the signal that controls the rotation is broken by the relay that is controlled by the ref pos.

  • How do I avoid dial table crashing the robot ?

    • I3ooI3oo
    • March 16, 2021 at 9:25 PM

    I am currently building a system right now with a dial table and LR Mate 200i. We are using a Powerflex 550 from AB.

    First thing I did was have a relay wired into the enable bit of the table controller. When that relay is not active the table can't rotate. The Poll for the relay comes from the Robot. I created a reference position for the table. The bit that is set when the robot is in that reference position is then inverted in the I/O. This now means that bit is active when the robot is not in the reference position. So if the table is rotating and the robot moves into that reference area the table will stop immediately.

    To prevent the robot from moving into the table area while rotating thus, causing the table to stop, We wire the table's "in position" bit into the robots inputs. In my pick program, which is the only program that moves near the table. There is a wait "DI[109]=ON" for table in position bit, This prevents the pick program from moving into the table area.

    Using this setup the table and the robot haven't ever crashed. If the robot is off the table can't rotate. If the table in position sensor goes bad the robot can't move into the table area.

  • Make tool frame same as world frame

    • I3ooI3oo
    • March 4, 2021 at 9:08 PM

    I think you should be using a Userframe for for what you are talking about. The tool frames are for EOAT and as such will rotate their x,y planes with rotation of the robot's 6th axis. Userframes however will always be orientated in the same. An uninitialized userframe will match up to world frame exactly.

  • 3D Cad File for Robot

    • I3ooI3oo
    • October 29, 2019 at 9:50 PM

    When you first login look for ASI network, Which now that I look at, I have access because I am a distributor. Under the ASI network link is a link to all the drawing files. They have complete models and assemblies for every robot.

  • 3D Cad File for Robot

    • I3ooI3oo
    • October 29, 2019 at 1:40 PM

    Get access to the CRC.FRC.COM website. All the drawing you could want are there.

  • Can't connect from my laptop to robot controller

    • I3ooI3oo
    • October 25, 2019 at 8:01 PM

    Allow I would ping the temp probe with robot. If you can at least the robot is on the network.

  • Can't connect from my laptop to robot controller

    • I3ooI3oo
    • October 25, 2019 at 8:00 PM

    Look at the gateway on the temp probe, take that and put it as the gateway on the robot that should solve your issue.

    As a network engineer I can tell you that there are thousands of ways to setup a network. Your network could be using vlans. It could be segmented. The switches could be managed and only allowing traffic to specific ports.

  • Can't connect from my laptop to robot controller

    • I3ooI3oo
    • October 24, 2019 at 8:39 PM
    Quote from tomexx

    Thanks for replay guys, Here's more info:

    My laptop's I/P is 10.7.71.**

    Robot's I/P is 10.7.114.**

    Is this an issue?


    I also put the gateway address into Router I/P spot on the controller.

    Still can't connect.

    Thanks,
    Tom

    Display More

    Yes. You would need to change the subnet mask on both to 255.255.0.0

    If your mask is 255.255.255.0 on the last octect is allowed to change without going through the gateway/router.

  • Can't connect from my laptop to robot controller

    • I3ooI3oo
    • October 24, 2019 at 2:47 PM

    The router IP is the gateway. A gateway is only ever needed to send data from one network to a different network outside the subnet mask.

  • Used Robot for Education - Is donation a thing and if so - who do I talk to?

    • I3ooI3oo
    • October 22, 2019 at 2:43 PM

    Recently they were selling off their used stock. Robots that were used for Fanuc demos and R&D testing. We just bought a M-1A for 66% off. All are functioning and quite capable for learning. I could see Fanuc donating one of theses. They had most models available.

  • Bit Mask operation

    • I3ooI3oo
    • October 16, 2019 at 8:23 PM

    Your program is only hard if the system can have multiple alarms at once. If this is the case then you could just do the following:

    Code
    1=Bad Thing
    2=Worse Thing
    4=Really bad thing
    8=Worst thing possible
    Code
    IF R[200] >= 8 THEN
    R[200]=R[200]-8
    CALL WORST_THING_POSSIBLE
    END IF
    IF R[200] >=4 THEN
    R[200]=R[200]-4
    CALL REALLY_BAD_THING
    END IF
    IF R[200] >= 2 THEN
    R[200]=R[200]-2
    CALL WORSE_THING
    END IF
    IF R[200] >= 1 THEN
    R[200]=R[200]-1
    CALL BAD_THING
    END IF
    Display More

    At the start of your program you would need to set R[200]=0. Then when ever a new alarm is added it would be R[200]=R[200]+Current alarm number

  • All PRs changed in the controller

    • I3ooI3oo
    • September 25, 2019 at 2:49 PM

    You might want to look at the utool. If the Z value of the tool changed all taught points would be wrong. There would be nothing in the TP that would have changed if the utool was incorrect.

  • IR Vision

    • I3ooI3oo
    • September 16, 2019 at 5:56 PM

    Here's how I do it.

    1. Program the user frame to the calibration grid used for vision calibration.

    2. Calibrate the Camera vision.

    3. Program vision find.

    4. Program TP program to use vision find and user frame in step 1.

    Now both should be in the same alignment.

  • Software Request to Fanuc - the robot forum bugs and wish list

    • I3ooI3oo
    • September 16, 2019 at 4:52 PM

    I just got this in Email from my Fanuc Rep.

    Quote

    Also – in the SCARA world, FANUC has now (since June actually) added a motion instruction called “VIA”. It works just like the Epson “JUMP” command for general pick and place applications.

    This functionality was added directly due to feedback like yours. So thank you.

  • ROBOT for sorting and feeding the component and put it on a conveyor belt

    • I3ooI3oo
    • September 4, 2019 at 9:29 PM

    Do you already have the laser engraver? My company builds industrial laser systems. We are also Fanuc integrator. If you don't already have a laser engraver you can get a complete system from my company which would work for all the product you request. Pm for more details.

    Are you going to need vision? Are the parts to be removed always in the box the same way?

  • Buying used Fanuc robot

    • I3ooI3oo
    • August 28, 2019 at 8:25 PM

    Motion Package RTL-R809 1 $2,095.00
    Details: The Motion Package includes the Motion Interface, Constant Path,
    Singularity Avoidance, ADV-CP Speed Control, ADV-CP Path Control, and
    Collision Guard. The Motion Interface option is used for motion optimization
    including cycle time optimization, path optimization, small shape
    optimization, RV life optimization, and power consumption
    optimization.Constant Path is a motion control option that allows the robot to
    maintain the same path regardless of static or dynamic speed override
    changes. The Singularity Avoidance option allows the robot to work around
    singularity points automatically. Robot singularity can cause regional
    structure degeneracy or wrist degeneracy depending on the structure of a
    robot. The Advanced Constant Path package consists functions for easy
    teaching and cycle time reduction. Collision Guard provides a highly
    sensitive method to detect that the robot has collided with an object and then
    stops the robot immediately.

  • Pc to PMC using ethernet

    • I3ooI3oo
    • July 17, 2019 at 5:39 PM

    Your network is most likely considered public and thus the firewall is blocking most traffic. Try disabling the windows firewall.

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