SK9822 LED Compare with APA107 LED

Firstly Let us analyze the APA107, although it was more expensive than the common WS2812, and harder to come by, it had some intriguing properties. The main benefits are a timing-insensitive SPI interface, allowing easy interfacing to standard periphery, and a much higher PWM frequency of >19kHz, making the APA107 almost flicker free.

So much about that. Considering how things with LEDs from China go, it should not take too long for clones to appear? Indeed! Recently, several comments showed up on my blog, reporting about issues with APA107 LEDs they bought. It quickly turned out that these were SK9822, APA107 clones from the same company that already brought the SK6812 to us, a WS2812 clone.

At a first glance, it is obvious that both LEDs use different ICs. The die used in the SK9822 is much smaller than the APA107. As a rough estimate, the APA107 seems to be 1 mm², while the SK9822 is ~0.65 mm². The smaller die likely results in a lower cost. So it is not surprising that vendors are trying to replace APA107 with SK9822…

But why are people complaining about the SK9822 being incompatible? According to the datasheet (linked here), the data format is supposed to be exactly the same. In fact, it looks like the sections in the datasheet are copied directly from the APA107 datasheet. However, even the original APA107 datasheet wasn’t too accurate when it came to the data format. For more details, please check out my post on investigating the APA107.

Probing the SK9822 quickly revealed that something was off when using it in the same way as a APA107. As shown above, the data format itself seems to be identical, and data forwarding from one LED to the next seems to work in the same way as with the APA107. However, every colour combination written to the SK9822, only was shown during the next update cycle. Some more probing isolated the issue: The SK9822 updates the PWM registers in the first cycle after the next start frame (0x00000000), while the APA107 updates the PWM register immediately after receiving the data. Since the next start frame is sent at the beginning of the next update, this means that the color update is delayed.

I can only speculate about the reason for this deviation. Possibly the SK9822 was implemented using the APA107 datasheet as a reference, and this was a misinterpretation on the, admittedly, not very accurate description of the protocol. Actually, the way the update is implemented in the SK9822 makes more sense than in the APA107, because it allows to update all LEDs at once instead of the staggered update of the APA107.

Unified protocol

The only way to get the SK9822 to work properly is to send an additional “reset frame” of 32 zero bits at the end of the bitstream to trigger the PWM register update. Luckily there is a very easy way to implement this in a way where it is compatible to the APA107: The endframe of the APA107 can be either ones or zeroes (see here). Simply emitting another 32 zeroes at the end will not have any impact on the APA107, given that also the endframe is changed to zeros.

A protocol that is compatible to both the SK9822 and the APA107 consists of the following:

A start frame of 32 zero bits (<0x00> <0x00> <0x00> <0x00> )
A 32 bit LED frame for each LED in the string (<0xE0+brightness> )
A SK9822 reset frame of 32 zero bits (<0x00> <0x00> <0x00> <0x00> ).
An end frame consisting of at least (n/2) bits of 0, where n is the number of LEDs in the string.
SK9822 LED driver characteristics

To probe the SK9822 LED driver, I mounted a photodiode in front of one LED and connected it to an oscilloscope. This allowed me to directly monitor the modulation scheme of the LEDs. The exemplary image below shows both the dataline and the photodiode signal during an update from RGB=0xFF0000 to RGB=0x800000. The PWM frequency can be directly measured in the scope trace. It is 4.7kHz for the SK9822 – about four times lower than the 19.2kHz, but not even close to the 430 Hz flicker hell of the WS2812.

Something interesting happened, when I tried to change the global brightness setting. In the trace below I started with maximum brightness and reduced it to 50% by either using the global brightness register or the PWM register. As can be seen below, reducing the brightness to 50% reduces the light output from the LED, but no pulse width modulation is visible. It appears that the SK9822 uses a controlled current source to set the global brightness. This is in contrast to the APA107, which superimposed a lower frequency PWM pattern if the global brightness was not set to its maximum.

This is confirmed by the trace below. Here, I activated the PWM by setting RGB=0x800000 and ramping through the global brightness setting. The global brightness setting does indeed control the driver current setting.

The implementation of a programmable current source in the SK9822 is actually a very welcome improvement. In contrast to the original, the APA107, the LEDs do not start to flicker if the global brightness is reduced. This is a very nice feature if the SK9822 is used in a display. In addition, lowering the current setting allows to reduce peak current consumption, which can be quite an issue if you have plenty of LEDs PWMed at 3x20mA.

Summary

At a first glance, the SK9822 looks like an identical clone of the APA107, but taking a closer look reveals plenty of differences, see table below.
%E6%9C%AA%E6%A0%87%E9%A2%98-1

In conclusion, the SK9822 is not an exact clone of the APA107. It adds some interesting features. For example the programmable current source to control global brightness and a non-staggered update. But there are also some drawbacks like the protocol incompatibility and the lower PWM frequency. The incompatibility in the protocol can be worked around by using the unified protocol proposed above.

An obscure special requirement related to PWM frequency

Thanks shallenliu for your observations,

I have been looking into an application involving LEDs physically moving in a scan pattern, similar to the “Holographic LED Fans” being marketed, which use beween 142 and 512 close packed 2mm LEDs to generate simple photo images.

Updating the LED color with each position change, at a rate near the PWM rate would result in significant color inaccuracy do to the asynchronous PWM clock these LEDs use.

The solution may require either a single PWM cycle per color update (eliminating the standard self sustaining light output), or an external PWM clock input enabling synchronization of the mechanical scan position & color changes with PWM cycles.

The single PWM pulse on color updates mode could be enabled by a special code passed in the spare 3 bits of the global dimming setting.

Such a special purpose variation could eliminate outboard driver chips being used with simple RGB LEDs shown the photo. This could speed product design variations.

LED Fan blades anddrivers.

I hear there is a SK9822-A led now. The maximum PWM frequency can reach 27KHZ input.APA107 is just 9KHZ,SK9822 is 4.7KHZ.

Because of @Crystal1986’s new reply, I came to discover this thread.

The original post from @shallenliu is a carbon copy of SK9822 – a clone of the APA102?, a 2016 post from Tim’s Blog, with just the APA102 replaced by APA107.

I don’t mind reusing something made by others, but it’s always good courtesy to provide sources.

If Tim and Shallen Liu are the same person, I apologize for this.

The PWM frequency of >19kHz was archivable but not so flicker less while using spi standard interface.