|
Science Forum Index » Electronics - Design Forum » 8 bit decoder
Page 1 of 1
|
| Author |
Message |
| Guest |
Posted: Thu Feb 15, 2007 7:25 am |
|
|
|
|
hi !
i am working on a circuit and i need to decode 8 bit binary number to
show that number to 7 segment BCD display.How can i do that ???? |
|
|
| Back to top |
|
| Dave Pollum |
Posted: Thu Feb 15, 2007 10:54 am |
|
|
|
Guest
|
On Feb 15, 6:25 am, heman_too_c...@yahoo.co.in wrote:
Quote: hi !
i am working on a circuit and i need to decode 8 bit binary number to
show that number to 7 segment BCD display.How can i do that ????
If you want to display BCD data (0 thru 9) on a 7-segment display,
something like a 7447 or CD4511 (or their modern equivalents) would
work. For 8-bits, you'll need 2 chips and 2 LED displays. If you
want to display hexadecimal (0 thru F), check out the Maxim ICM7212 (4
digits). I found the Maxim part by googling for "7-segment driver".
HTH
-Dave Pollum |
|
|
| Back to top |
|
| Don Lancaster |
Posted: Thu Feb 15, 2007 12:01 pm |
|
|
|
Guest
|
|
| Back to top |
|
| samiam |
Posted: Thu Feb 15, 2007 1:31 pm |
|
|
|
Guest
|
heman_too_cool@yahoo.co.in wrote:
Quote: hi !
i am working on a circuit and i need to decode 8 bit binary number to
show that number to 7 segment BCD display.How can i do that ????
I am doing something like this RIGHT NOW on a project I am working on.
I have two 16L8 PLD's and a table to decode the hex values.
I split the data bus into two nibbles and feed each to the PLD. The PLD
outputs drive the seven segments ... works like a charm |
|
|
| Back to top |
|
| Rich Grise |
Posted: Thu Feb 15, 2007 6:03 pm |
|
|
|
Guest
|
On Thu, 15 Feb 2007 17:31:03 +0000, samiam wrote:
Quote: heman_too_cool@yahoo.co.in wrote:
hi !
i am working on a circuit and i need to decode 8 bit binary number to
show that number to 7 segment BCD display.How can i do that ????
I am doing something like this RIGHT NOW on a project I am working on.
I have two 16L8 PLD's and a table to decode the hex values. I split the
data bus into two nibbles and feed each to the PLD. The PLD outputs drive
the seven segments ... works like a charm
If he wants a BCD display, he'll need three digits to cover the range
0..255.
Cheers!
Rich |
|
|
| Back to top |
|
| Andrew Edge |
Posted: Fri Feb 16, 2007 11:15 am |
|
|
|
Guest
|
On 15 Feb 2007 03:25:14 -0800, heman_too_cool@yahoo.co.in wrote:
Quote: hi !
i am working on a circuit and i need to decode 8 bit binary number to
show that number to 7 segment BCD display.How can i do that ????
Your 7 segment BCD display accepts 4 bits of data.
You have 8 bits which means you need 2 of them.
A decoder. Ummmm. You could do without one. Get a 8 BIT Serial IN
Parallel OUT Shift register Chip. Connect the outputs to your 2 BCD
display chips.
You could get the same result by cascading 8 flipflops instead of the
shift register.
Andy |
|
|
| Back to top |
|
| |