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
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • Articles
  • Pages
  • Forum
  • Blog Articles
  • Products
  • More Options
  1. Robotforum - Support and discussion community for industrial robots and cobots
  2. Forum
  3. Industrial Robot Support and Discussion Center
  4. Fanuc Robot Forum
Your browser does not support videos RoboDK Software for simulation and programming
Visit our Mainsponsor
IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Sponsored Ads

Time since last move?

  • sfratto
  • March 24, 2023 at 5:00 PM
  • Thread is Unresolved
  • sfratto
    Trophies
    1
    Posts
    1
    • March 24, 2023 at 5:00 PM
    • #1

    At my plant we have 8 R-30iB Mate Plus used to cut down the repetitive motion for the operators. the lines can run without the robots but with robots running the operators are expected to run 2 lines instend of just 1. what I believe is happening is operators shut down the robots once management leaves and then starts them back up in the morning or claims they just went down. my questions is, is there something I can use through the teach pendent to see time since last move? the operators have a homing key switch so normally the robot is home by the time I get there and faults are cleared (I thought about monitoring when it faulted but that doesn't prove when the robot was turned off). I looked at the system timers and maybe its me not fully understanding them but it didn't look like they were what I was looking for. as far as using the PLCs in the main machine the German company that makes the machine keeps the programing and we don't have the ability to add monitoring ourselves, we could pay to have something put in but if there is something I can do with the TP that would be the preferred method.

    if you need any additional information please let me know. thank you for any assistance.

  • panic mode March 24, 2023 at 5:40 PM

    Approved the thread.
  • Shellmer
    Reactions Received
    52
    Trophies
    5
    Posts
    161
    • March 25, 2023 at 2:14 AM
    • #2

    Relating to something I just wrote on another post, you may be able to store the current time of the robot writting on bglogic the time into a register.

    Assuming the variable $FAST_CLOCK is reset after a powerup (i dont have a controller here to check if it works that way), you can check if robot controller was restarted by checking if the new value is lower than the last one stored to know if robot was powered down. This should be running on bglogic:

    Code
    1: IF ($FAST_CLOCK < R[10]), JMP LBL[100] ; jump to the code where a flag is set indicating powerdown
    2: JMP LBL[200] ; jump to end and update register
    3: ;
    4: LBL[100] ;
    5: F[5]=ON ;
    6: ;
    7: LBL[200] ;
    8: R[10]=$FAST_CLOCK ; store the current time
    9: LBL[999]

    You should reset the flag manually each time the condition triggers.

    To know the exact time robot is started again I suppose it can be done by using karel, there may be some finction to get the full date and time of the controller, if so you can store it every time thst flag is set.

    If you try this, let me know if it works or if that variable is reset after every powerup.

  • Five Taco
    Reactions Received
    3
    Trophies
    2
    Posts
    7
    • March 25, 2023 at 7:10 PM
    • #3

    There is an alarm "SRVO-012 Power failure recovery", it comes up after hot start.

    You could check MENU>ALARM>F3 (HIST) or Motion Log. But keep in mind that this alarm can be out flooded with other alarms during production.

    Or you could check LOGBOOK.LS in MD: directory (or make AOA and open with notepad). It would include robot time as well like this.

    ========================================

    Power failure recovery

    25-MAR-23 19:58 :36

    ========================================

    It again can be out flooded by other stuff (for example "ENTER is pressed"), but those can be disabled in $LOGBOOK variable group. There is are a lot, but some could be guest like $LOG_UF means UserFrame. Or check the "Software Reference Manual".

  • Five Taco
    Reactions Received
    3
    Trophies
    2
    Posts
    7
    • March 25, 2023 at 7:17 PM
    • #4

    Also forgot that alarm history can show you time. :sleeping_face:
    Click on F5 (Detail) on selected alarm.

Advertising from our partners

IRBCAM
Robotics Channel
Robotics Training
Advertise in robotics
Advertise in Robotics
Advertise in Robotics

Job Postings

  • Anyware Robotics is hiring!

    yzhou377 February 23, 2025 at 4:54 AM
  • How to see your Job Posting (search or recruit) here in Robot-Forum.com

    Werner Hampel November 18, 2021 at 3:44 PM
Your browser does not support videos RoboDK Software for simulation and programming

Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • robodk
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Thread Tag Cloud

  • abb
  • Backup
  • calibration
  • Communication
  • CRX
  • DCS
  • dx100
  • dx200
  • error
  • Ethernet
  • Ethernet IP
  • external axis
  • Fanuc
  • help
  • hmi
  • I/O
  • irc5
  • IRVIsion
  • karel
  • kawasaki
  • KRC2
  • KRC4
  • KRC 4
  • KRL
  • KUKA
  • motoman
  • Offset
  • PLC
  • PROFINET
  • Program
  • Programming
  • RAPID
  • robodk
  • roboguide
  • robot
  • robotstudio
  • RSI
  • safety
  • Siemens
  • simulation
  • SPEED
  • staubli
  • tcp
  • TCP/IP
  • teach pendant
  • vision
  • Welding
  • workvisual
  • yaskawa
  • YRC1000

Similar Threads

  • Subprogram skips out of Main and shows Errors INTP-105 and MCTL-105

    • TP77
    • August 20, 2022 at 3:08 PM
    • Fanuc Robot Forum
  • Should $MOVE_ENABLE be assigned to an input other than $IN[1025]?

    • robotninja
    • February 9, 2023 at 9:57 PM
    • KUKA Robot Forum
  • Auto HOME procedure

    • casper
    • March 20, 2020 at 3:11 PM
    • Fanuc Robot Forum
  • ERROR (-1418) Amp main circuit voltage in power block A - in AD Kawasaki control

    • SINTETIKA
    • October 6, 2022 at 8:01 AM
    • Kawasaki Robot Forum
  • Bit of a coding Conundrum

    • Ash
    • January 31, 2022 at 6:25 PM
    • KUKA Robot Forum
  • Resurect a kr150L150 with KRC1 [OVERCURRENT ERROR AXIS 4]

    • tmuthesius
    • July 6, 2020 at 12:47 PM
    • KUKA Robot Forum
  • Seeking Advice: Robotics Art Project - $25 Reward

    • Robo_Bird
    • September 11, 2020 at 12:17 AM
    • General Robotics Discussions - everything but NO Industrial Robots
  • Get length of a 3-D char array

    • zaidb
    • September 9, 2020 at 9:02 PM
    • KUKA Robot Forum
  • Timing analysis

    • Affaltar
    • July 14, 2020 at 9:27 AM
    • General Discussion of Industrial Robots Only
  • KRC4 Display in sleep mode

    • pancholiph
    • May 10, 2016 at 11:38 AM
    • KUKA Robot Forum

Tags

  • Fanuc
  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