Can the MAX7219 driver 16 individual LEDs? #1516
Replies: 5 comments
-
Posted at 2016-01-22 by @gfwilliams I'm not sure it will. However, you could use pretty much any shift register if your LEDs are all common-grounded. They're cheap, easy to wire, and very easy to interface to. Adafruit have a tutorial for Arduino here: https://learn.adafruit.com/adafruit-arduino-lesson-4-eight-leds/overview Same thing with Espruino really - but you can just chain most shift registers together, so you can add as many blocks on LEDs as you want. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2016-01-22 by Owen Is it safe to use the 595 to run 8 LEDs at once? I think I remember reading somewhere you shouldn't do that as the current it too high for the IC but I could be wrong? |
Beta Was this translation helpful? Give feedback.
-
Posted at 2016-01-22 by @gfwilliams I'm not sure, but I doubt Adafruit's example would be doing bad things to the 595. They're usually quite good about that - if you used maybe Maybe others might be some help here - but Adafruit is a actually pretty good source for these kind of tutorials I think. Also there are loads of resources for Arduino if you search, and converting the software (at least in these cases) for Espruino is trivial. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2016-01-22 by DrAzzy 595 is rated for only 70mA max. So depends on how much current you feed the LEDs - as long as it's under ~9mA you should be okay. With Vcc=5v, a red LED (~2V drop) could have a resistor as small as 330 ohm on it, but no less, assuming you're going to have eight of them on the shift register. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2016-01-24 by CanyonCasa Here's an example that does what you ask... https://hackaday.com/2011/11/05/controlling-shift-registers-via-spi/
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2016-01-22 by Owen
I've used the MAX7219 before with an 8x8 matrix but I'm wondering if it can also driver 16 individual LED that are all common grounded? No multiplexing or PWM just being able to control 16 leds.
If that's not possible what other easy to use LED driver ICs are there I should look at?
Beta Was this translation helpful? Give feedback.
All reactions