Fork me on GitHub

Project Notes

#109 OR Gate with Diode Logic

Test the basic diode-logic OR 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 OR gate.

Output is high given any of the inputs are high:

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

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

  • Out logical “0” == 0V
  • Out logical “1” == VCC - 1 x Vf ~> 4.3V

Pull-down resistors R2,R3 are used to prevent floating inputs.

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#109 DiodeDigital Logic
Project Source on GitHub Return to the LEAP Catalog

LEAP is just my personal collection of electronics projects - 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.

Projects are often inspired by things found wild on the net, or ideas from the many great electronics 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.

For a while I have also included various scale modelling projects here too, but I've now split those off into a new repository. Check out LittleModelArt if you are looking for the modelling projects!

Project Gallery Notebook LittleCodingKata LittleModelArt More on my blog