Inst ToolsInst ToolsInst Tools
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Search
  • Books
  • Software
  • Projects
  • Process
  • Tools
  • Basics
  • Formula
  • Power Plant
  • Root Cause Analysis
  • Electrical Basics
  • Animation
  • Standards
  • 4-20 mA Course
  • Siemens PLC Course
Reading: PLC to Start or Stop 3 Machines using 1 Switch Program
Share
Notification Show More
Font ResizerAa
Inst ToolsInst Tools
Font ResizerAa
  • Courses
  • Design
  • PLC
  • Interview
  • Control System
Search
  • Courses
  • Automation
    • PLC
    • Control System
    • Safety System
    • Communication
    • Fire & Gas System
  • Instrumentation
    • Design
    • Pressure
    • Temperature
    • Flow
    • Level
    • Vibration
    • Analyzer
    • Control Valve
    • Switch
    • Calibration
    • Erection & Commissioning
  • Interview
    • Instrumentation
    • Electrical
    • Electronics
    • Practical
  • Q&A
    • Instrumentation
    • Control System
    • Electrical
    • Electronics
    • Analog Electronics
    • Digital Electronics
    • Power Electronics
    • Microprocessor
  • Request
Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Inst Tools > Blog > PLC Tutorials > PLC to Start or Stop 3 Machines using 1 Switch Program

PLC to Start or Stop 3 Machines using 1 Switch Program

In this article, you will learn the PLC to Start or Stop 3 Machines using 1 Switch basic PLC program.

Last updated: April 3, 2024 4:27 pm
Editorial Staff
PLC Tutorials
No Comments
Share
11 Min Read
SHARE

In this article, you will learn the PLC to Start or Stop 3 Machines using 1 Switch basic PLC program.

Contents
PLC to Start or Stop 3 MachinesPLC Training VideosI/O ListLadder DiagramPLC Logic DescriptionResult

Attention: The PLC example logic presented is for educational use exclusively for students and technicians to learn the basics.

PLC to Start or Stop 3 Machines

Problem Statement

Design a PLC ladder logic for the following application.

We are using one push button to control three Machines.

When the Push Button is pressed and then released, then Machine 1 will be ON.

When the Push Button is pressed again and then released, then Machine 1 will be OFF and Machine 2 will be ON.

When the Push Button is pressed again and then released, then Machine 2 will be OFF and Machine 3 will be ON.

PLC Training Videos

This video tutorial helps you to learn this example of programming from the basics.

PLC to Start or Stop 3 Machines using 1 Switch - Basic PLC Exercises

I/O List

Digital Inputs:

The required inputs are listed below.

Push Button 1: I0.0

Digital Output:

The required outputs are listed below.

Machine 1: Q0.0

Machine 2: Q0.1

Machine 3: Q0.2

Ladder Diagram

PLC to Start or Stop 3 Machines using 1 Switch Program

PLC Logic Description

  • We used Schneider Electric PLC software.
  • In the above program, we have used Normally Open Contacts as well Normally Closed Contact and Memory Bits.
  • Normally Closed Contact is used for Memory Bit 2 in Rung0, Memory Bit 4 in Rung3 and for Push Buttons in Rung1 and Rung4.
  • In Rung0, 1) Normally Open Contact is used for Push Button  to turn ON Machine 1.
  • Normally Closed Contact is used for Memory Bit 2 to turn OFF Machine 1.
  • Latching is used for Machine 1 so that when Push Button is released, Machine 1 still remains ON.

In Rung 1:

1) Normally Closed Contact is used for Push Button and Normally Open Contact is used for Machine 1 to turn ON Memory Bit 1.

2) As Memory bit stores the data, Memory Bit 1 is used to store the data that Push Button has been released.

In Rung 2:

1) Normally Open Contacts are used for Push Button and Memory Bit 1 to turn ON Memory Bit 2.

2)  As Memory bit stores the data, Memory Bit 2 is used to store the data that Push Button is pressed a second time.

In Rung 3:

1) Normally Open Contact is used for Memory Bit 2  to Turn ON Machine 2.

2) Normally Closed Contact is used for Memory Bit 4 to Turn OFF Machine2.

In Rung 4:

