If you struck a hammer on a thick metal plate and were able to view it in slow motion, you would see it go through several bounces before it settles down and come to rest on the plate. An electrical switch has a set of spring-loaded metallic contacts, and when operated, the contacts close in a manner much like the hammer. High-speed photography captures them repeatedly closing and opening until they settle and close.

This results in false triggering or multiple triggering like a button pressed multiple times. Switch bouncing is not a major problem when dealing with power circuits, but it causes issues on logic or digital circuits. Hence, we use switch debouncing circuits to remove the bouncing from the circuit. The basic idea is to use a capacitor to filter out any quick changes in the switch signal.

Switch Bounce Oscilloscope Waveform Diagram

Figure 1

If we take the circuit in Figure 1A and connect an oscilloscope probe to J2, set the scope to a single trigger, then press the button, you will get something like Figure 2 (below). Both are from the same switch pressed at different times. The scope time-base is 50uS per division, so you can see the contacts bounce up and down during the first 250 or so microseconds. In an analog circuit, this would be of no concern. But a microprocessor running at 16 million cycles per second will see this as someone pressing the switch multiple times. And if this were part of some counting type program, you would get the wrong number of presses.

Figure 2

Switch Debounce Oscilloscope Waveform Diagram

In Figure 1B above, we added a small ceramic capacitor with a value chosen such that the time constant of R3/C3 is longer than 250uS. A 0.1uF will give a time constant of 1mS, or five times longer. Figure 3A below shows the result of adding the 0.1uF capacitor.

Figure 3A

In Figure 1C and D above, we see much-improved circuits using a Schmitt trigger. Schmitt invented this circuit way back in 1937. He used a comparator with positive feedback. It has only two stable statesfully on or fully offbut unlike a comparator without positive feedback, it has hysteresis. This means there is no “hair trigger” spot in the center of the range where the comparator will flip on or off. Instead, if you flipped it on, you must come back well past the trigger point to flip it off again, making it great for dealing with all those undecided bouncing states.

Figure 3A above shows the result of the simple capacitor debouncer in 1C. It would work fine for circuits that are not timing-critical. But what is the purpose of R6 here? It actually has nothing to do with the debouncing. When C3 gets rapidly discharged (shorted, in fact), it may well create switching transients of its own by causing large, rapid currents in the wiring. R6 slows the discharge down a bit to overcome this noise. R6 is 1/10 of R3. Figure 3B (below) shows the vastly improved clean switching of either Schmitt circuits in Figures 1C and D.

Figure 3B

But how about D1? It enables C2 to charge faster without affecting the discharge path of R7. Since the Schmitt trigger is an inverter, it reverses the output.

Debouncing a Switch With an SN74HC14 Schmitt Trigger

The wiring diagram below shows how to add an SN74HC14 Schmitt trigger to the circuit in Figure 1C. In a real circuit, any unused CMOS inputs should be grounded to prevent unwanted effects. In this diagram, they were left out to not complicate the drawing.

These are the parts you will need to build this project:

Once you have all of the parts, connect the circuit following this wiring diagram:

Switch debouncing circuit

In hardware applications, these debouncing circuits are necessary. However, in many Arduino programs, you will be able to debounce a switch in software. There is no harm in doing both as this will also reduce unwanted noise and transients, possibly affecting other parts of your circuit.

Let us know in the comments how this works for you!