With a few components, you can convert a standard 1-MHz SPI data stream into a bit stream suitable for WS2812(B)-type addressable RGB LEDs (a.k.a. NeoPixels). This allows controlling 25% more LEDs in the same period while freeing up MCU resources.
With a few components you can convert a standard 1 MHz SPI data stream into a bit stream compatible with WS2812B-type addressable RGB LEDs (aka NeoPixels). A 1 MHz data rate allows controlling 25% more LEDs in the same period than a standard 800 kHz software-based (typically bit-banging) driver can do while freeing up memory and processing power on the MCU at the same time. The result: more LEDs to play with and more processing power available for nicer animations. This is what we call a win-win situation.
Clemens dives into the circuit details.
Use the WS2812(B)’s Headroom
Usually, it is assumed that WS2812(B) LEDs (and its clones) must run at 800 kHz, which is an inconvenient frequency for microcontrollers clocked at 4, 8, 12 or 16 MHz or any other frequency that is not a power-of-two multiple of 800 kHz. However, when you read the LED’s datasheet carefully, you will notice that the timing tolerances are almost 50%, which is rather generous.
This means that a data rate of 1 MHz should work too as it is only 25% faster than 800 kHz and therefore within the 50% headroom. 1 MHz is a frequency that most SPI peripherals can produce easily, even if they only have a basic clock prescaler.
In this video we show you how to profit from this by adding a few components to the microcontroller.
Discussion (4 comments)
RICH OBERMEYER 3 years ago
Any changes to the analog requires a PCB change and usually trial and error to get working precisely.
I built a project for a client that drives your LEDs with a simple STM32L071 ST CPU.
Most any CPU that has a working SPI will work.
I took the MOSI output of the SPI and drove the DIN of the LED array. That's all you need.
I included a level shifter in my design too but that depends on your micro and power supply.
Build an image in memory of the bits for each LED. Each word is and LED.
The image gets bigger with number of LEDs. I have upto 150 LEDs I think.
Start the SPI to send the image each time you change the image and the LEDs will change.
I use the DMA of the micro to feed the SPI so the CPU is free to do other things.
Easy peasy
ElektorLabs 3 years ago
RICH OBERMEYER 3 years ago
You provided as a given an SPI interface from a arduino micro with 2 signals. MOSI and SCLK. You add a bunch of analog components and you can drive a programmable LED string. I indicated that you don’t need most of those analog components. You showed how adding lots of unnecessary analog components and tweaking the values until it sorta works is an alternative design. So the objective of your video is showing how adding unnecessary components is useful?
ElektorLabs 3 years ago