is this extremely hard to do with the propeller,
jvrproductions
Posts: 61
any sugestion will be welcome[video]http://m.youtube.com/index?desktop_uri=/&gl=US#/watch?v=9TafnBAEoOw[/video]
Comments
What may be a better way to do the arrays how many leds may be controlled by one propeller, (Just learning)
This link doesn't show me a video. What are we supposed to be looking at here?
And here's the original video link without the "mobile" junk on it: http://www.youtube.com/watch?v=9TafnBAEoOw
http://forums.parallax.com/showthread.php?136152-LED-Marquee-Module-for-Gadget-Gangster-Platform-(w-video)
A module with a built in driver has the advantage of simplicity and is a turn key solution. You will need to read the module's documentation to learn how to control it, but it will likely be easier than building your own. I built mine from scratch for the challenge and learning it afforded, but that was more my goal than the module itself.
Thanks
Jose
That's a good question because at first glance it look like I would need 192 pins to control that many LED's. But there are two ways to increase the number of LED's you can control.
* First arrange the LED's in a matrix and hook one set of pins to the rows and another set to the columns. Start with all pins set to input, bring a row pin high, now step through the column pins switching from input to low if the LED should be on. Set the row pin back to an input and move to the next row. You can see this technique in my code and in the schematic of my post. For example if you had ten row pins and ten column pins you could control 100 LED's with twenty pins.
* Second is that I used Charlieplexing where I connected two LED's to the same row and column, but biased them in the opposite directions as alternate columns. This doubles the number of LED's you can control so your twenty pins above is now controlling 200 LED's. The schematic shows how alternate LED's are forward or reverse biased.
You can go crazy with Charlieplexing and control an even greater number of LED's, but it gets complicated fast. If you want to start simple just bias all the LED's in your matrix the same direction, save Charlieplexing for later.