1) Normally Closed Contacts are used for Push Button and Normally Open Contact is used for Machine 2 to turn ON  Memory Bit 3.

2) As Memory bit stores the data, Memory Bit 3 is used to store the data that Push Button has been released a second time.

In Rung 5:

1) Normally Open Contacts are used for Push Button and Memory Bit 3 to turn ON Memory Bit 4.

2) As Memory bit stores the data, Memory Bit 4 is used to store the data that Push Button is pressed and released third time.

In Rung 6:

1) Normally Open Contact is used for Memory Bit 4  to Turn ON Machine 3.

So, When Push Button  is pressed, signal will flow through it as Normally Open Contact is used for Push Button  in Rung0. In false state, Normally Closed Contact used for Memory Bit 2 also passes the signal and Machine 1 will turn ON.

When Push Button is released, Machine 1 will remain ON as Latching is used for Machine 1 in Rung0. When Push Button 1 is released, Normally Closed Contact used for Push Button in Rung1 will be in false state and allows the signal to pass. Normally Open Contact Used for Machine 1 in Rung1 will also pass the signal as it is in True state and Memory Bit 1 will turn ON which is connected with Push Button and Machine 1 in Rung1.

When Memory Bit 1 will turn ON, it will store the data that Push Button has been released. When Push Button is pressed again, Memory Bit 1in Rung 1 will turn OFF and Memory Bit 2 in Rung2 and Rung3 will turn ON.

So, When Memory Bit 2 will turn ON in Rung 2, Normally Closed Contact used for Memory  Bit 2 in Rung 0 will be in True state and Machine 1 will turn OFF and In Rung3, Machine 2 will Turn ON as Normally Open Contact used for Memory Bit 2 will be in True state and Normally Closed Contact used for Memory Bit 4 will be in false state.

When Push Button  is released again, Machine 2 will remain ON as Normally Open Contact used for Memory Bit 2 in Rung3  will be in True state and Normally Closed Contact used for Memory Bit 4 in Rung3 will be in false state. In Rung4, Memory Bit 3 will Turn ON and will store the data that Push Button has been released second time.

Pressing and Releasing Push Button again will turn OFF Machine 2 because Memory Bit 4 in Rung3, Rung5 and Rung5 will turn ON and will store the data that Push Button has been pressed and released third time.

So, Normally Closed Contact used for Memory Bit 4 in Rung3 will be in true state and does not allow signal to pass to Machine 2. In Rung6, Machine 3 will turn ON as Normally Open Contact used for Memory Bit 4 in Rung3 will be in True State and pass the signal to Machine 3.

Result

The PLC program results with different input combinations are shown below. Please note that each image is unique and some images may not be shown all the rungs.

When Push Button is PRESSED

How to Program a START STOP in PLC

The signal flows through Push Button as it is in true state and Machine 1 will turn ON.

In false state, Memory Bit 2 in Rung0 also pass the signal to turn ON the Machine 1 as Normally Closed Contact is used for Memory Bit 2in Rung0.

When Push Button is RELEASED

Guide of PLC Logic

When Push Button I is released, Machine 1 will remain ON as Latching is used for Machine 1 in Rung0.

In Rung1, Memory Bit 1 will turn ON as Normally Closed Contact used for Push Button will be in false state and Normally Open Contact used for Machine 1 will be in True state.

Memory Bit 1 will store the data that Push Button has been released.

When Push Button is PRESSED Again (Second Press)

How to Program a PLC using Ladder Logic (for Beginners)
Fig: 1
PLC programming machine
Fig: 2

Pressing Push Button  again will turn OFF Machine 1 because Memory Bit 2 in Rung0, Rung2 and Rung3 will turn ON and will store the data that Push Button has been pressed second time.

So, Normally Closed Contact used for Memory Bit 2 in Rung0 will be in true state and does not allow signal to pass to Machine 1.

In Rung3, Machine 2 will turn ON as Normally Open Contact used for Memory Bit 2 in Rung3 will be in True State and Normally Closed Contact used for Memory Bit 4 will be in false State.

When Push Button is RELEASED Again (Second Release)

Machine Control - PLC programming development

