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

Posts by krgaurav22

  • Fanuc Calaborwtive Line tracking Robot

    • krgaurav22
    • September 15, 2023 at 8:36 PM

    I am facing similar issue. How did you resolve it?

  • Fanuc Arc Type Motion Limitations

    • krgaurav22
    • September 14, 2023 at 11:14 PM

    I replaced Arc motion with Linear motion, and it works fine.

  • Fanuc Arc Type Motion Limitations

    • krgaurav22
    • September 14, 2023 at 9:02 PM

    I am going to try that today.

  • Fanuc Arc Type Motion Limitations

    • krgaurav22
    • September 14, 2023 at 8:09 PM

    I have wait instruction after every point as well, here is a sample of the code:

    5: A P[1] 250mm/sec FINE ;

    6: R[8]=0 ;

    7: WAIT R[7]=1 ;

    8: A P[2] 250mm/sec FINE ;

    9: R[7]=0 ;

    10: WAIT R[8]=1 ;

    11: A P[3] 250mm/sec FINE ;

    12: R[8]=0 ;

    13: WAIT R[7]=1 ;

    14: A P[4] 250mm/sec FINE ;

    15: R[7]=0 ;

    16: WAIT R[8]=1 ;

    17: A P[5] 250mm/sec FINE ;

    So, in my python code, I read the readings from the probe and then update the register R[8] and R[7] alternatively.

  • Fanuc Arc Type Motion Limitations

    • krgaurav22
    • September 14, 2023 at 5:55 PM

    I am doing 15 or more points because we want to capture some reading on the probe from all of these points which are at the same radius from the origin.

    I will try the normal circular instruction and see if that works.

  • Fanuc Arc Type Motion Limitations

    • krgaurav22
    • September 14, 2023 at 2:28 AM

    I am working with Fanuc CRX-10iA/L robot. I am trying to move it along an arc with 500mm radius and pitch varying from -15 degrees to 15 degrees. When I put 15 points like below, it works fine. But, when I increase the number of points to more than 15, it throws error: MOTN-356 ARC:180 deg SPIN change(G:1) . I tried different angle ranges, whenever the point count is more than half the angle range, the same error comes up. Is this a limitation from Fanuc ?

    A P[1] 250mm/sec FINE ;

    A P[2] 250mm/sec FINE ;

    ....

  • Does Fanuc CRX 10 or CRX 25 support secure FTP protocol (SFTP or FTPS) ?

    • krgaurav22
    • September 5, 2023 at 7:54 PM

    Does Fanuc CRX 10 or CRX 25 support secure FTP protocol (SFTP or FTPS) ?

  • Fanuc CRX-25iA Slow Motion

    • krgaurav22
    • August 26, 2023 at 2:49 AM

    I have the override set to 80% and I see that teaching pendant shows 80% when the program is running.

    Also, I have another program with CNT100 for each move and the robot moves better in that case. Although, it is not as fast compared to other robot CRX-10iA/L we have.

  • Fanuc CRX-25iA Slow Motion

    • krgaurav22
    • August 26, 2023 at 1:56 AM

    We have a new Fanuc CRX-25iA robot and it moves really slow in linear motion. My program looks like following:

    L P[1] 250mm/sec FINE. ;

    LP[2] 250mm/sec FINE ;

    .....

    ....


    The robot stops at each point for at least 2 seconds. This robot does not have R663 Constant Path option. We have a CRX-10iA/L and that one has this option. And it moves with normal speed.

    Do I need to buy this Constant Path option or is the issue something else?

  • Fanuc Orientation Angles

    • krgaurav22
    • August 23, 2023 at 2:41 AM

    Can you explain by showing the corresponding values against world angles I mentioned?

  • Fanuc Orientation Angles

    • krgaurav22
    • August 22, 2023 at 9:18 PM

    Fanuc restricts the orientation angles between -180 and 180. is the following mapping correct:

    World Angle Fanuc Angles

    -360 -180

    -270 -90

    -180 0

    -90 90

    0 -180
    90 -90

    180 0

    270 90

    360 180

  • Fanuc Robot connection

    • krgaurav22
    • August 18, 2023 at 8:05 PM

    thanks for the suggestions. I am using Ubuntu. So, I unchecked the "Automatically Connect" option in the ethernet and now the wifi works as well. So, both the networks are working.

  • Fanuc Robot connection

    • krgaurav22
    • August 18, 2023 at 7:29 AM

    I am using a Fanuc Robot CRX-10iA/L which is connected to my pc using ethernet cable. The connection works only when I switch off the wifi of the pc. If I switch on the wifi, the connection breaks. How can I have the wifi for internet as well as stay connected to the robot?

  • Setting up payload through TP program

    • krgaurav22
    • August 15, 2023 at 4:51 PM

    Thank you

  • Karel Program to run a TP program with error handling

    • krgaurav22
    • August 15, 2023 at 4:47 PM

    I am using a socket connection to call this Karel routine for executing the tp program. So, when the tp program fails, I want the karel routine to throw an error so that the socket connection can be closed. Currently, the socket connection stays stuck in the karel routine and is not disconnected.

  • Converting coordinates from Universal to Fanuc robots

    • krgaurav22
    • August 15, 2023 at 7:28 AM

    Can someone provide the formula for converting yaw, pitch and roll from Universal robots to Fanuc robots?

  • Setting up payload through TP program

    • krgaurav22
    • August 14, 2023 at 8:58 PM

    I am trying to set payload using TP program:

    9: $PLST_GRP1[1].$PAYLOAD=(1.2) ;

    10: $PLST_GRP1[1].$PAYLOAD_X=(0.5) ;

    11: $PLST_GRP1[1].$PAYLOAD_Y=(0.2) ;

    12: $PLST_GRP1[1].$PAYLOAD_Z=(0.1) ;

    I am running this TP program using karel CALL_PROGLIN which is called by my python code. Whenever this program is run, Teach pendant throws error: "Need to apply DCS param".

    Is there a way to override this approval error in the code?


  • Karel Program to run a TP program with error handling

    • krgaurav22
    • August 14, 2023 at 8:08 PM

    I am using this https://github.com/torayeff/fanuc…pdk_cmd.kl#L399 and calling it from my python code. I don’t get any error. Teaching pendant shows the error but not the code.

  • Karel Program to run a TP program with error handling

    • krgaurav22
    • August 14, 2023 at 4:32 AM

    I am using Karel’s built in routine CALL_PROGLIN to start a tp program. The tp program takes some time as it has a number of steps. If the tp program fails due to Unreachable point, the Karel program is still stuck at CALL_PROG instead of throwing an error. How can I make the Karel program throw error?

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