7 Segment Display Multiplexing
Gorilla
Posts: 16
I have Four Common anode 7 segment displays wired together and I am wanting to multiplex them. I plan to define each character and each display as a symbol I just need help writing the code. I want to have a counter for the characters and one for the anodes that will cycle through each of the characters and each display. I know I can chain multiple 74hc595's together but what I am aiming for is to cut down on actual hardware and use one 595 to control the displays via 3 wire serial interface and use a darlington array for the anodes. What I plan to do is something like this. What darlington array can I use with 74hc595?
'From right to left binary number position equals Segments ABCDEFG.
SYMBOL %1001110,C 'Letter C,
SYMBOL %1000,display1
SYMBOL %0100,display2
displayCounter var NIB
'From right to left binary number position equals Segments ABCDEFG.
SYMBOL %1001110,C 'Letter C,
SYMBOL %1000,display1
SYMBOL %0100,display2
displayCounter var NIB
Comments