I'm a little late, but maybe I can help someone with the same issue.I solved that problem by adding two zeros before the data. You need to declare:uint16_t pwmData[24*NUM_OF_LEDS + 52]Then, before adding the data, you need to do this:pwmData[0] = 0;p...