PLC Programming 2
PLC Programming 2
com
GupShupStudy.com 1
www.gupshupstudy.com
Contents
Introduction
PLC Basics
Function of a PLC
Inputs and Outputs
PLC Architecture and Wiring Diagrams
Network Protocols
Questions
Ladder Programming
Conditional Logic
Ladder Diagrams
Normally closed contacts
Outputs and latches
Internal relays
Timers
The Pulse Generator
Counters
Questions and exercises
Sequential Programming
Introduction
A Simple Automation Sequence
Evolution of the Sequential Function Chart
Programming using the Sequential Function Chart
Entering the SFC program into the PLC
Modifying an SFC Program
GupShupStudy.com 2
www.gupshupstudy.com
Selective Branching
Parallel Branching
GupShupStudy.com 3
www.gupshupstudy.com
Introduction
I have been teaching PLC programming for fifteen years and the question that
I hear most often from students is Can you recommend a book on this? In response
I have trotted out the titles of various standard text books but I have never come
across a book that really develops the skill of PLC programming instead of telling the
reader what PLCs are all about. I have finally decided to fill this gap in the market
myself.
What sort of PLCs do you use? is another popular question. It implies that
familiarity with one make and model of PLC will leave the programmer struggling
when asked to use a different type. I deliberately teach a generic style of
programming that allows the learner to switch between types of PLC as easily as
between different makes of electronic calculator. Every skill needs practice however
and my thanks are due to TriLogi for permission to use their excellent PLC simulator
software throughout this book. The students can load the software onto a computer
and practice the examples and exercises provided.
The third problem that authors have failed to address is the variety of
programming languages available. Ladder logic is by far the most popular
programming language in use because of its resemblance to hard-wire control
diagrams. On its own, however it is unsuitable for complex programs. As the
automation task grows so the ladder program expands organically, until only the
original programmer can find his way through the tangle of inputs and outputs, relays
and function blocks.
This problem has been solved by the use of Sequential Function Chart
(GRAFCET) methods but the obvious popularity of ladder logic persists. The solution
is to plan the program using a sequential function chart and then to enter it into the
PLC using ladder logic. In this way program is highly structured, standardised and
easy to debug and modify, while the familiarity of ladder logic is preserved.
The first two chapters of the book are used for programming basics. The
remainder concentrates on the control of automation sequences commonly found in
industry.
The examples used in the book have all been thoroughly tested and their
suitability for use in the classroom and in industry established.
GupShupStudy.com 4
www.gupshupstudy.com
Chapter 1
PLC Basics
1.1 Function of a PLC
A PLC is a microprocessor-based controller with multiple inputs and outputs.
It uses a programmable memory to store instructions and carry out functions to
control machines and processes.
The PLC performs the logic functions of relays, timers, counters and
sequencers. It has the following advantages:
Low cost
Reliability
Reprogramability
Program
Outputs
Inputs
PLC
LED
Photo
transistor
GupShupStudy.com 5
www.gupshupstudy.com
The PLC outputs are connected directly or indirectly (e.g. through a relay) to
actuator controls. Examples include solenoids on directional control valves, motors,
motor contactors, alarms and warning lights.
There are three main types of output module:
Relay (volt-free): The signal from the PLC operates a relay within the output
module connecting the control voltage to the output port and hence to the actuator.
Internal relay
contact
Common
port
Output
Port
Control
Voltage (+)
Solenoid
GupShupStudy.com 6
www.gupshupstudy.com
S1
S2
S3
X1
X2
X3
Y1
Y2
X4
Y3
GupShupStudy.com 7
www.gupshupstudy.com
a. Relays
b. Software elements
c. Inputs
d. Outputs
GupShupStudy.com 8
www.gupshupstudy.com
2.
Fig 1.6
In the diagram Fig 1.6 of a plc.
Why would it be necessary to
connect a PC?
Answer:
3.
Which option below
best describes the Answer:
action of an optocoupler?
GupShupStudy.com 9
www.gupshupstudy.com
4.
Fig 1.7
Study the diagram Fig 1.7 and pick the correct statement about it.
Answer:
a. When the power is switched on to the plc all the n/o relay contacts
shown close.
b. The 24 V supply shown is used to power the plc itself.
c. The plc energises an output by closing the relevant relay contact.
d. When the plc outputs are energised they are all latched on by the relay
contacts shown
5.
"This type of plc output is solid-state and is used for switching alternating current."
The description above best describes what type of switch?
Answer:
a. triac
b. push button
c. transistor
d. relay
GupShupStudy.com 10
www.gupshupstudy.com
Chapter 2
Ladder Programming
2.1 Conditional Logic
The PLC scans its inputs and, depending on the program, switches on or off
various combinations of outputs. The logic state of the output depends on the input
conditions and so the term conditional logic is used.
A simple example of conditional logic could be stated as follows:
A machine switches on if either of two start switches are closed and all of
three stop switches are closed.
The conditions could be realised by a hard wire solution as shown in Fig 2.1.
+V
Start 1
Start 2
Stop 1
Stop 2
Stop 3
0V
Machine
relay
Fig 2.1 Hard-Wire Conditional Logic Example
The two start switches are connected in parallel. Current will flow if one or
the other or both are closed. The start switches are normally open. This means that the
contacts are apart and no current flows when the switches are in their normal (or
unoperated or rest) state.
The three stop switches are connected in series. Current can only flow if the
first and the second and the third are closed. The stop switches are normally closed.
This means that the contacts are connected and current can flow when the switches
are in their normal state.
GupShupStudy.com 11
www.gupshupstudy.com
The relay is a switch with multiple contacts that is operated when its coil is
energised. The contacts are usually capable of carrying a larger current than pushbutton or limit switches. Large relays for motor starting are called contactors. The
schematic diagram for a typical relay is shown in Fig 2.2.
contacts
coil
n/o
n/c
Start 1
X1
Start 2
Stop 1
X2
X3
Stop 2
X4
Stop 3
X5
Y1
Machine Relay
GupShupStudy.com 12
www.gupshupstudy.com
To avoid later confusion regarding the concept of normally open (n/o) and
normally closed (n/c) it is worth looking again at Fig 2.3 and remembering that the plc
scans each input and asks Is it on or is it off? The five switches shown are external
devices and the PLC knows nothing about them. As far as the PLC is concerned, at
the moment, inputs X1 and X2 are off and X3, X4 and X5 are on.
I have written the ladder logic using the TriLogi software. (For details of
entering program elements see the Appendix)
It can be seen from the Fig 2.3 and Fig 2.4 that the output machine will not be
energised until one of the inputs Start 1 or Start 2 is switched on.Pushing any of the
three Stop switches will turn off the input and so de-energise the output. It is normal
practice to use normally closed push-button switches for stop buttons so that a failure
of control voltage supply has the same effect as the pressing of the stop button.
2.3 Normally closed contacts
The contact Start 1 in Fig 2.5 will be closed when the input is switched off and
so the output Machine will be switched on. Switching on the input opens the contact
and switches the output off. Remember that the nature (n/o or n/c) of the external
switch that turns the input on, has no effect on the ladder logic.
GupShupStudy.com 13
www.gupshupstudy.com
S2
X1
X2
Y1
DCV
Y2
Y3
Green
light
Red
light
Fig 2.6
Fig 2.7
Switching on the input S1 switches on the output DCV which in turn switches on the
red light. When the output DCV is off the green light is on.
GupShupStudy.com 14
www.gupshupstudy.com
Example 2.1
Write a PLC program to implement the conditional logic statements (a), (b)
and (c) below.
(a) A PLC output is to switch on if any of three inputs is switched on.
(b) A PLC output is to switch on if any one of three inputs is switched on but
not two or more.
(c) A PLC output is to switch on if any two outputs are switched on, but not the
third.
Solution
(a)
Fig 2.8
(b)
Fig 2.9
This program can be read:
The output switches on if Input 1 is on AND the other two are off, OR input 2 is on
AND the other two are off, OR input three is on AND the other two are off.
( c)
Fig 2.10
This program is similar to (b) above.
GupShupStudy.com 15
www.gupshupstudy.com
The push button and limit switches most commonly used in industrial
automation are the momentary contact type. A spring action reverts the switch to the
normal state as soon as the button or roller is released. These are obviously not the
same as the self- latching switches used, for example, in domestic circuits.
The fact that the majority of control switches are not self-latching is not as
inconvenient as it sounds. We can easily program in a latch in the ladder diagram.
Start
X1
Stop
X2
Y1
Fig 2.11
When the start push button switch in Fig 2.11 is pressed, the output Y1 is to switch
on and stay on until the stop button is pressed.
Fig 2.12
When the output Y1 is energised we use a normally open contact of it in parallel with
the start button to hold (or latch) it on. The output can only be de-energised by the
pressing of the stop button. Note that we have used a normally closed switch as a stop
button as explained in section 2.2.
GupShupStudy.com 16
www.gupshupstudy.com
Start 1
X1
Start 2
Stop 1
X2
X3
Stop 2
X4
Stop 3
X5
Y1
Machine Relay
Fig 2.13
The latch concept can be extended to any number of start and stop switches. The
output Y1 in Fig 2.13 is to be switched on by X1 or X2 and is to stay on until any of
the inputs X3, X4 or X5 is switched off. The required ladder diagram is shown in Fig
2.14 below.
Fig 2.14
GupShupStudy.com 17
www.gupshupstudy.com
Y1
Fig 2.16
GupShupStudy.com 18
www.gupshupstudy.com
Start
X1
a+
X2
Y1
Fig 2.17
The start button and the end-of-stroke limit switch a+ are the PLC inputs and the
solenoid Y1 is the output. Any other components needed for the program can be
created in software.
Fig 2.18
Pressing the start button latches on an internal relay called start_latch. The
start_latch relay switches on the output Y1 which energises the solenoid, and the
cylinder extends. The cylinder rod closes the limit switch a+ which starts the timer in
software. When the timer set value time has elapsed the normally-closed contact
Timer_1 in the first line of the program de-energises the Start_latch relay and the
cylinder returns.
GupShupStudy.com 19
www.gupshupstudy.com
The timer set value in the TRiLOGI software is in units of 0.1 s. For a 5 s delay a
value of 50 is entered in the drop-down menu. (More details are given in the
appendix)
We can do another example using the same hardware with the addition of an alarm as
a second output:
Start
X1
Y1
a+
X2
Y2
Fig 2.20
GupShupStudy.com 20
www.gupshupstudy.com
When the start push button is pressed and released there is a 5 s delay before the
cylinder extends and returns. An alarm sounds during the 5 s delay.
Fig 2.21
When the start button is pressed the start_latch relay is energised. The
Start_latch relay switches on the timer input and the alarm. When the timer set value
has elapsed the alarm switches off and the solenoid Y1 is energised. When the
cylinder is fully extended the limit switch a+ de-energises the start_latch relay which
de-energises the solenoid and resets the timer.
The input to the delay-on timer must remain on for the duration of the timer set
value otherwise the timer will not operate. If the signal to start the timer is only
momentary then a latch is used to sustain it. When the input to the timer switches off,
the timer contacts revert immediately to their normal states.
In some PLC models a timer function block can be is located in the centre of a
rung as shown in Fig 2.22. When the timer set value has elapsed the timer output
switches on allowing a software signal to energise an internal relay coil or an output.
In this book all timer function blocks are located at the right hand side of the ladder
diagram and their contacts, normally-open or normally closed, have the same label as
the timer.
Timer 1
5 sec
in
out
Fig 2.22
The delay-off timer causes a delay between its input switching off and its contacts
reverting to their normal states. The delay-on timer is used throughout this book.
GupShupStudy.com 21
www.gupshupstudy.com
Y1
Fig 2.23
Start
X1
Stop
X2
Y1
Fig 2.24
When the Start button in Fig 2.24 is pressed the cylinder in Fig 2.23 oscillates,
extending for 2 s and returning for 1 s until the Stop button is pressed.
GupShupStudy.com 22
www.gupshupstudy.com
Start pressed
Stop
pressed?
End
Timer 1 input on
Timer 1 delay
Output on
Timer 2 input on
Timer 2 delay
Timer 1 input off
Output off
Timer 2 input off
GupShupStudy.com 23
www.gupshupstudy.com
2.7 Counters
A counter allows a number of occurrences of input signals to be counted. The
counter is set to a preset number value and when this value of input pulses has been
received, it will operate its contacts. A second input or software coil is provided to
reset the current value of the counter to zero.
Consider the cam shaft in Fig 2.27.
Fig 2.27
When a start button has been pressed the shaft is to make 10 revolutions and then
stop. Pressing the start button also resets the counter. The PLC wiring diagram is
shown in Fig 2.28.
Start
X1
X2
Y1
Motor
contactor
Fig 2.28
GupShupStudy.com 24
www.gupshupstudy.com
Fig 2.29
The pulse generator and counter can be combined as shown in this final
example.
When a start push button is pressed and held down, an alarm sounds six times
before a conveyor starts. Pressing the conveyor stop button also resets the counter.
Fig 2.30 and Fig 2.31 show a solution to the problem.
Start
X1
Stop
X2
Y1
Conveyor
Fig 2.30
GupShupStudy.com 25
www.gupshupstudy.com
Fig 2.31
GupShupStudy.com 26
www.gupshupstudy.com
Fig 2.32
Answer:
2. Pick the incorrect statement below about the ladder diagram shown
Fig 2.33
Answer:
3. Which form of logic gate system is given by a ladder diagram with a rung having two
normally open sets in parallel as shown?
Fig 2.34
Answer:
a. OR
b. NOR
c. AND
d. NAND
GupShupStudy.com 27
www.gupshupstudy.com
4. Which form of logic gate system is given by a ladder diagram with a rung having two
normally open sets of contacts in series as shown?
Fig 2.35
Answer:
a. NOR
b. NAND
c. OR
d. AND
Fig 2.36
5.
Fig 2.37
Pick the one correct statement below regarding the ladder diagram Fig 2.37
Answer:
GupShupStudy.com 28
www.gupshupstudy.com
6.
Fig 2.38
Pick the one incorrect statement below regarding the ladder diagram Fig 2.38.
Answer:
7.
Fig 2.39
Pick the one correct statement below regarding the ladder diagram Fig 2.39
Answer:
8.
Fig 2.40
Pick the one incorrect statement below regarding the ladder diagram Fig 2.40
GupShupStudy.com 29
www.gupshupstudy.com
Answer:
a. S2 can be used to switch off the light before the timer delay is
complete.
b. The light output is latched on.
c. When the timer delay is finished the light comes on.
d. The light remains on for a time equal to the timer delay setting.
9.
Fig 2.41
Pick the one correct statement below regarding the ladder diagram Fig 2.41
Answer:
a. When switch S1is pressed and released there is a delay equal to the
timer setting before the alarm sounds.
b. If S1 is to latch on immediately it has been pressed, a normally-open
timer contact should be connected in parallel with it.
c. When switch S1is pressed and released the alarm sounds for a time
equal to the timer setting.
d. The normally-closed timer contact prevents the alarm sounding or the
timer being energised.
10.
Fig 2.42
In the ladder diagram Fig 2.42 the counter preset = 5. Choose the one incorrect
statement below
Answer:
GupShupStudy.com 30
www.gupshupstudy.com
11. A PLC is to be used to control a flood light. When a sensor with a normally open
contact detects movement the light is to switch on for 10 seconds and then switch off.
Draw the necessary PLC wiring diagram and the ladder logic to operate the system as
designed.
12. A PLC is to be used to control the drive for a car window. When a momentary
contact switch switch is pressed the window starts to open. If the switch is closed for
more than 1 second, the window contunues opening until fully open. A second switch
does the same thing to close the window. Limit switches are provided to detect the
window fully open or fully closed positions. Draw the necessary PLC wiring diagram
and the ladder logic to operate the system as designed.
13. A PLC is used to control a conveyor system. A sensor with a normally open
contact sees items passing on the conveyor. When 10 items have passed, the conveyor
stops, a cylinder extends and retracts and the conveyor runs again until another 10
items have passed. Draw the necessary PLC wiring diagram and the ladder logic to
operate the system as designed.
GupShupStudy.com 31
www.gupshupstudy.com
Chapter 3
Sequential Programming
3.1 Introduction
Most machine operations are sequential in nature so it is necessary for the
PLC to switch outputs depending not only on the input combinations but also on the
current stage in the sequence. An output operating at the wrong time could cause
damage or injury so the correct programming technique is critical.
3.2 A simple automation sequence
a-
b-
a+
b+
Y1
Y2
Y3
Y4
Fig 3.1
The two cylinders A and B in Fig 3.1 are to go through the sequence
A+ B+ A- BReed switches a-, a+, b- and b+ have been fitted to detect the magnetised
cylinder pistons through the aluminium cylinder bodies. The 5 port 2 position
directional control valves (5/2 DCVs) are double-solenoid operated.
GupShupStudy.com 32
www.gupshupstudy.com
Stop
X1
Y1
a-
X2
X3
Y2
b-
b+
X4
X5
X6
Y3
Y4
Fig 3.2
Each event in a sequence is started by the completion of the previous event.
When reed switch a+ ,for example, closes, it signals the end of event A+ (the
extension of cylinder A) and the beginning of B+ (the extension of cylinder B).
We will write the program line-by-line on this basis.
Fig 3.3
Pressing the Start button causes the cycle to execute once. The reed switch b- is
not required neither is the Stop button
Latching on the Start button with an internal relay and encorporating the reed
switch b- causes the cycle to repeat until the Stop button is pressed. This is shown in
Fig 3.4.
GupShupStudy.com 33
www.gupshupstudy.com
Fig 3.4
It all seems pretty straightforward so far doesnt it? Lets try another sequence using
the same hardware.
A+ B+ B- A-
Fig 3.5
I have entered the ladder logic in a similar way to the first sequence. Everything
works fine until we get to the third rung of the program where the reed switch b+ is
supposed to energise solenoid Y4 to cause cylinder B to return. At this point both
cylinders are extended as shown in Fig 3.6.
GupShupStudy.com 34
www.gupshupstudy.com
a-
Y1
a+
Y2
b-
Y3
b+
Y4
Fig 3.6
The fact that cylinder A is also extended means that reed switch a+ is closed
and therefore solenoid Y3 is energised, cylinder B therefore cannot return. This
situation is called a trapped signal. It is characterised by having both solenoids of a
double solenoid directional control valve simultaneously energised and it prevents us
from programming many circuits in a simple sequential fashion.
The realisation of this sequence is even more difficult using single-solenoid,
spring return directional control valves because latching is required and we are still
only dealing with a two cylinder problem.
Trapped signals also occur in pneumatics and in electro-pneumatics and various
methods are employed to get over the problem. The best known of these is the
cascade system but it is only of practical use in simple systems.
3.3 Evolution of the Sequential Function Chart
As PLC sequences became more complex during the 1970s, the need grew for
a universal programming method that would standardise PLC programs and also solve
commonly encountered problems such as trapped signals.
In 1975 a working group, drawn from the Association Franaise pour la
Cyberntique Economique et Technique, developed GRAFCET (GRAphe Foncionnel
de Commande, Etapes, Transitions) which has since formed the basis of the
Sequential Function Chart method of programming.
GupShupStudy.com 35
www.gupshupstudy.com
Until the IEC 61131-3 standard was published in March 1993, there was no
suitable standard that defined the way control systems such as PLCs could be
programmed.
Ladder Programming has become as one of the most popular graphical
languages for programming PLCs mainly because of its ressemblance to hard-wire
control circuits. Unfortunately its suitability for building complex sequences is
limited.
The Sequential Function Chart (SFC) is an extremely effective graphical
language for expressing the high level sequential parts of a control program. The best
of both worlds approach is to plan the program using SFC and then to translate it into
ladder logic, it is this approach that we will take to solving automation problems in
the remainder of this book.
3.4 Programming Using the Sequential Function Chart
S1
T1-2
S2
T2-3
S3
T3-0
GupShupStudy.com 36
www.gupshupstudy.com
a-
a+
Y1
Fig 3.8
Example 3.1 When a start push button is pressed the cylinder in Fig 3.8 is to
extend and retract, repeating until a stop button is pressed. When the system is
powered up and ready a green light Y2 is on and while the cylinder is oscillating, a
red light Y3 is on.
We draw a PLC wiring diagram as usual.
Start
X1
Y1
Stop
X2
a-
a+
X3
X4
Y2
Y3
Fig 3.9
Now we complete the sequential function chart (SFC)
GupShupStudy.com 37
www.gupshupstudy.com
S1
(wait)
(green light)
T1-2
(start )(stop)
S2
(A+)(red
light)
T2-3
(a+)
S3
(A-)(red
light)
T3-0
(a-)
States: S1, S2 and S3 are respectively States 1, 2 and 3. The event or events occurring
during each state are written in brackets in the state box.
e.g. S2 (A+)(red light) means that when state 2 is active cylinder A extends and
(the dot means and) the red light is on.
Transitions: The transitions represent the changeover from one state to another. The
origin and destination states are indicated by the transition label. The input or timer
that activates the transition is written in brackets under the transition title. The label
(start )(stop) under T1-2 means that the start button has been pressed and the stop
button has not been pressed. In ladder logic this translates as The start enable relay is
latched on.
GupShupStudy.com 38
www.gupshupstudy.com
Each state and transition is assigned an internal relay. When the state or
transition is active, its relay is turned on. We write down the states and transitions
with their associated relays in an assignment list.
S1
S2
S3
T1-2
T2-3
T3-0
R1
R2
R3
R4
R5
R6
Initial Conditions
Transitions
States
Outputs
Timers
Counters
The ladder diagram is shown below broken into sections for clarity (Fig 3.11 to
Fig 3.15) . In the program these sections just follow one another in sequence.
Initial Conditions
The only initial condition for this program is the latching on of the start button
by an internal relay. Low numbered relays are mostly taken up as labels for states and
transitions so I picked R50 for this purpose and for clarity I have used the Start_Enbl
label.
Fig 3.11
GupShupStudy.com 39
www.gupshupstudy.com
Transitions
There is a minimum of two conditions for a transition to occur. The relevant
state must be active and the input (or timer contact) that indicates that the event is
completed must be on. Table 3.1 shows the transition conditions for this program.
State
Transition
Condition
Transition
S1
Start_Enbl relay
T 1-2
S2
Input a+
T 2-3
S3
Input a-
T 3-0
Table 3.2
Now we can enter the transitions as ladder logic.
GupShupStudy.com 40
www.gupshupstudy.com
GupShupStudy.com 41
www.gupshupstudy.com
Example 3.2.
a-
b-
a+
Y2
Y1
b+
Y4
Y3
Fig 3.16
Start
Stop
X1
Y1
a-
X2
X3
Y2
b-
b+
X4
X5
X6
Y3
Y4
Fig 3.17
Well use the SFC method to implement the sequence
A+ B+ A- BThe SF chart is shown in Fig 3.18 and the assignment list in Table 3.3.
GupShupStudy.com 42
www.gupshupstudy.com
S1
T1-2
(start)(stop)
S2
(A+)
T2-3
(a+)
S3
(B+)
T3-4
(b+)
S4
(B-)
S5
(A-)
T4-5
(b-)
T5-0
(a-)
Fig 3.18
S1
S2
S3
S4
S5
T1-2
T2-3
T3-4
T4-5
T5-0
R1
R2
R3
R4
R5
R6
R7
R8
R9
R10
Table 3.3
GupShupStudy.com 43
www.gupshupstudy.com
Initial Conditions
Transitions
States
Outputs
Timers
Counters
Initial Conditions
Fig 3.19
Transitions
Fig 3.20
GupShupStudy.com 44
www.gupshupstudy.com
States
Fig 3.21
Outputs
Fig 3.22
GupShupStudy.com 45
www.gupshupstudy.com
Fig 3.23
Fig 3.24
The cylinder sequence remains unchanged so cylinder A still extends during
State 2 and must stay extended during states 3 and 4.
GupShupStudy.com 46
www.gupshupstudy.com
The only part of the ladder logic that needs to be modified is the output section.
This is shown in Fig 3.25.
Fig 3.25.
3.7 Use of Timers and Counters in SFC Programming
In the two examples that we have seen (3.1 and 3.2) PLC inputs have been used
to enable transitions from one state to the next. Sometimes timers or counters are used
instead of inputs. For example, a container of liquid is stirred for 20 seconds or a shaft
rotates 5 times to index a conveyor.
Well start with an example that includes a timer. We can use the same
hardware as Example 3.1
a-
a+
Y1
Fig 3.26
GupShupStudy.com 47
www.gupshupstudy.com
Start
X1
Y1
Stop
X2
a-
a+
X3
X4
Y2
Green
Y3
Red
Fig 3.27
Example 3.3 The cylinder shown in Fig 3.26 is to extend, remain extended for 3
seconds and then return. While the cylinder is extended, the red light Y3 is on and
while it is retracted the green light Y2 is on. The SF chart is shown in Fig 3.27.
S1
T0-1
(start )(stop)
S2
(A+)
T2-3
(a+)
S3
(3s)
delay)
T3-4
(t=3s)
S4
(A-)
T4-0
(a-)
Fig 3.27
GupShupStudy.com 48
www.gupshupstudy.com
S1
S2
S3
S4
T1-2
T2-3
T3-4
T4-0
R1
R2
R3
R4
R5
R6
R7
R8
Table 3.4
Initial Conditions:
Fig 3.28
Transitions:
Fig 3.29
GupShupStudy.com 49
www.gupshupstudy.com
States:
Fig 3.30
Outputs:
Fig 3.31
Timer:
Fig 3.32
So when State 3 becomes active the timer starts (Fig 3.32). When the delay has
finished a normally open contact of the timer is used to activate Transition 3-4 (Fig
3.29).
GupShupStudy.com 50
www.gupshupstudy.com
Fig 3.33
Fig 3.34
Write a PLC program that indexes the conveyor by one pitch when a start
button is pressed.
The SF chart, PLC wiring diagram and assignment list are shown below.
GupShupStudy.com 51
www.gupshupstudy.com
S1
(wait)
T1-2
(start )
S2
(Conveyor
Drive)
T2-3
(C1)
Start
Cam
Switch
X1
Y1
Conveyor
Drive
Fig 3.36 PLC Wiring Diagram
GupShupStudy.com 52
www.gupshupstudy.com
S1
S2
T1-2
T4-0
R1
R2
R5
R8
Fig 3.37
States:
Fig 3.38
Outputs
Fig 3.39
Counter
Fig 3.40
GupShupStudy.com 53
www.gupshupstudy.com
During State 2 the conveyor drive is energised (Fig 3.39) and the closing of
the cam switch increments the counter. The counter is reset by the pressing of the
Start button (Fig 3.40).
Questions and Exercises 3
1.
Fig 3.41
Fig 3.42
The dcv and cylinder in Fig 3.41 are controlled by a plc with the program shown in Fig
3.43. If the 5/2 solenoid/spring dcv was replaced by a 5/2 doubl e solenoid dcv and the
second solenoid, Y2, connected to plc output Y2, then which statement below correctly
describes during which
states the outputs Y1 and Y2 Answer:
a. Y1 in states 1 and 3, Y2 in state 2
would be energised?
b. Y1 in states 1 and 3, Y2 in states 0 and 2
c. Y1 in state 0, Y2 in state 3
d. Y1 in state 1, Y2 in state 2
GupShupStudy.com 54
www.gupshupstudy.com
2.
Fig 3.43
Select the
only correct Answer:
statement
regarding the
diagram Fig
3.43.
3.
Fig 3.44
Select the only incorrect statement below regarding the diagram Fig 3.44.
Answer:
GupShupStudy.com 55
www.gupshupstudy.com
4.
Fig 3.45
Fig 3.46
Select the only correct statement below regarding Fig 3.45 which is used to control the
pneumatic cylinder
A in Fig 3.46.
Answer:
a. Input LS4 enables Transition 4-0
b. No output is switched on during state 3
c. The internal relay S3 is used to energise the timer.
d. No input is required for transition 0-1.
GupShupStudy.com 56
www.gupshupstudy.com
5.
Fig 3.47
Select the only incorrect statement below regarding Fig 3.47.
Answer:
6.
Fig 3.48
Fig 3.49
Which option below correctly identifies the fault with the ladder conditions shown in Fig
3.48 for state 2 of Fig 3.49?
Answer:
GupShupStudy.com 57
www.gupshupstudy.com
7.
Answer:
GupShupStudy.com 58
www.gupshupstudy.com
8.
Fig 3.51
Select the only correct statement below regarding Fig 3.51
Answer:
GupShupStudy.com 59
www.gupshupstudy.com
9.
It is necessary to automate the drilling of 2 holes in the clamp body shown in Fig
3.52. Both holes are at an angle of 45 to the vertical .
For the drilling operation, the clamp is mounted on the rotation jig shown in Fig 3.53
Two views of the drill assembly are shown in Fig 3.54. Each double acting
pneumatic cylinder is operated by a double solenoid 5/2 directional control valve.
Limit switches are positioned as shown to detect the advanced and retracted cylinder
positions.
When the start button is pressed the sequence is as follows
1. The first hole is drilled.
2. The jig is unclamped by cylinder I.
3. The jig is rotated through 90 by the rack on cylinder R.
4. The jig is clamped (cylinder I).
5. The second hole is drilled.
6. The jig is unclamped (cylinder I)
7. The jig is rotated back through 90 (cylinder R).
8. The jig is clamped (cylinder I).
The drill motor runs continuously throughout the sequence.
(a) Draw the appropriate state/transition diagram.
(b) Draw a suitable plc wiring diagram assigning I/Os as necessary.
(c) Draw the lines of ladder logic to operate the system as designed.
GupShupStudy.com 60
www.gupshupstudy.com
GupShupStudy.com 61
www.gupshupstudy.com
10.
Fig 3.55
The diagram Fig 3.55 shows a quick approach circuit for a drill. When a start push
button is pressed the drill motor starts and the drill assembly quickly approaches the
work piece. When the limit switch b1 is reached the drill continues slowly until the
end-of-stroke limit switch b2 is closed. The assembly then returns to the top position
and the drill motor stops. The hydraulic pump may be assumed to run continuously.
(a) Draw a plc wiring diagram for the system.
(b) Draw a suitable state/ transition diagram.
(c) Draw the ladder logic to operate the system as designed.
GupShupStudy.com 62
www.gupshupstudy.com
Chapter 4
Selective Branching
4.1 Introduction
It is often necessary for a production sequence to take one route or another
based on a decision factor. E.g. if a product is good the process goes on to the next
operation, if it is bad the product is rejected. SF chart programming copes easily
with this sort of situation.
Example 4.1
LS3
LS4
Gate
Gate
Switch
Y1
Fig 4.1
When a Start pushbutton is pressed and the gate is closed the cylinder in
Fig 4.1 is to extend for 3 seconds and then return. If the start button is pressed but the
gate is not shut, an alarm sounds until the gate is closed. A cycle on light is lit during
the time that the cylinder is not retracted.
GupShupStudy.com 63
www.gupshupstudy.com
The PLC wiring diagram is shown in Fig 4.2 and the SF chart in Fig 4.3
Start
Stop
a-
a+
guard
plc
Y1
cycle on
alarm
Fig 4.2
S1
T1-2
(strtgrd
shut)
T1-5
(strtgrd
shut)
S2
(A+)
S5
(alrm
T2-3
(a+)
T5-0
(grd
shut)
S3
(dly3s
T3-4
(tmr=3s)
)
S4
(A-)
T4-0
(a-)
Fig 4.3
GupShupStudy.com 64
www.gupshupstudy.com
If the guard switch is closed and the start button is pressed then the transition 12 is activated and the cylinder cycle starts. If, however the guard is open and the start
button is pressed then transition 1-5 becomes active and the alarm sounds until the
guard is closed.
The assignment list is shown in Table 4.1
S1
S2
S3
S4
S5
T1-2
T2-3
T3-4
T4-0
T0-5
T5-0
R1
R2
R3
R4
R5
R6
R7
R8
R9
R10
R11
Table 4.1
And so we can write the ladder logic.
Initial Conditions:
Fig 4.4
GupShupStudy.com 65
www.gupshupstudy.com
Transitions:
Fig 4.5
States:
Fig 4.6
GupShupStudy.com 66
www.gupshupstudy.com
Outputs:
Fig 4.7
Timer:
Fig 4.8
It is important to remember that the decision criteria whether to choose one
branch or another must be mutually exclusive. In this case it is the logic state of the
gusrd switch. This is a suitable criterion because the switch cannot be simultaneously
open and closed.
GupShupStudy.com 67
www.gupshupstudy.com
Example 4.2
Here is another example that uses the selective branching technique.
Fig 4.9
The cylinders above are to execute the sequence A+ B+ B- A- continuously
until a stop button is pressed when both cylinders will stop at the end of the
sequence.
If, however a self-latching switch is turned on, the cycle becomes A+, 5s
delay, A-, executed continuously as before.
(a) Draw a plc wiring diagram for the system.
(b) Write out an assignment list for the system
(c) Draw a sequential function chart for the system.
(d) Draw the ladder logic to operate the system as designed.
GupShupStudy.com 68
www.gupshupstudy.com
Solution
(a)
Select
Start
Stop
a0
a1
b0
b1
plc
Y1
Y2
Fig 4.10
GupShupStudy.com 69
www.gupshupstudy.com
(b)
S1
R1
T1-2
R9
S2
R2
T2-3
R10
S3
R3
T3-4
R11
S4
R4
T4-5
R12
S5
R5
T5-1
R13
S6
R6
T1-6
R14
S7
R7
R15
S8
R8
T6-7
T7-8
T7-8
T8-1
R17
R16
Table 4.2
GupShupStudy.com 70
www.gupshupstudy.com
(c)
S1
T1-6
(start)(stop)(select)
T1-2
(start)(stop)(select)
S6
(A+)
S2
(A+)
T6-7
(a1)
T2-3
(a1)
S3
(B+)
S7
(5 secs)
T3-4
(b1)
T7-8
(T=5 secs)
S8
(A-)
S4
(B-)
T4-5
(b0)
T8-1
(a0)
S5
(A-)
T5-1
(a0)
Fig 4.11
GupShupStudy.com 71
www.gupshupstudy.com
(d)
Initial Conditions:
Fig 4.12
Transitions:
Fig 4.13
GupShupStudy.com 72
www.gupshupstudy.com
States:
Fig 4.14
Outputs:
Fig 4.15
GupShupStudy.com 73
www.gupshupstudy.com
Timer:
Fig 4.16
GupShupStudy.com 74
www.gupshupstudy.com
Example 4.3
Here is a slightly more complicated example of a process that uses selective
branching. The solution is straightforward provided we stick to the method for SF
chart programming.
A process liquid is prepared in a tank as shown in Fig 4.9. The tank is filled
with liquid from pump A until the high level switch is reached, then a small amount
of liquid is added by running pump B for 10 seconds.. The mixture is stirred and
heated to 60 C before being manually drawn off as required.
Additive pump
B
stirrer
HL
inflow pump A
heater
LL
Outflow pump
C
Fig 4.17
GupShupStudy.com 75
www.gupshupstudy.com
S1
(wait)
T1-2
(start enabled
& LL off)
S2
(pump A)
T1-5
(start
enabled &
LL on )
T6-1
(LL off)
T5-6
(start pump
C)
S3
(pump B
10sec)
T2-3
(HL on)
T3-4
(tmr=10s)
S4
(heater &
stirrer)
T4-5
(T=60 C)
S5
(wait)
T5-4
(T=50 C )
S6
(pump C)
T6-5
( LL on)
Fig 4.18
GupShupStudy.com 76
www.gupshupstudy.com
When the 10 seconds are up the contents of the tank are ready to be mixed and
heated; this happens during State 4.
When the temperature of 60 C is reached, the system enters State 5, during
which no output is energised.
When Pump C is switched on (manually) State 6 becomes active. If the tank is
completely drained by pump C then State 1 switches on for the cycle to restart. If
however pump C is switched off while there is still liquid left then State 5 becomes
active again.
Another scenario occurs if, during State 5 the temperature of the mixture falls to
50 C. State 4 then becomes active and the mixture is heated and stirred until the
temperature once again reaches 60 C.
The only remaining transition to consider is T1-5. This occurs is there is liquid
in the tank at system start-up. When the start enable relay is energised state 5 becomes
active followed by state 4 if the liquid temperature is less than 50 C or by state 6 if it
is hot enough and pump C is switched on.
The PLC wiring diagram is shown in Fig 4.19 and the assignment list in Table
4.3.
thermostat 2
Start
Sto
p
LL
HL
manual empty
tank
thermostat 1
plc
pump A
pump B
pump C
stirrer
heater
Fig 4.19
GupShupStudy.com 77
www.gupshupstudy.com
S1
S2
S3
S4
S5
S6
T1-2
T2-3
T3-4
T4-5
T5-6
T6-1
T1-5
T5-4
T6-5
R1
R2
R3
R4
R5
R6
R7
R8
R9
R10
R11
R12
R13
R14
R15
Table 4.3
The SF chart is a tool that the designer can use when discussing his proposals
with the customer. The company safety officer might suggest the inclusion of panel
lights or alarms, the process operator will have experience of practicalities which the
designer may not have considered, the quality assurance manager may introduce
measurement requirements etc.
When the design has been agreed, typing in the ladder logic is probably the
easiest part of the job.
Initial Conditions:
Fig 4.20
GupShupStudy.com 78
www.gupshupstudy.com
Transitions:
Fig 4.21
GupShupStudy.com 79
www.gupshupstudy.com
States:
Fig 4.22
There are two routes into State 4 on the SF chart but only one route out of it.
Stated another way, State 4 can be switched on by T3-4 or T5-4 and is switched off by
T4-5. Similarly State 5 can be switched on by any of the three transitions T4-5, T1-5
or T6-5 and is switched off by T5-6 or T5-4. If you are in any doupt about this refer
back to section 2.4 Outputs and Latches.
GupShupStudy.com 80
www.gupshupstudy.com
Outputs:
Fig 4.23
GupShupStudy.com 81
www.gupshupstudy.com
1.
Fig 4.25
Which option correctly identifies the fault with the ladder conditions shown in Fig 4.25
for state 2 of the state/transition diagram shown in Fig 4.26?
Fig 4.26
Answer:
GupShupStudy.com 82
www.gupshupstudy.com
2.
Fig 4.27
The ladder diagram in Fig 4.28 is part of the sequential program in Fig 4.27.
Fig 4.28
Select the one correct statement below regarding both.
Answer:
a. It is wrong to have a state contact on the left and over on the ri ght as
well.
b. State 0 is the default state so it shouldn't be specified in terms of
transitions.
c. Trans 2-0 should be shown as a n/c contact not n/o.
d. Trans 0-1 and Trans 0-2 n/c contacts should be in parallel, not in series
as shown.
GupShupStudy.com 83
www.gupshupstudy.com
3.
Fig 4.29
Select the only correct statement below about the state/transition diagram Fig 4.29.
Answer:
GupShupStudy.com 84
www.gupshupstudy.com
4.
Fig 4.30
Fig 4.31
The ladder diagram Fig 4.31 is part of the program for the state/transition diagram Fig
4.30. Select the only correct statement below regarding both.
Answer:
a. The input 1 contact should be shown n/c on the first line of ladder logic.
b. Trans 0 is the default transition.
c. State 1 cannot be a part-condition for two transitions as shown in the
ladder diagram.
d. The ladder logic for for state 1 shows that you can't have a transition
out of and back into the same state
GupShupStudy.com 85
www.gupshupstudy.com
5.
Fig 4.32
Select the only incorrect statement below regarding the state/transition diagram Fig 4.32.
Answer:
GupShupStudy.com 86
www.gupshupstudy.com
6.
Fig 4.33
Select the only incorrect statement below regarding the diagram Fig 4.33
Answer:
GupShupStudy.com 87
www.gupshupstudy.com
7.
Fig 4.34
Select the only correct statement below regarding the diagram above.
Answer:
a. When state 0 is active, input a is off and the start input is on, state 4
becomes active
b. When state 0 is active and input e is on and input a is off, state 3
becomes active.
c. State 3 is entered directly from state 4
d. There are just two transitions leading to state 3
GupShupStudy.com 88
www.gupshupstudy.com
8.
The sequence for a set of traffic lights is to be plc controlled.
The sequence is, red, red and amber, green, amber.
Select the only incorrect statement below regarding the program.
Answer:
a. The transitions from one state to the next will be activated by timers.
b. Selective branching will be necessary for the red and amber part of the
sequence.
c. The lights will be plc outputs.
d. Two outputs will be on during the red and amber state.
9.
Fig 4.35
Select the only correct statement below regarding the diagram Fig 4.35.
Answer:
GupShupStudy.com 89
www.gupshupstudy.com
10.
Fig 4.36
Select the only incorrect statement below regarding the diagram Fig 4.36. (c1 is a plc
counter)
Answer:
a. If the plc count is less than 10, state 0 will always follow state 2
b. If the plc count is less than 10, state 1 will always follow state 2
c. Provision must be made in the system to reset the counter.
d. The counter present value is the deciding factor between trans 2-0 and
trans 2-1
GupShupStudy.com 90
www.gupshupstudy.com
11.
Moves drill up or down.
Motor
LS3
Y1
Y2
LS4
Start
LS1 LS2
Clamp
Stop
Workpiece
Y3
Fig 4.37
The diagram shows a workstation for the clamping and drilling of parts. When the
start button is pressed the piece is clamped, drilled and then released.
If the stop button is pressed then both cylinders return to their retracted positions and
the drill motor stops.
(a) Draw a PLC wiring diagram for the system.
(b) Draw a state/transition diagram for the sequence.
(c) Draw the necessary lines of ladder logic to operate the system as designed.
GupShupStudy.com 91
www.gupshupstudy.com
Chapter 5
Parallel Branching
5.1 Introduction
It is sometimes desirable in sequential systems to carry out certain
operations simultaneously. This has the advantage of saving time during each
cycle. The SF chart technique known as parallel branching allows for some states
to be active simultaneously and so the events run in parallel.
S1
T1-(2,5)
S2
S5
T2-3
S3
T5-6
S6
(wait)
T3-4
S4
(wait)
T(4,6)-1
Fig 5.1
5.2 Parallel Branching and the SF chart:
Fig 5.1 shows a SF chart with parallel branching. The inputs and outputs have
been temporarily omitted for clarity. The parallel section of the sequence is indicated
by the double lines below S1 and below S4 and S6.
The transition T1-(2,5) energises sumultaneously states 2 and 5 after which the
branches 2, 3, 4 and 5,6 proceed independently of eachother. The parallel section of
the program only finishes when both branches are complete. To deal with this the
final states in a parallel section (S4 and S6 in this case) are waiting states, similar to
state 1, the initial state. When both waiting states are active T(4,6)-1 occurs and the
sequence returns to S1.
GupShupStudy.com 92
www.gupshupstudy.com
a-
a+
Y1
Motor
Fig 5.2
LS1
Example 5.1
When a start push button is pressed cylinder A in Fig 5.2 extends and retracts
once. At the same time the motor shaft rotates 5 times, each rotation being detected by
the proximity switch LS1.
(a) Draw a PLC wiring diagram for the system.
(b) Draw a state/transition diagram for the sequence.
(c) Write out an assignment list.
(d) Draw the necessary lines of ladder logic to operate the system as designed.
GupShupStudy.com 93
www.gupshupstudy.com
Solution
(a)
Start
Stop
a-
a+
LS1
plc
Y1
Motor
Fig 5.3
GupShupStudy.com 94
www.gupshupstudy.com
(b)
S1
T1-(2,5)
(start enable)
S2
(A+)
S5
(motor on)
T2-3
(a+)
S3
(A-)
T5-6
(count = 5)
S6
(wait)
T3-4
(a-)
S4
(wait)
T(4,6)-1
S4S6
Fig 5.4
GupShupStudy.com 95
www.gupshupstudy.com
(c)
S1
S2
S3
S4
S5
S6
T1-(2,5)
T2-3
T3-4
T5-6
T(4,6)-1
Start
Enbl
R1
R2
R3
R4
R5
R6
R7
R8
R9
R10
R11
R50
Table 5.1
(d)
Initial Conditions:
Fig 5.5
GupShupStudy.com 96
www.gupshupstudy.com
Transitions:
Note that the condition for T(4,6)-1 to be energised is that states 4 and 6 are
simultaneously on.
Fig 5.6
States:
Two states (2 and 5) are switched on by T1-(2,5) and two states (4 and 6) are
switched off by T(4,6)-1
Fig 5.7
GupShupStudy.com 97
www.gupshupstudy.com
Outputs:
Fig 5.8
Counter:
While the motor is running, during state 5, the counter is incremented by the
proximity switch LS1. The counter present value is reset to zero when the system is
returned to state 1.
Fig 5.9
GupShupStudy.com 98
www.gupshupstudy.com
In the next example, we will design a circuit that uses parallel branching and
then, as a modification, we will add some selective branches to it.
Example 5.2
A drilling and countersinking operation is carried out on components on a
conveyor using tools mounted on two pneumatic cylinders. The conveyor is
indexed by a third cylinder extending and retracting. Each cylinder is operated by
a 5/2 double solenoid directional control valve. The installation is shown in Fig
5.10.
b-
c-
b+
c+
a-
a+
Fig 5.10
For the sake of simplicity no provision has been made for the clamping
of the components. The task of inclusion of clamping has been added as an exercise at
the end of the chapter.
The PLC wiring diagram and the SF chart are shown in Fig 5.11 and
Fig 5.12. The assignment list is shown in Table 5.2 and the ladder logic follows.
GupShupStudy.com 99
www.gupshupstudy.com
start
stop
a-
a+
b-
b
+
c-
Y6
Drill
c+
PLC
PLCPLC
Y1
Y2
Y3
Y4
Y5
c/sink
Fig 5.11
GupShupStudy.com 100
www.gupshupstudy.com
S1
T1-2
(start)(stop)
S2
(A+)
S3
(A-)
S4
(B+)
T2-3
(a+)
T3-(4,7)
(a-)
S7
(C+)
T4-5
(b+)
T7-8
(c+)
S5
(B-)
S8
(C-)
T5-6
(b-)
T8-9
(c-)
S6
(wait)
S9
(wait)
T(6,9)-1
Fig 5.12
GupShupStudy.com 101
www.gupshupstudy.com
S1
S2
S3
S4
S5
S6
S7
S8
S9
T1-2
T2-3
T3-(4,7)
T4-5
T5-6
T7-8
T8-9
T(6,9)-1
Start
Enbl
R1
R2
R3
R4
R5
R6
R7
R8
R9
R10
R11
R12
R13
R14
R15
R16
R17
R50
Table 5.2
GupShupStudy.com 102
www.gupshupstudy.com
Initial Conditions:
Fig 5.13
Transitions:
Fig 5.14
GupShupStudy.com 103
www.gupshupstudy.com
States:
Fig 5.15
GupShupStudy.com 104
www.gupshupstudy.com
Outputs:
Fig 5.16
GupShupStudy.com 105
www.gupshupstudy.com
Example 5.3:
It has been decided to modify the drill and countersink process in Example 5.2
to allow for empty conveyor spaces. Two extra proximity switches are fitted to detect
the presence of a part under the drill and under the countersink.
The modified SF chart is shown in Fig 5.17.
S1
T1-2
(start)(stop)
S2
(A+)
T2-3
(a+)
S3
(A-)
T3-(10,11)
(a-)
S10
(wait)
T10-6
(p.u. drill)
T4-5
(b+)
S4
(B+)
S11
(wait)
T10-4
(p.u.
drill)
T11-7
(p.u.
csk)
T11-9
(p.u. csk)
S7
(C+)
T7-8
(c+)
S5
(B-)
S8
(C-)
T5-6
(b-)
T8-9
(c-)
S6
(wait)
S9
(wait)
T(6,9)-1
Fig 5.17
GupShupStudy.com 106
www.gupshupstudy.com
Two extra waiting states S10 and S11 have been introduced because it is not
possible for a the sequence to simultaneously enter a selective and a parallel branch.
Once states 10 and 11 are active the choice of routes for the program depends on
whether components are in place under the drill and countersink.
The PLC wiring diagram with the two additional inputs is shown in Fig 5.18
and the modified assignment list is shown in Table 5.3.
p.u.
drill
start
stop
a-
a+
b-
b+
+
c-
p.u.
csk
c+
PLC
Y1
Y2
Y3
Y4
Y5
Y6
Drill
c/sink
Fig 5.18
GupShupStudy.com 107
www.gupshupstudy.com
S1
S2
S3
S4
S5
S6
S7
S8
S9
S10
S11
T1-2
T2-3
T3-(10,11)
T4-5
T5-6
T7-8
T8-9
T(6,9)-1
T10-4
T10-6
T11-7
T11-9
Start Enbl
R1
R2
R3
R4
R5
R6
R7
R8
R9
R18
R19
R10
R11
R12
R13
R14
R15
R16
R17
R20
R21
R22
R23
R50
Table 5.3
GupShupStudy.com 108
www.gupshupstudy.com
Appendix
Using the Trilogi Software
The following gives instructions to getting started with the PLC simulator.
The software can be downloaded from http://www.tri-plc.com/trilogi.htm.
GupShupStudy.com 109
www.gupshupstudy.com
GupShupStudy.com 110
www.gupshupstudy.com
GupShupStudy.com 111
www.gupshupstudy.com
Clicking on the right hand box of the tool bar allows you to change the selected
contact to n/c.
GupShupStudy.com 112
www.gupshupstudy.com
GupShupStudy.com 113
www.gupshupstudy.com
GupShupStudy.com 114
www.gupshupstudy.com
Click on the Simulate menu and select Run (All I/O Reset)
The two inputs and one output can be seen on the simulator.
Click on the Start_Button input to switch it on.
GupShupStudy.com 115
www.gupshupstudy.com
The output Light comes on and stays latched on, until the Stop_Button is
pressed.
GupShupStudy.com 116
www.gupshupstudy.com
GupShupStudy.com 117