Sign in to follow this  
Followers 0
BoVice

retentative timers

3 posts in this topic

hey guys, I'm currently working on the final portions of my project. I'm a fresh graduate out out of school and was trained on Allen Bradley, so im not familiar with the Omron gear. i need to make a timer which will track the time that a machine has been running for. after 1000 hours a service light will come on. Allen Bradley retentative timers are pretty straight forward, but im having trouble grasping it with cx programmer. a point in the right direction would be appreciated. thanks

Share this post


Link to post
Share on other sites
Something you might want to try is using a totalizing timer (Omron's rendition of a retentive timer), and use it to operate a counter. The totalizing timer is TTIMX (use the X if you have set the PLC to run in Binary mode, or without if in BCD mode). This kind of timer uses a reset input to clear it. Also keep in mind that most of Omron 's timers & counters decrement in value (whereas AB increments) - just a heads up. Good luck

Share this post


Link to post
Share on other sites
Hello BoVice, Welcome to the forum. As you are looking at 1,000 hours, I would suggest creating your own totalizer using the "Increment" instruction, pulsed by the PLCs 1 minute clock pulse. You could then compare the chosen memory area (if you use D area - say D0, this is retained) to 60,000, and if true, set the alarm bit, and at the same time reset D0 back to 0 so the whole process starts over. Totalizer.bmp Hope this helps

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0