Fork me on GitHub

Project Notes

#110 AND Gate with Diode Logic

Test the basic diode-logic AND gate

Notes

Diode logic was used extensively in early computers but is largely obsolete now, since it cannot isolate inputs or outputs without additional circuitry, and there will be at least a 1-diode voltage drop to deal with across the gate.

It is interesting to see how various logic gate may be realised with diodes (and resistors) alone. Here is the basic AND gate.

Output is high only when all the inputs are high:

A B OUT
0 0 0
0 1 0
1 0 0
1 1 1

In this circuit with VCC of 5V and where Vf is the diode forward voltage of approx. 0.7V, Vr2 is the voltage drop across R2:

  • Out logical “0” == Vf ~> 0.7V
  • Out logical “1” == VCC - Vr2 ~> 3.4V

Note that with a normally-open switch, it engages logical “0” when closed, and logical “1” when open .. so the switch behaviour may appear inverse (more like a NOR gate) to the actual electrical behaviour. This apparently contradictory behaviour is resolved if a normally-closed switch is used.

The Arduino is not a core part of the circuit. It only does the following:

  • provides +5V power supply (for convenience)
  • measures the input and output voltages for plotting. It uses the PlotNValues sketch for this purpose.

Here’s a sample trace. The upper trace is the output, the lower traces the inputs.

processing trace

Construction

Breadboard

The Schematic

The Build

Credits and References

About LEAP#110 DiodeDigital Logic
Project Source on GitHub Project Gallery Return to the LEAP Catalog

This page is a web-friendly rendering of my project notes shared in the LEAP GitHub repository.

LEAP is just my personal collection of projects. Two main themes have emerged in recent years, sometimes combined:

  • electronics - usually involving an Arduino or other microprocessor in one way or another. Some are full-blown projects, while many are trivial breadboard experiments, intended to learn and explore something interesting
  • scale modelling - I caught the bug after deciding to build a Harrier during covid to demonstrate an electronic jet engine simulation. Let the fun begin..
To be honest, I haven't quite figured out if these two interests belong in the same GitHub repo or not. But for now - they are all here!

Projects are often inspired by things found wild on the net, or ideas from the many great electronics and scale modelling podcasts and YouTube channels. Feel free to borrow liberally, and if you spot any issues do let me know (or send a PR!). See the individual projects for credits where due.