7 segment displays
DAVID COOKE
Posts: 42
I have the basic stamp homework board
I want to drive 3 separate 7 segment displays
is this possible?
I would appear to need 24 output pins so there is insufficent on a single BS2
thanks
david cooke
I want to drive 3 separate 7 segment displays
is this possible?
I would appear to need 24 output pins so there is insufficent on a single BS2
thanks
david cooke
Comments
However you would require one of these for each digit...
presumably i would also need a 555 for each 4026
the aim is to produce a small display to show windspeeds in the range 0.0 to 9.9
(and a further module which is blank for positive wind, and shows a "-" for negative
dc
StampWork:
http://www.parallax.com/Portals/0/Downloads/docs/books/sw/Web-SW-v2.1.pdf
If you pulsed between 1 - 10 pulses (10 is for the 0) you would get that as the result on the display. However you can chain multiple 4026's together so that every time the 1st digit hits 10, it increments the 2nd digit, so you can then display between 0 - 99 from one pin.
This is useful if you're doing say a temperature display and don't need individual control of each digit.
I also connected all of the reset pins together to 1 pin on the BASIC Stamp so that I can reset all 3 digits at once (my project measured temperature to .1 of a degree) and I simply toggled this each time I wished to refresh the displays.
I can provide example code if required when I am at home.
Your other options are to use a 7-seg driver, buy a serial IO 7-seg display, or use serial shift registers.
Good Luck
many thanks for your comments and advice
dc