PLC Fiddle Basic Gate Ladder Logic

Last time we discussed the free virtual plc simulator called PLC Fiddle. It will enable you to create simple PLC ladder logic code within your browser. This is an ideal way in understanding PLC concepts for industrial automation. All of the basic PLC instructions that come with most plc units have been incorporated into this virtual PLC software.
https://accautomation.ca/plc-fiddle-online-editor-and-simulator-in-your-browser/
PLC Fiddle Video – This will demonstrate the basic functions of the PLC simulator.
Understanding and creating your own programmable logic controller programs on the ladder can be fun. We will be starting with the basic gate logic circuits and convert these to ladder logic.
We will be looking at the AND, OR, NAND, NOR, EXOR, and EXNOR logic circuits using PLC fiddle. This will get you involved in learning and understanding PLC programming. Let’s get started.

What are logic circuit gates?

Logic circuits usually have two different input values to represent the Boolean values true (or 1) and false (or 0). Logic circuit gates have an output that is dependent on their inputs. We can draw logic gate charts to determine the status of each combination of input and output conditions.
AND Gate Logic

PLC Fiddle Basic Gate Ladder Logic - AND, OR, NAND, NOR, EXOR and EXNOR

Input 1 Input 2 Output
0 0 0
0 1 0
1 0 0
1 1 1

The AND gate logic must have both Input 1 and Input 2 on in order for the output to be on. Everything else will keep the output off.
Your challenge is to use PLC fiddle to create an AND gate logic in ladder logic. Click the following URL to start the challenge.
https://www.plcfiddle.com/challenge/c70ba827-02d8-4899-a62c-ca63f4b98467
When you have finished the AND ladder logic, click the Check button to test the circuit.
Watch on YouTube: PLC Fiddle AND Gate Ladder Logic Challenge Solution

PLC Fiddle AND Gate Basic Ladder Lo...
PLC Fiddle AND Gate Basic Ladder Logic Challenge Solution

OR Gate Logic

PLC Fiddle Basic Gate Ladder Logic - AND, OR, NAND, NOR, EXOR and EXNOR

Input 1 Input 2 Output
0 0 0
0 1 1
1 0 1
1 1 1

The OR gate logic must have either Input 1, Input 2 or both on in order to set the output on.

Your challenge is to use PLC fiddle to create an OR gate logic in ladder logic. Click the following URL to start the challenge.
https://www.plcfiddle.com/challenge/13f0f232-af8f-42c0-9113-a5644e0fe07d
When you have finished the OR ladder logic, click the Check button to test the circuit.
Watch on YouTube: PLC Fiddle OR Gate Ladder Logic Challenge Solution

NAND Gate Logic

PLC Fiddle Basic Gate Ladder Logic - AND, OR, NAND, NOR, EXOR and EXNOR

Input 1 Input 2 Output
0 0 1
0 1 1
1 0 1
1 1 0

NAND gate logic is just the opposite of the AND gate. The only time that the output is off is when both Input 1 and Input 2 are on.
Your challenge is to use PLC fiddle to create a NAND gate logic in ladder logic. Click the following URL to start the challenge.
https://www.plcfiddle.com/challenge/d17f32d5-a206-4051-8b9d-44aaa6faba8e
When you have finished the NAND ladder logic, click the Check button to test the circuit.
Watch on YouTube: PLC Fiddle NAND Gate Ladder Logic Challenge Solution

NOR Gate Logic

PLC Fiddle Basic Gate Ladder Logic - AND, OR, NAND, NOR, EXOR and EXNOR

Input 1 Input 2 Output
0 0 1
0 1 0
1 0 0
1 1 0

The NOR gate logic output is only on when both Input 1 and Input 2 are off.
Your challenge is to use PLC fiddle to create a NOR gate logic in ladder logic. Click the following URL to start the challenge.
https://www.plcfiddle.com/challenge/bea78e5c-dd08-49ec-911e-aee98d6056c4
When you have finished the NOR ladder logic, click the Check button to test the circuit.
Watch on YouTube: PLC Fiddle NOR Gate Ladder Logic Challenge Solution

EXOR Gate Logic

Ladder Logic - AND, OR, NAND, NOR, EXOR and EXNOR

Input 1 Input 2 Output
0 0 0
0 1 1
1 0 1
1 1 0

Exclusive OR (EXOR) gate logic will only set the output when Input 1 and Input 2 are at different states. The output only comes on when one input is on and the other input off.
Your challenge is to use PLC fiddle to create an EXOR gate logic in ladder logic. Click the following URL to start the challenge.
https://www.plcfiddle.com/challenge/fcb6a345-5a79-4dda-9e8b-efbb732d67bd
When you have finished the NOR ladder logic, click the Check button to test the circuit.
Watch on YouTube: PLC Fiddle EXOR Gate Ladder Logic Challenge Solution

EXNOR Gate Logic

Ladder Logic Functions

Input 1 Input 2 Output
0 0 1
0 1 0
1 0 0
1 1 1

Exclusive NOR (EXNOR) is just the opposite of EXOR. Input 1 and Input 2 must be in the same state before the output will be turned on. Input 1 and Input 2 must both be on or both be off for the output to be on.
Your challenge is to use PLC fiddle to create an EXNOR gate logic in ladder logic. Click the following URL to start the challenge.
https://www.plcfiddle.com/challenge/cdeba4a9-b1c6-4558-a689-7dc0555662cd
When you have finished the EXNOR ladder logic, click the Check button to test the circuit.
Watch on YouTube: PLC Fiddle EXNOR Gate Ladder Logic Challenge Solution

These six basic gate ladder logic circuits were fun to solve using PLC Fiddle. It demonstrates the basic principles of programming without the investment of equipment. Next time we will use the same technique to do some Timer applications.

If you have any questions or need further information please contact me.
Thank you,
Garry



If you’re like most of my readers, you’re committed to learning about technology. Numbering systems used in PLC’s are not difficult to learn and understand. We will walk through the numbering systems used in PLCs. This includes Bits, Decimal, Hexadecimal, ASCII and Floating Point.

To get this free article, subscribe to my free email newsletter.


Use the information to inform other people how numbering systems work. Sign up now.

PLC Fiddle Basic Gate Ladder Logic - AND, OR, NAND, NOR, EXOR and EXNOR

The ‘Robust Data Logging for Free’ eBook is also available as a free download. The link is included when you subscribe to ACC Automation.

2 thoughts on “PLC Fiddle Basic Gate Ladder Logic”

Leave a Comment