Using 2x 74LS47 to input binary 0-15

  • Thread starter Thread starter chrisalviola
  • Start date Start date
  • Tags Tags
    Binary Input
AI Thread Summary
Connecting two 7447 ICs to display binary inputs from 0 to 15 on two 7-segment displays is possible but not ideal, as the 7447 is limited to displaying decimal values up to 9. The second digit will always show incorrect outputs for values greater than 9, resulting in unreadable characters. A better solution would be to use a more suitable decoder, such as the Fairchild 9368, which can handle hexadecimal outputs correctly. If limited to the 7447, the design would require careful manipulation of inputs and outputs, but it may not yield satisfactory results. For more effective counting applications, using 7490 counters with 7447 decoders or a 4026 IC is recommended for better performance and accuracy.
chrisalviola
Messages
80
Reaction score
0
is it possible to connect 2x 7447 IC's and 2x 7 segment and input binary 0-15?
 
Physics news on Phys.org
yes, that would be a fun project.

one chip takes 9 as the highest number, so you would have to do some splicing and gating.

but it's sort of redundant to use the second chip, 1 could be displayed with just one control line.
 
Last edited:
can give me a schematics on this or maybe a link so i can implement this
 
chrisalviola said:
is it possible to connect 2x 7447 IC's and 2x 7 segment and input binary 0-15?
Hi Chris-
Do you want to input binary 1111 and get output octal 17, or decimal 15 ?
Bob S
 
The 7447 is a poor choice for this.

Instead of using several chips to compensate for using the wrong decoder, you could look for a device like the Fairchild 9368 chip which decodes binary inputs of 10 to 15 as A, b, C, d, E and F which are the correct HEX outputs for these inputs.

So, you would only need one of them and one 7 segment display.
 
@vk6kro
the decoder i have now is only 7447 ic so i have to make use of this.

@Bob S
in 1 of the 7447 ic you need to input 0000 upto 1111(15) so it should display the decimal equivalent in the 2x 7 segment. if its 15 the 1st 7 segment should display 1 and the other 5.
this is what the cuircuit should look like.
sample.jpg
 
Last edited:
@vk6kro
the decoder i have now is only 7447 ic so i have to make use of this.

If you can't make use of any other ICs, then I don't think you can do that.

The second digit would always be a 1 or a 0, but the 7447 output on the right hand digit would be garbage for numbers greater than 9. It makes a series of letter "C"s oriented in different directions.

If you can make use of any other IC's you should throw out the 7447s and use a suitable chip. These chips are very cheap.

It is a simple job with a microprocessor and cost effective as well. You could have 8 bit binary pretty easily decoded to 3 displays.

Is this a school assignment?
 
vk6kro said:
@vk6kro
the decoder i have now is only 7447 ic so i have to make use of this.

If you can't make use of any other ICs, then I don't think you can do that.

The second digit would always be a 1 or a 0, but the 7447 output on the right hand digit would be garbage for numbers greater than 9. It makes a series of letter "C"s oriented in different directions.

If you can make use of any other IC's you should throw out the 7447s and use a suitable chip. These chips are very cheap.

It is a simple job with a microprocessor and cost effective as well. You could have 8 bit binary pretty easily decoded to 3 displays.

Is this a school assignment?


not at all, i was thinking of using this 4 binary input as a count-up timer given the input was from a 555 ic and a 7490.
 
So, just use two 7490's. They only give BCD out anyway, but you can have one driving the next. Each 7490 can drive a 7447 which can then drive a 7 segment display.

This would let you count up to 99 before it starts again.

You would then have the beginnings of a frequency counter.
 
Last edited:
  • #10
You should put an AND gate on the counter with the inputs on QA and QD and the output connected to the reset of the counter

or instead you can use a 4026 ic that has the outputs decoded for a 7- segment lcd display.
if you are connecting them together then connect pin 5 of the first 4026 to pin 1 of the other

second of all, you need to give a clock pulse to pin 1 of the first countergoogle: "integrated circuits by generic number"

and click the first link. it has datasheets for every ic (except for a few)
 

Attachments

  • 4026tab.gif
    4026tab.gif
    10.1 KB · Views: 1,175
Last edited:
Back
Top