ClicK PLC- question about inputs and timers

quietman187

Member
Join Date
Aug 2016
Location
Daphne, AL
Posts
25
Hey there all. Student in training here. I have a kind of dumb question about Click programming.

How do I have an input (momentary push button)and put a timer on it so that when it is pushed, the logic wont recognize it for 15 mins? then after 15 mins the button will be "active" again.
 
Haven't worked with click, but generally speaking:

The button will set a bit
The set bit will start a timer
When timer runs out, reset bit.
Now button can set bit once again.
 
Haven't worked with click, but generally speaking:

The button will set a bit
The set bit will start a timer
When timer runs out, reset bit.
Now button can set bit once again.

But what about the output? Putting a timer on input will delay my output by 15 mins, I need it to release the solenoid instantly (which it does now), but then be dead for 15 mins.
 
When you start the timer, set an internal bit. In a separate rung, when the timer expires, reset the bit. Use this bit to condition your rung where you have your output so that while the internal lock out bit is on (timer active) the output cannot fire.
 
When you start the timer, set an internal bit. In a separate rung, when the timer expires, reset the bit. Use this bit to condition your rung where you have your output so that while the internal lock out bit is on (timer active) the output cannot fire.

Hmmm, okay. I think I get what you are saying. I will try before lunch and post results. Thanks!
 
is the push button an HMI input or a physical button? The reason I ask is that the memory address is different for physical inputs(X1 example) than an hmi (C1 example). One way to do it is to set on a internal bit from the phyiscal input/hmiinput that goes to the the timer and use a reset coil when the timer is done.
 

Similar Topics

How do you code it to when you push a button attached to X001, it turns on Y001. Then, the next time you push the button attached to X001 it...
Replies
4
Views
1,607
Have a quick question while troubleshooting- I have connected my input 24V rocker switch to the inputs and have no problem there, the green LED...
Replies
19
Views
5,349
Hi, I'm relatively new to PLCs and I currently own the Koyo Click PLC. I haven't really been able to fully grasp the idea of memory addresses. So...
Replies
3
Views
2,506
we need to control a fiber optic polishing machine , the sequence of events is this . 1. hit start switch timer 1 runs for XX period of time and...
Replies
33
Views
16,016
Complete noob here, using a Click C0-02DD1-D to run a test stand. Requirement is to turn on motor run for X seconds, turn off and dwell for X...
Replies
6
Views
1,067
Back
Top Bottom