In: Electrical Engineering
Four bit down counter with a 7 segment display (hexadecimal digits 0-F) will have two blocks:
Block 1: Implementation of the seven-segment display with switches as inputs (for which we will use decoders)
Block 2: Implementation of a four-bit down counter using JK flip flops(as mentioned).
BLOCK 1:
BLOCK 2: FOUR BIT DOWN COUNTER
Qn | J | K | |
0 | 0 | 0 | |
0 | 1 | 1 | |
1 | 0 | 1 | |
1 | 1 | 0 |
' ' denotes don't care condition
' Qn ' is the present state
' ' is the next state
Hence, for instance, if we want the output to change from 0 to 1, the inputs to the Flip flop will be J=1, K=
The final block