The FastLED library for colored LED animation on Arduino. Please direct questions/requests for help to the FastLED Reddit community: http://fastled.io/r We'd like to use github "issues" just for tracking library bugs / enhancements.
I have had no luck getting APA102 working with 3.5 version of FastLED library on the Ultimate Maker Feather S2 board (um_feathers2). The LED just would not respond/turn on. To fix the issue, I had to modify endBoundary() function of APA102Controller inside src/chipsets.h to this:
void endBoundary(int nLeds) { int nDWords = (nLeds/32); do { mSPI.writeByte(0xFF); mSPI.writeByte(0xFF); mSPI.writeByte(0xFF); mSPI.writeByte(0xFF); } while(nDWords--); }
This sequence was taken from adafruit micropython project. After this change, APA102 is working as it should. Thoughts?
Hello,
I have had no luck getting APA102 working with 3.5 version of FastLED library on the Ultimate Maker Feather S2 board (um_feathers2). The LED just would not respond/turn on. To fix the issue, I had to modify
endBoundary()
function of APA102Controller inside src/chipsets.h to this:This sequence was taken from adafruit micropython project. After this change, APA102 is working as it should. Thoughts?
Sample code:
PlatformIO config