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: Example of Controlling the PLC Output using Push Buttons
Share
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 > Example of Controlling the PLC Output using Push Buttons

Example of Controlling the PLC Output using Push Buttons

In this article, you will learn the fundamentals using an example of controlling the PLC output using push buttons and solenoid.

Last updated: April 12, 2024 4:41 pm
Editorial Staff
PLC Tutorials
No Comments
Share
9 Min Read
SHARE

In this article, you will learn the fundamentals using an example of controlling the PLC output using push buttons and solenoid.

Contents
PLC Output using Push ButtonsPLC Learning VideoRequired Inputs and OutputsLadder DiagramPLC Program DescriptionPLC Program Result

Important Note: The PLC logic is prepared for educational purposes and assists students and technicians in learning the fundamentals of PLC.

PLC Output using Push Buttons

Problem Statement

Design a PLC ladder logic for the following application.

We are using two push buttons to control the Solenoid.

When Push Button 1 or Push Button 2 is pressed and then released, then Solenoid will be ON.

When Push Button 1 or Push Button 2 is pressed again and then released, then Solenoid will be OFF.

PLC Learning Video

This video helps you to learn the PLC programming concepts with this example program.

Schneider PLC Example Step-by-Step Guide

Required Inputs and Outputs

Digital Inputs:

The required DI signals are listed below.

Push Button 1: I0.0

Push Button 2: I0.1

Digital Output:

The required DO signals are listed below.

Solenoid: Q0.0

Ladder Diagram

Example of Controlling the PLC Output using Push Buttons
Fig: 1

PLC Program Description

We used Schneider Electric PLC software.

In the above program, we used Normally-Open Contacts as well as Normally-Closed Contact and Memory Bits.

Normally Closed Contact is used for Memory Bit 1 in Rung 2 and Memory Bit 3 in Rung 1.

In Rung 0, 1) Push Button 1 and Push button 2 are connected in parallel, thus implementing OR Logic Gate.

Normally Open Contact is used for Push Button 1 and Push Button 2  to turn ON the Memory Bit 1.

In Rung 1:

  • Normally Open Contact is used for Memory Bit 1 and Normally Closed Contact is used for Memory Bit 3 to turn ON the Solenoid.
  • Latching is used for Solenoid so that when Memory Bit 1 turns OFF, Solenoid still remains ON.

In Rung 2:

  • Normally Closed Contact is used for Memory Bit 1 and Normally Open Contact is used for Solenoid to turn ON Memory Bit 2.
  • As Memory bit stores the data, Memory Bit 2 is used to store the data that Push Button 1 or Push Button 2 has been released.  

In Rung3:

  • Normally Open Contact is used for Memory Bit 1 to turn ON Memory Bit 3.
  • Memory Bit 2  is used to store the data when Push Button 1 or Push button 2 is pressed again.
  • Memory Bit 3 i.e. latched with Memory Bit 2 is used to turn OFF the Solenoid, So that when Memory Bit 3 turns ON in Rung 3, Normally Closed Contact used for Memory Bit 3 in Rung 1 will be in a True state and Solenoid will turn OFF. 

So, when Push Button 1 or Push Button 2 is pressed, signal will flow through it as Normally Open Contact is used for Push Button 1 and Push Button 2 in Rung 0, and Memory Bit 1 will Turn ON.

In Rung 1, the signal will flow through Memory Bit 1 as Normally Open Contact is used for it. In a false state, Normally Closed Contact used for Memory Bit 3 also passes the signal and the Solenoid will turn ON. When Push Button 1 or Push Button 2 is released, the Solenoid will remain ON as Latching is used for Solenoid in Rung 1.

When Push Button 1 or Push Button 2 is released, Normally Closed Contact used for Memory Bit 1 in Rung 2 will be false state and allow the signal to pass. Normally Open Contact Used for Solenoid in Rung 2 will also pass the signal as it is in True state and Memory Bit 2 will turn ON which is connected with memory Bit 1 and Solenoid in Rung 2.

When Memory Bit 2 will turn ON, it will store the data that Push Button 1 or Push Button 2 has been released. When Push Button 1 or Push Button 2 is pressed again, Memory Bit 2 in Rung 3 will turn OFF and store the data that Push Button 1 or Push Button 2 is pressed again, and Memory Bit 3 will turn ON i.e. latched with Memory Bit 2 in Rung 3.

