Has Fastled been updated to support esp32?
It’s been a few months since this was last asked. I searched the forum and couldn’t find anything about esp32 support.
Has Fastled been updated to support esp32?
It’s been a few months since this was last asked. I searched the forum and couldn’t find anything about esp32 support.
That’s because it’s not supported 
For a choice of 2 esp32 drivers, try https://github.com/marcmerlin/Neopixel-IR?files=1
is there any intention to support the ESP32 one day? I’ve seen someone trying to porting the code (https://github.com/eshkrab/FastLED-esp32) but the interrupt management isn’t done yet. will there be a git merge in near future?
https://github.com/eshkrab/FastLED-esp32
@Lukas_Haas anything interrupt driven on ESP32 is doomed to fail IMO. Interrupts do not give you full control and your code can be interrupted.
The only way to do this right is DMA, using the RMT support in that CPU, and that’s what one of the 2 drivers that I pointed to, does.
Sadly, it does not support the nice APis that FastLED supports, just basic color control.
It’s irritating to read this post just after I scrolled by the release notes for 3.1.6 which added support for ESP32? 
the original question was asked 10 days before the release of 3.1.6 . . .
Of course, but I felt it might help others like me finding this post to read that support has been added ;).