SOLVE BOTH AS TEXT FILE PLEASE DO NOT SEND WRITING ON PAPER. WILL GIVE A THUMBS UP
LEDs (Light Emitting Diodes)
Three LEDs (one red, one green, one blue) turn on when a number 0–7 is passed through. Red turns on with even numbers, green turns on with odd numbers, blue turns on with multiples of 3. Zero means they are all off, seven means they are all on.
Set–up the appropriate truth table, simplify using K–maps. Implement, using LogiSim, the simplified logic circuit with optimal number of logic gates.
Propose and solve your own digital design problem.
For red LED
A | B | C | Y | |
---|---|---|---|---|
0 | 0 | 0 | 0 | 0 |
1 | 0 | 0 | 1 | 0 |
2 | 0 | 1 | 0 | 1 |
3 | 0 | 1 | 1 | 0 |
4 | 1 | 0 | 0 | 1 |
5 | 1 | 0 | 1 | 0 |
6 | 1 | 1 | 0 | 1 |
7 | 1 | 1 | 1 | 1 |
C' | C | |
---|---|---|
A'B' | 0 | 0 |
A'B | 1 | 0 |
AB | 1 | 1 |
AB' | 1 | 0 |
EXPRESSION:
=========================================================================
For green LED
A | B | C | Y | |
---|---|---|---|---|
0 | 0 | 0 | 0 | 0 |
1 | 0 | 0 | 1 | 1 |
2 | 0 | 1 | 0 | 0 |
3 | 0 | 1 | 1 | 1 |
4 | 1 | 0 | 0 | 0 |
5 | 1 | 0 | 1 | 1 |
6 | 1 | 1 | 0 | 0 |
7 | 1 | 1 | 1 | 1 |
C' | C | |
---|---|---|
A'B' | 0 | 1 |
A'B | 0 | 1 |
AB | 0 | 1 |
AB' | 0 | 1 |
EXPRESSION:
=========================================================================
For blue LED
A | B | C | Y | |
---|---|---|---|---|
0 | 0 | 0 | 0 | 0 |
1 | 0 | 0 | 1 | 0 |
2 | 0 | 1 | 0 | 0 |
3 | 0 | 1 | 1 | 1 |
4 | 1 | 0 | 0 | 0 |
5 | 1 | 0 | 1 | 0 |
6 | 1 | 1 | 0 | 1 |
7 | 1 | 1 | 1 | 1 |
C' | C | |
---|---|---|
A'B' | 0 | 0 |
A'B | 0 | 1 |
AB | 1 | 1 |
AB' | 0 | 0 |
EXPRESSION:
=========================================================================
LOGIC CIRCUIT
Get Answers For Free
Most questions answered within 1 hours.