PLC Tutorials

PLC Sequential Operation Example Program

Write a PLC program so that when the step push button is pressed and qw0 is equal to zero the first bit in the output word is energized by one, and when the step push button is pressed again the next bit is energized and so on till the reset push button is pressed.

This is an example of sequential operation of output bits using one push buttons.

Note: the best practice to learn the PLC programming is to start writing the PLC program, take your time before you review the answer. 

Inputs & Outputs

I0.0: step Push Button (Normally open contact)

I0.1: reset Push Button (Normally open contact)

Qw0: output word i.e from (Q0.0 to Q1.7) 

PLC Sequential Operation Example

Before you start your programming you have to understand the order of bits when you hear memory word, here in the table attached you can figure out the address of any bit number.

PLC Program

Network 1:

In every time the positive edge of step push button is detected the shift left instruction moves 1 to next bit of the QW0,

if QW0 = 0 the move instruction is energized and move the hexadecimal value 16#8000 to QW0 which is equivalent to 1000 0000 0000 0000.

Network 2:

In any time when the reset push button is pressed, 0 is moved to QW0 which will reset all the output word.

Author: Karim Ali Anwar

If you liked this article, then please subscribe to our YouTube Channel for PLC and SCADA video tutorials.

You can also follow us on Facebook and Twitter to receive daily updates.

Read Next:

You've successfully subscribed !
Share

Recent Articles

  • PLC Tutorials

Batch Mixing with PLC Ladder Logic Program

In this example, we will learn batch mixing with PLC ladder logic program using timer…

1 week ago
  • PLC Tutorials

PLC Example on Manufacturing Line Assembly

This PLC example on manufacturing line assembly is an intermediate-level PLC program prepared for the…

2 weeks ago
  • PLC Tutorials

PLC Programming Example with Pushbutton and Motor

In this article, you will learn the PLC programming example with pushbutton and motor control…

3 weeks ago
  • PLC Tutorials

Boolean Logic to PLC Programming

This article teaches how to convert Boolean logic to PLC programming ladder logic with the…

4 weeks ago
  • PLC Tutorials

PLC Programming Example on Timers Function Block

In this article, you will learn the PLC programming example on timers function block using…

3 weeks ago
  • PLC Tutorials

PLC Pump Control: 10 seconds ON & 20 seconds OFF

Design a program for PLC pump control such that the pump must be turned ON…

2 weeks ago