Simple push button speed steps

ktmtragic

Member
Join Date
Jan 2013
Location
Sydney
Posts
92
Looking for some help ! I need to change an inverters frequency using two speed steps. The operator uses a momentary push button. So first press speed 1 second press speed 2. I need to do this using relays at the moment. Can anyone help with a Simple line drawing ?
Thanks in advance
 
If you are just using 2 presets, i think it would be a bit easier to use a 2-position maintained selector or maintained pushbutton. You wouldn't need relays at all. If you prefer momentary with relay, there are latching relays that you can get.
 
IF we have the push-button as an input to the PLC....

IF the PLC controls two relays as outputs for the inverter speed...

THEN we are only talking about the push-button acting as a "toggle" between the two speeds, and there are a multitude of ways to do this (my favourite uses a counter, bit 0 will always toggle).

AND
we need to consider the "starting" speed if the PLC and/or the machine goes off during the process or cycle. It may be that the machine cannot start-up at the higher speed, so any "toggle" may need to be preconditioned.

More detail on your application is needed to make a better assessment.
 
So you need to consider how it is restarted - i.e Speed 1 or Speed 2 ?

My goto "toggle" using a counter is simple, the input just uses a CTU on a counter, and will work forever. Bit 0 of the counter accumulator is the bit that toggles, always, every time, and survives a PLC restart. If you need it pre-conditioned at a process/machine startup, then code it, if not, leave it alone.
 
So you need to consider how it is restarted - i.e Speed 1 or Speed 2 ?

My goto "toggle" using a counter is simple, the input just uses a CTU on a counter, and will work forever. Bit 0 of the counter accumulator is the bit that toggles, always, every time, and survives a PLC restart. If you need it pre-conditioned at a process/machine startup, then code it, if not, leave it alone.


Thanks that sounds simple. I will interface with a couple of relays.
 

Similar Topics

Q
Hello All, I'm struggling with a easy task! I wish to create a simple pushbutton using Siemens TP Designer for a Siemens TP070 Touch Panel...
Replies
0
Views
7,397
qeeplc
Q
Hi all, Writng a FB in ST on Beckhoff TC for a pulser which turns on and off on a cycle, is paused by turning bControlInput to FALSE, but resumes...
Replies
6
Views
243
I'm trying to build my Classic Step 7 programming skills this weekend. I get stuck on little things that are not covered in YouTube tutorials. I'm...
Replies
7
Views
306
I have a program that does a 7 second "scan" sensor calibration routine whenever a setting (setting is called assistance level or "AL" and ranges...
Replies
3
Views
201
Hi all, I have a simple question that I have overcomplicated and gotten stuck on. I have a variable, we can call it "light" that I need to stay...
Replies
4
Views
293
Back
Top Bottom