When Push Button  is released again, Machine 2 will remain ON as Normally Open Contact used for Memory Bit 2 in Rung3 will be in True state and Normally Closed Contact used for Memory Bit 4 in Rung3 will be in false state.

In Rung4, Memory Bit 3 will Turn ON and will store the data that Push Button has been released second time.

When Push Button is PRESSED and RELEASED Again (Third Press and Release)

Step-by-Step PLC Programming Process in Industries
Fig: 1
PLC programming language fundamentals
Fig: 2

Pressing and Releasing Push Button  again will turn OFF Machine 2 because Memory Bit 4 in Rung3, Rung5 and Rung5 will turn ON and will store the data that Push Button has been pressed and released third time.

So, Normally Closed Contact used for Memory Bit 4 in Rung3 will be in true state and does not allow signal to pass to Machine 2.

In Rung6, Machine 3 will turn ON as Normally Open Contact used for Memory Bit 4 in Rung3 will be in True State and pass the signal to Machine 3.

If you liked this article, 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:

  • Basic PLC Alarm Programming Example
  • Run 4 Motors Push button PLC Program
  • Start Stop of one Motor PLC program
  • PLC Automatic Control of Two Outputs
  • PLC Motor Logic with TEST Pushbuttons
Don't Miss Our Updates
Be the first to get exclusive content straight to your email.
We promise not to spam you. You can unsubscribe at any time.
Invalid email address
You've successfully subscribed !

Continue Reading

Automatic Coffee Vending Machine – PLC Logic Programming
PLC Brands Software Information
Developing PLC Logic for Water Pumping and Chemical Addition
ON Delay Timer using PLC
Turbine-Compressor System Architecture
PLC Data Comparison Instructions
Share This Article
Facebook Whatsapp Whatsapp LinkedIn Copy Link
Share
Leave a Comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

128.3kFollowersLike
69.1kFollowersFollow
210kSubscribersSubscribe
38kFollowersFollow

Categories

Explore More

How to Blink Lights in Ladder Logic?
Quiz Program Logic Using PLC Programming
#17 PLC Best Practices – Log PLC Uptime and Trend it on HMI
What is a Watchdog Timer in PLC?
PLC Program for Paint Spraying
Delta PLC Counter with Comparison
Architecture of Allen Bradley PLC
Download Allen Bradley RSLogix PLC Software

Keep Learning

Job Skills Required for Industrial Electrical Maintenance

Job Skills Required for Industrial Electrical Maintenance

Put Get PLC communication

PUT Command in Siemens PLC – TIA Portal Basics

Search tank in Intouch Scada

Tank Filling and Emptying using Intouch Scada Script

OB10 Time of Day Interrupt

Tia Portal – OB10 Time of Day Interrupt Organization Block

Parking Lights PLC Program Explained with Video

Parking Lights PLC Program Explained with Video

STAR DELTA Starter PLC Logic

STAR DELTA Programming using PLC Controller

Pulse Generation using Timer in Siemens PLC

Pulse Generation using Timer in Siemens PLC

Features of Scada Which are Must in an IoT System

Features of Scada Which are Must in an IoT System

Learn More

Alarms to Annunciator

Basics of Alarms and Trips

Resistance Temperature Detector (RTD) Questions

Resistance Temperature Detector (RTD) Questions – 1

Multiple Position Calibration of Temperature Chamber (Mapping)

Multiple Position Calibration of Temperature Chamber

Chromatography Questions & Answers

Chromatographic Behaviour of Solutes Questions & Answers

Forward Reverse Motor Control with Repeat Cycle Using PLC

Electric Motor Forward Reverse with Repeat Cycle PLC Logic

Calculate Power in Parallel RC Circuit

Calculate Power in Parallel RC Circuit

Analyzers Questions and Answers

Pulse Height Analyzer Questions & Answers

Ambient Air Quality Monitoring System Principle

Ambient Air Quality Monitoring System Principle

Menu

  • About
  • Privacy Policy
  • Copyright

Quick Links

  • Learn PLC
  • Helping Hand
  • Part Time Job

YouTube Subscribe

Follow US
All rights reserved. Reproduction in whole or in part without written permission is prohibited.
Welcome Back!

Sign in to your account

Username or Email Address
Password

Lost your password?