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. Mr.Question

Posts by Mr.Question

  • Remote Error Clear with PLC

    • Mr.Question
    • January 3, 2025 at 2:43 PM

    I need to remotely clear errors on a 4 axis denso Robot from Denso connected to a Beckhoff PLC.
    The error should be displayed in the TwinCAT HMI and then a manual Bool Signal (In the HMI) should be used to clear that error.
    The robot is a SCARA Robot 4-axis (Model No.: HSR065A1-N20-NNN), controller: RC8A, and the PLC is a Beckhoff C6015-0020.

    My question is: Is it possible?
    If yes, is there any standard way or does it need to be coded?

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

    • Mr.Question
    • April 18, 2024 at 1:56 PM

    So I am working with a ROBOT DENSO SCARA HSR-065A1-N20-RC8A.

    There are 3 workplaces with an angle of 80º (from base).

    I need that when the robot is on those workplaces and I move the Z axis it follows that angle.

    Can't find a way to move the robot based on the WorkPlace Coordinate System that I define. Only XYZ, Joint or Tool

  • KRC4 + Ligh Curtains

    • Mr.Question
    • January 4, 2024 at 5:56 PM

    Does the $PERY_RDY goes FALSE when the drives also go off? I am using a KRC4 with KSS 8.6.10

  • Operator Safety / Gate Open I/O point?

    • Mr.Question
    • January 4, 2024 at 4:46 PM

    Does this variable also works with Safety Barriers/Lightnig Curtains? For example is the barriers are crossed can I use that $USER_SAF to turn ON a red light?

  • Operator Safety / Gate Open I/O point?

    • Mr.Question
    • January 4, 2024 at 4:37 PM

    Is there any system variable for that Operator Safety Gate status?

  • KUKA Working Areas/Zones

    • Mr.Question
    • September 27, 2023 at 6:10 PM

    Once again thank you so much guys!

  • KUKA Working Areas/Zones

    • Mr.Question
    • September 27, 2023 at 5:58 PM

    I don't have the option to SafeOperation so I will search for those "Standard Workspaces". Any recomendation on where to start? Or where to search information about this topic.

  • KUKA Working Areas/Zones

    • Mr.Question
    • September 27, 2023 at 3:49 PM

    In order to create some "Virtual 3d Areas" or "Working Zones" where the robot reduces speed, stops or even speeds up once it gets in that area, do I need the KUKA.SafeOperation? Or is there any free option to create something like this?

  • "Main Screen" in AUT Mode.

    • Mr.Question
    • September 21, 2023 at 2:32 PM
    Quote from panic mode

    no rule that i know of. the good idea is to put parts of code into folds to reduce number of lines of code scrolling on the screen and make it easier to follow.

    Can this be done inside a Module ?

  • "Main Screen" in AUT Mode.

    • Mr.Question
    • September 15, 2023 at 9:30 AM

    All HMI Genesis, Zenon or EasyHMI are paid?

    No free option?

  • "Main Screen" in AUT Mode.

    • Mr.Question
    • September 11, 2023 at 3:37 PM

    So the question is.. Is there any common rule for a "main screen" while a program is running in AUT mode?
    Instead of letting the operator see the pointer going through the code.

    Maybe just showing some "stages" of the cycle, what is the signal the robot is waiting at a certain moment, etc etc...

  • Selector for different Program

    • Mr.Question
    • August 11, 2023 at 1:01 PM

    Sorry. The controller is a KC4 (KSS 8.6.10)

  • Selector for different Program

    • Mr.Question
    • August 11, 2023 at 11:57 AM

    I have a KR 16 R1610-2 with two different feeders for two different operations (but still on the same area).

    Is it possible to select one of two different programs/modules with an external Selector switch?
    I am not using EXT AUT. Only AUT (there is no PLC with the robot but a EK1100 for some I/Os).

    Client insists in selecting the different operations/programs via a phisical selector instead of selecting it in the pendent.

  • Safety Barriers + Start/Restart Button

    • Mr.Question
    • August 7, 2023 at 12:47 PM

    I am using AUT mode only. No PLC in the system...

  • Safety Barriers + Start/Restart Button

    • Mr.Question
    • August 7, 2023 at 10:41 AM

    I have a pair of Light Curtains integrated with a KRC4 - 8.6.10 Controller and a KR16R1610-2 Robot.

    If the operator interrupts the curtains the robot stops and its needed to restart in the "Movement conditions" "I" and then "Play" again.
    Is there any way to do this restart with a push in button? If yes, where should it be connected in the X11?

    Or should this button be connected to start/restart the curtains and the robot should be restarted via de pendant anyway?

  • GOTO-MARKE/Label, Jumping OUT of LOOP

    • Mr.Question
    • August 2, 2023 at 4:16 PM

    But what happens if I use RETURN in the Main Program? (This main program is the one that is calling all the other subprograms).

    Does it also stops it?

  • GOTO-MARKE/Label, Jumping OUT of LOOP

    • Mr.Question
    • August 1, 2023 at 4:21 PM

    I need to use 3 different GOTOs and Labels that after a few actions lead to the END of the program.

    Of of them is inside a loop.

    Basically I am checking the value of a variable in 3 different places in the same program. (One of the verification is inside the LOOP and the idea in this case is to jump out of that LOOP).

    The idea was to have something like:

    Code
    DEF Main_Ciclo( )
    
    IF lowerIndex < 0 THEN
    GOTO Execption0
    ENDIF
    
    Program1()
    Program2()     
    Program3()
    
    IF lowerIndex < 0 THEN
    GOTO Execption1
    ENDIF
    
    Program4()
    Program5()
    Program6()
    
    LOOP
    IF lowerIndex < 0 THEN
    GOTO Execption2
    ENDIF
    
    Program7()
    Program8()
    Program9()
    
    ENDLOOP
     
    
    Execption0:
    ;Some movements of the robot and routines and eventualy
    END (End of the running program)
    
    Execption1:
    ;Some movements of the robot and routines and eventualy
    END (End of the running program)
    
    Execption2:
    ;Some movements of the robot and routines and eventualy
    END (End of the running program)
    Display More

    What set the end of these Markes/Labels since there will be some code and movements on them?

  • program reset

    • Mr.Question
    • August 1, 2023 at 3:57 PM
    Quote from panic mode

    why use old manual for KSS8.2 (KSS_82_SI_en) when you are using much newer KSS (8.7)?

    three are rules when and unconditional jumps are possible. for example you cannot jump out of program or across incompatible blocks (for example from one CASE block to another, jumping into loop etc.).

    Code
    GOTO program_middle
    program_start:
    
    ; do something (part A)
    
    GOTO program_end
    program_middle:
    
    ; do something (part B)
    
    program_end:
    
    ; do something (part C)
    GOTO program_start
    Display More

    also i am way to skeptical that someone unable to figure out GOTO can understand how interrupts function. and one should not do anything time consuming inside interrupts, or something involving complex motions like moving robot through the maze even if one calls that home recovery (bringing robot home).

    same goes for selecting/cancelling/resetting program. all of this is documented and as stated in the documentation - this need to be done in another interpreter. if you want to start submit #4, you can do that from robot program or submit #7 or submit #2 but not from submit #4 (never itself). if you want to start (or reset) robot pram you can do that from one of submits bit from robot program itself.

    Regarding those GOTO, what sets the end of the Marke/Label?

  • KRC4 + Ligh Curtains

    • Mr.Question
    • July 7, 2023 at 10:10 AM

    I am trying to connect some light curtains Safety Barriers from Schneider - Telemecanique (XUSL4E/XUSL2E...) to a X11 on a KRC4. The barriers have OSSD1 and OSSD2 outputs.
    My question is, where exactly should I wire this two OSSD1 and OSSD2 signals on X11 plug? (Operator Safety (A) and Operator Safety (B) maybe)?

    Or do I need some kind of relay in between those Operator Safety that activates with those OSSDs?

  • Safety Barriers, Emergency Stop and Acknowledge Operator Safety

    • Mr.Question
    • June 19, 2023 at 12:10 PM

    Can the Acknowledge Operator Safety (after passing the Safety Barriers) be done on the Pendant?

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