Triggering another timer after the first one.

cartierusm

Member
Join Date
Oct 2016
Location
San Francisco
Posts
25
I'm trying to trigger a timer after the first one is finished.

So,
X003 triggers timer T1 and OFF delay timer
t1 turns on output Y103 for 8 seconds.

At the end of the that 8 seconds I need it to trigger another timer, an ON Delay timer.

Any help is appreciated. I'm very new to this.

I thought a drum timer might work, but having trouble figuring it out. Such as when you tell T1 to turn on with an input, then you have another rung with t1 triggering an output it doesn't seem to work that way with the drum timer.
 
Well judging by the x003 I'd say automation direct based.

I'm familiar with the click line. I'm away from my computer atm but I'll be on it in an hour. I'll post some code
 
How about:

Timer T1 Done
-----|\|----------------(Timer 2)---

For the Off Delay timer, the done bit is 1 only when the rung is false and the accumulator is greater than or equal to the preset.
 
I would do something like this:

dvNLBth.png
 
It is a Click PLC.

PapaSmiff, thanks for the help. I'm sooo new that what you wrote doesn't make sense to me. You'll have to dumb it down :geek:

Here's what I have and what I understand.

Click PLC Programming:

X003-----------------------T1 (OFF Delay - 8 Sec.)
T1--------------------------Y102 (Timer turns on Y102 for 8 Sec.)

Not sure how to program to say when T1 is done as you suggested.
 
Gomez, I didn't know you could use an output to trigger something. I think that'll work.

I'm so new to this, pardon any stupid questions:

But why do I need to use C1 and T1 like that, can't I just do this?

click_timer.jpg
 
Gomez, I noticed that the timer below in your pic is T1. I didn't notice that before so I'm not sure what that circuit does. I need two timers. I need T1 to trigger T2 once T1 is finished.
 
Yea sorry, my timer should be t2. The reason I used the C1 is because a TON needs to be held on during the whole timing period.

EDIT

Have you verified your first timer does what you want? It doesn't look like it will work the way you have described.
 
So here's what I did. So when I didn't have a T2 to trigger reset of Y107, but rather have Y102 falling after T1 to trigger just a regular output, it works, but when I add in Y102 falling to trigger t2 to trigger Y107 it doesn't work.

timer.jpg
 
You can't use only the falling edge of Y102 as the enable to T2. Whatever is acting as the enable to T2 must be logic level 1 for at least the duration of the T2 preset in order the the T2 condition to become active. Something similar to the thing Gomez did above with the C1 latch feeding T1 could be done for T2 based on T1.

Keith
 
AH I get it now. I mean I don't get exactly what's going on, but when I programmed it the way gomez did the first time I must have got something wrong. Now I redid it and it works. Thanks a bunch all of you!!
 

Similar Topics

In Connected Components Workbench, using ladder logic, is there a relatively simple way to trigger something to happen repeatedly at a regular...
Replies
7
Views
3,459
Hi all. I am looking at a valve position which has been scaled for an operator HMI. The valve position is in 0-100% shown to the operator for...
Replies
6
Views
1,142
I have established communication with a sensor via ASCII protocol using the Micro-850 PLC. I have a program which writes to the sensor using an...
Replies
2
Views
1,893
In my lab we are using Controllogix plcs and RS 5000 for programming the PLCS. We have one PLC on a skid, and one PLC at our workbench and we...
Replies
3
Views
1,806
I am measuring level on 36 tanks and wanted to change the color of the tank on the screen as it was being filled or emptied to make it easy to...
Replies
10
Views
2,467
Back
Top Bottom