PLC Tutorials

Start Stop of one Motor from the same Push button PLC program

In some applications, it may be required to use one single push button in order to save inputs or for whatever reason to start and stop the same motor.

It is simple, all you need is to acquire an instruction that could register the output status (on or off), and upon the status of the output, it should decide the next action to on or off the output.

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

Download: Tia Portal

Inputs & Outputs:

I0.0: Push-button

Q0.0: Motor

M0.0: Positive Trigger

M0.1: Negative Trigger

Start Stop of one Motor from same Push button

PLC Program

In this network you can find the SR flip flop where:

If the motor Q0.0 is OFF and the Push-button (PB) I0.0 is pressed for one time, the set value would be energized and sets the output Q0.0 to ON. So the motor will be started.

If the motor Q0.0 is ON and the PB I0.0 is pressed for one time, the reset value would be energized and sets the output Q0.0 to OFF. So the motor will be stopped.

The positive edge detector in the set branch is used to ensure that the press of the I0.0 should be executed for a single scan cycle.

The negative edge detector is to ensure that the reset should not be energized unless the motor is ON.

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.

You've successfully subscribed !

View Comments

Share

Recent Articles

  • PLC Tutorials

Example PLC Program to Control a Pump based on Level Sensors

Learn an example PLC program to control a pump based on level sensors using ladder…

2 weeks ago
  • PLC Tutorials

PLC Timer Application in Security Camera Recording

In the PLC timer application for security camera recording, when motion is detected then camera…

2 weeks ago
  • PLC Tutorials

Batch Mixing with PLC Ladder Logic Program

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

2 weeks 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…

1 month ago