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.

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

Principle of Operation of PLC
PLC Motor Logic with START, STOP, TEST Push buttons
Count the Number of Bottles in Packaging Carton PLC Logic
CX Programmer Example: Perfume Mixing and Filling System
Basics of Ladder Diagram in PLC Programming
VFD Commissioning and Testing Procedure (Variable Frequency Drive)
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 Create Templates in FactoryTalk View Studio?
Tia Portal – OB10 Time of Day Interrupt Organization Block
PLC Programming for Tank Heating Control using Heater
Difference Between Microcontroller and PLC
Step-by-Step Guide to Choose Right Fuse for a Panel
Moving Data between PLCs – Siemens Basics – TSEND TRCV
Rules for Writing SCL Language in Tia Portal
PLC Program for Automatic Mixing Control in a Tank

Keep Learning

Siemens PLC Force LED

Forcing and Modifying PLC Logic

Types of Digital Outputs in PLC

Types of Digital Outputs in PLC

Compare DCS, PLC, RTU

Difference between DCS, PLC, and RTU ?

Parts of PLC

Parts of PLC

PLC program for VFD Drive Multiple Speeds

Drive Multiple Speeds with Different Reference using PLC

SCADA Multiple Choice Questions

SCADA Multiple Choice Questions

PLC Motor Control Ladder Logic

PLC Program for Star Delta Motor Starter

How to Upload PLC Program in Siemens PLC if Upload Icon is Disabled

Upload Option Disabled in Siemens PLC

Learn More

Switch NO or NC Contact

Normally-open and Normally-closed Switch Contacts

Transformer Efficiency

Transformer Efficiency

V1000 Family Programming Simulator Tool

VFD Simulator Download – Free Yaskawa V1000 Software

PLC Lamp Control using Logic Condition

Lamp Control using PLC Logic Condition

Mathematical Models of Physical Systems

Transfer Functions Objective Questions

Oil in Water Analyzer Principle

Oil in Water Analyzer Working Principle

Displacement Sensing Accelerometer

Seismic Displacement Sensing Accelerometer

Electrical Machines Questions and Answers

Synchronous Machines EMF Questions

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?