Ian
Administrator
I've bought a 8x32 flexible RGB LED panel from AliExpress to have a tinker with, as it looks like a fun way to improve my Arduino programming skills (and no doubt useful for a project in the future).
It looks like each LED can use up to 3x20mA (60mA for white) of current, so 256x0.06 = 15.36A if all LEDs are set to white at max brightness.
I'll be using this indoors, so the brightness levels will be waaaaay lower than max - plus I'll likely only be using up to half of the LEDs at any one time (perhaps all in white, likely another RGB mix). Normally I'd just use a 5V 20A supply and be done with it, but I've not got one to hand and would rather avoid a beefy supply for what I'd hope to package in a small enclosure.
It looks like if I use the FastLED library (http://fastled.io/), I can limit the current using "set_max_power_in_volts_and_milliamps" - so I can set this based on the power supply I use.
Based on a what I've read, 6A sounds like it should be plenty of current to drive the number LEDs at the brightness level I'll be using. However, my concern is that the WS2812B uses PWM dimming - so do this mean that I'll still need to cater for a higher max current usage no matter which brightness I use, or are the LEDs pulsed out of phase with eachother? i.e. are all LEDs going to be pulse at the same moment, meaning I'll need to provide for a higher load.
Any thoughts would be very welcome
.
It looks like each LED can use up to 3x20mA (60mA for white) of current, so 256x0.06 = 15.36A if all LEDs are set to white at max brightness.
I'll be using this indoors, so the brightness levels will be waaaaay lower than max - plus I'll likely only be using up to half of the LEDs at any one time (perhaps all in white, likely another RGB mix). Normally I'd just use a 5V 20A supply and be done with it, but I've not got one to hand and would rather avoid a beefy supply for what I'd hope to package in a small enclosure.
It looks like if I use the FastLED library (http://fastled.io/), I can limit the current using "set_max_power_in_volts_and_milliamps" - so I can set this based on the power supply I use.
Based on a what I've read, 6A sounds like it should be plenty of current to drive the number LEDs at the brightness level I'll be using. However, my concern is that the WS2812B uses PWM dimming - so do this mean that I'll still need to cater for a higher max current usage no matter which brightness I use, or are the LEDs pulsed out of phase with eachother? i.e. are all LEDs going to be pulse at the same moment, meaning I'll need to provide for a higher load.
Any thoughts would be very welcome