So, When Memory Bit 3 turns ON in Rung 3, Normally Closed Contact used for Memory  Bit 3 in Rung 1 will be in True state and the Solenoid will turn OFF. When Push Button 1 or Push Button 2 is released again, the Solenoid will remain OFF as Normally Open Contact used for  Push Button 1 or Push Button 2 in Rung 0 will be in a false state and does not allow the signal to pass.

PLC Program Result

When Push Button 1 or Push Button 2 is PRESSED

PLC Output using Push Buttons
Fig: 2

In Rung 0, Push Button 1 and Push Button 2 are connected in parallel implementing OR Logic Gate. So, when Push Button 1 or Push Button 2 is Pressed, Memory Bit 1 will turn ON in Rung 0.

How to Connect Pushbutton Switch to Programmable Controller
Fig: 3

In Rung 1, the Solenoid will turn ON as Normally Open Contact used for Memory Bit 1 in Rung 1 will be in a True State, and Normally Closed Contact used for Memory Bit 3 will be in a false State.

When Push Button 1 or Push Button 2 is RELEASED

Output on off from a single push button
Fig: 4

When Push Button 1 or Push Button 2 is released, Memory Bit 1 will turn OFF in Rung 0 and Rung 1 but Solenoid will remain ON as Latching is used for Solenoid in Rung 1.

In Rung 2, signal will flow through Memory Bit 1 as Normally Closed Contact used for Memory Bit 1 will be in False State. Normally Open Contact used for Solenoid in Rung 2 will allow signal to pass through it as it is in True state and Memory Bit 2 will Turn ON.

When Push Button 1 or Push Button 2 is PRESSED Again (Second Press)

We are using two push buttons to control the Solenoid.
Fig: 5

Pressing Push Button 1 or Push Button 2 again will turn OFF the Solenoid because Memory Bit 1 in Rung 0, Rung 1, Rung 2 and Rung 3 will turn ON. Turning On Memory Bit 1 in Rung 3 will Turn ON Memory Bit 3 in Rung 3 and Rung 1.

PC to control PLC input logic
Fig: 6

So, Normally Closed Contact used for Memory Bit 3 in Rung 1 will be in true state and does not allow signal to pass to the Solenoid.

When Push Button 1 or Push Button 2 is RELEASED Again (Second Release)

Engineering Arena PLC Logic
Fig: 7

When Push Button 1 or Push Button 2 is released again, Solenoid will remain OFF as Normally Open Contacts used for Push Button 1 and Push Button 2 in Rung 0  will be in false state and will not pass signal to the Solenoid.

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

How to use Sub Routines with Allen Bradley PLC
PID Controller Output Types – PID_PWM and PID_Output
#2 PLC Best Practices – Track Operating Modes
How to Connect a Solenoid Valve with PLC?
Key Facts About RS485 Industrial Network
PLC to PLC Communication using S7 Connection PUT & GET 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

Waste-Burning System OMRON PLC Program Example
Functional Block Diagram PLC Example for Traffic Light System
How to Protect Siemens PLC using Password?
Which Connection is Best for PLC? – Sinking or Sourcing
Flexible Input Output Modules
What are Functions in PLC Programming? (FCs)
How to Read an Electrical Wiring Diagram?
System Cabinet Health Checks – PLC and DCS Industrial Automation

Keep Learning

Faceplate in WinCC

Siemens HMI Training – Using UDTs with Faceplates

PLC Logic for Stairway Lighting

Smart Automation Solutions: PLC Logic for Stairway Lighting

Liquid management using PLC programming

PLC Programming for Loss in Weight Liquid Systems

Examples of PLC Programming using Boolean Functions

Examples of PLC Programming using Boolean Functions

Offline UPS

UPS Working Principle and Types – Offline and Online UPS Systems

3 to 8 Line Decoder Circuit Diagram

3 to 8 Line Decoder PLC Ladder Diagram

PLC Timer Programming Examples – TON, TOF, TP and TONR

Download Modscan software

How to Use ModScan Software for Testing Modbus Communication?

Learn More

Top 10 Facts about HART Technology

Top 10 Facts about HART Technology

What we need to Know before Tune a PID Controller

What we need to Know before Tune a PID Controller ?

Batch Mixing with PLC Ladder Logic Program

Batch Mixing with PLC Ladder Logic Program

Interface Level Measurement Selection Guide

Interface Level Measurement Selection Guide

Simplified Induction Motor - Cross Section

Siemens Standard Drives Application Handbook (PDF)

Pig Signalling Switches Functional Testing

Pig Signalling Switches Functional Testing

Mass Spectrometer Questions and Answers

Quadrupole Mass Spectrometer

Difference between LVDT and RVDT

Difference between LVDT and RVDT?

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?