Dual MAX7219 Chips and displays simultaneously?
ifright
Posts: 6
I need to display the same information on two separate numeric displays. One is local, the other remote - about 50 feet away in another room. I have two MAX7219 driving 3 digits each. A Basic Stamp 1 is running the displays.
I have tried running the chips in parallel sharing the Data, Clock & Load lines - then both displays stop working.
Is there a way to split or duplicate the lines for each display? Is there a chip for that?
Do I need to somehow use another set of pins from the BS1 and duplicate the information (Data, Clock & Load lines) on those pins? Is it possible?
I have tried running the chips in parallel sharing the Data, Clock & Load lines - then both displays stop working.
Is there a way to split or duplicate the lines for each display? Is there a chip for that?
Do I need to somehow use another set of pins from the BS1 and duplicate the information (Data, Clock & Load lines) on those pins? Is it possible?
Comments
(The output of one set is connected to the input of the next set)
Then you can just clock ot the samedata twice to mke it work.
Note: NEVER parallell couple DATA pins unless you're absolutely certain that only one is active at any time and that the others are in a 'high-impedance' mode. Otherwise you may end up short-circuiting them.
Daisy chaining would cut it down to 3 pins, and you would use the Q' (data out) pin of one 7219 to feed the Q (data in) pin of the second 7219. This makes sense if both chips are in close proximity and if you don't mind setting up your code to always load BOTH chips at once (the second chip in the chain receives the first set of bytes out, the first chip in the chain receives the second set of bytes out).
I shall try your recommendations.