How to conect 7447 in circuit board to make 7-seg desplay workin

  • Thread starter Thread starter dubai boy
  • Start date Start date
  • Tags Tags
    Board Circuit
Click For Summary

Homework Help Overview

The discussion revolves around connecting a 7447 integrated circuit to a circuit board for a wind speed indicator project. The original poster is attempting to convert an 8-bit signal from an analog-to-digital converter (ADC) to a format suitable for displaying on a 7-segment display.

Discussion Character

  • Exploratory, Assumption checking, Problem interpretation

Approaches and Questions Raised

  • Participants are exploring how to connect two 7447 chips to display a 2-digit output from an 8-bit ADC reading. Questions about the calibration of the ADC output to wind speed and the number of 7-segment displays needed are raised. There is also discussion about using a microcontroller versus discrete logic for the conversion process.

Discussion Status

The discussion is ongoing, with participants providing suggestions and asking clarifying questions. Some guidance on potential approaches, such as using truth tables and considering the use of a microcontroller, has been offered, but no consensus or complete solutions have been reached.

Contextual Notes

Participants note the need to convert an 8-bit ADC output to a 2-digit decimal representation for the display, and there are mentions of constraints regarding the maximum displayable value and the specific components being used.

dubai boy
Messages
2
Reaction score
0
hello everybody i am glad to find this websit and hope its gona help i am student in my last year in betec deploma course and have to do my iva wot is my graduation project so i am willing to do wind speed indactor and i am stuck kn in converter to change the 8bits to 7-seg then to display screen ,,,


i got two 7447 wana conecte it to the circuit board bt do no how to make it work and give me the digit number?


is that all wot i need or its som staff missin to make it work?
 
Physics news on Phys.org
I'm not sure I understand your question (it is not worded clearly), but I'll try to offer some help nevertheless.

You want to make a wind speed indicator with a single 7-segment display? You will display wind speed as 0-9kph? Or will you use two 7-segment displays to be able to display a wider range of speeds?

What are you using to sense wind speed? You say you get an 8-bit quantity -- how are you making that? 8 bits gives you a 0-255 number...what is the calibration to wind speed in kilometers per hour?

There are ICs that convert 4-bit binary numbers directly into the 7 segment drive lines -- do a little google searching to find those ICs. If you want to make your own instead, writre out the truth tables for each of the segments based on a 4-bit input number, and design the logic based on a Karnaugh map for each of the segment truth tables.
 
berkeman said:
I'm not sure I understand your question (it is not worded clearly), but I'll try to offer some help nevertheless.

You want to make a wind speed indicator with a single 7-segment display? You will display wind speed as 0-9kph? Or will you use two 7-segment displays to be able to display a wider range of speeds?

What are you using to sense wind speed? You say you get an 8-bit quantity -- how are you making that? 8 bits gives you a 0-255 number...what is the calibration to wind speed in kilometers per hour?

There are ICs that convert 4-bit binary numbers directly into the 7 segment drive lines -- do a little google searching to find those ICs. If you want to make your own instead, writre out the truth tables for each of the segments based on a 4-bit input number, and design the logic based on a Karnaugh map for each of the segment truth tables.

sorry 4 my writing or nt make it clear i got a fan which is spining by wind conected to mini motor which is change to generator to prduosing voltage so the voltage gona go thrught the a/d convertor so the convertor gona give me the reading in 8bits i did some reasirch and find the 7447 gona change the 8bits to 7-seg deget then i can read it in display screan so far i am stuck in how can i conect the two 7447 chip in circuits board and i gona read the wind speed by k/h then i gona add m/s mile knots so if i miss somthin could are u ppl be kind enugh to aske and thanks aloot
 
dubai boy said:
sorry 4 my writing or nt make it clear i got a fan which is spining by wind conected to mini motor which is change to generator to prduosing voltage so the voltage gona go thrught the a/d convertor so the convertor gona give me the reading in 8bits i did some reasirch and find the 7447 gona change the 8bits to 7-seg deget then i can read it in display screan so far i am stuck in how can i conect the two 7447 chip in circuits board and i gona read the wind speed by k/h then i gona add m/s mile knots so if i miss somthin could are u ppl be kind enugh to aske and thanks aloot

Okay, so it sounds like the initial problem is how to make a 2-digit 7-segment display from an 8-bit number. Well, since a 2-digit display can display 00-99 (assuming you don't do a HEX display), then you only need 7 bits from your ADC. The typical way would be to ignore the lsb of the 8-bit ADC output, and convert the upper 7 bits to the drive for the 7447 chips. The easiest and quickest way to do that, is to use a microcontroller (uC) to read the 7-bits of the ADC output and do the code conversion to form the 8 drive lines for the two 7447 chips. Alternately, you can do it in discrete logic, it will just take more work. You will need to write the truth tables for the two digits (the tens digit and the ones digit), and show how to convert from the 128 possible 7-bit codes to the 100 decimal codes for driving the displays. Be sure to pin the number at 99 for all readings over 99.

You can use google to get more information for your research. Google the following:

binary to decimal converter IC "2-digit"

and look around at some of the hits. Have fun!
 
BTW, keep in mind that we do not do your work for you. So we will not post circuits and papers that will help you short-cut figuring this all out for yourself. The hits you will see from that search will help you with some background information, but there are no exact implementations of how to do it. That is up to you to figure out and build.
 

Similar threads

Replies
6
Views
16K