#556 555 SR Latch
Set/Reset latch with a 555 timer.
Here’s a quick demo..
Notes
A Set/Reset latch is one of the fundamental building blocks in digital logic: essentially a 1-bit memory device (set high with a “set” input, and remaining high until a “reset” input is received; repeated pulses cause no change to the output).
The behaviour is summarised here:
S | R | Action | Q (next) |
---|---|---|---|
0 | 0 | Hold State | ~ |
1 | 0 | Set | 1 |
0 | 1 | Reset | 0 |
1 | 1 | Invalid, n/a | ~ |
The 555 timer has an SR Latch as one of its internal building blocks, so it should be no surprise that it is possible to build an SR Latch with the chip.
The trick is to essentially by-pass the “5-5-5” stacked comparators:
- threshold (4) is pulled to ground, thus it can never activate and reset in the internal SR Latch
- trigger (2) is the “set” input - normally pulled high, but when triggered (pulled low) will immediately set the internal SR Latch
- reset (4) directly triggers the internal SR Latch reset when pulled low
Construction
Credits and References
- LM555 datasheet
- FLIP FLOP and MEMORY CELL - talkingelectronics
- SR latch - wikibooks
- Flip-flop - wikipedia