Pages

Sunday 8 May 2011

Logic Gate Basics Part 1

In this series of tutorials I'll be covering the basics of Logic Gates, followed by some practical applications. For reference, in all images, Inputs are shown by Green blocks, and Outputs are shown by Red blocks. By now you should have a basic understanding of the principals behind the behaviour of Redstone. If not, read through the previous Redstone Basics Tutorials.


Invertor (NOT Gate)

Just as seen in a few of my other tutorials, the invertor outputs the opposite of the input, so if the input is ON, the output is OFF.




AND Gate

If both inputs are ON, the output is ON, else the output is OFF.



Triple AND Gate


This works the same as the AND gate but takes 3 inputs, all of which have to be ON for the output to be ON.




NAND Gate

If both inputs are ON, the output is OFF, else the output is ON.



XOR Gate

As long as both inputs have different states, (one OFF, one ON), the output is ON. If both inputs have the same state, the output is OFF.



XNOR Gate

As long as both inputs have the same state, the output is ON. If the inputs have different states, the output is OFF.


No comments:

Post a Comment