I2SClocklessLedDriver
I2SClocklessLedDriver copied to clipboard
ESP-IDF Support
Very cool project first of all! thanks for sharing.
I read here that this library supports ESP-idf, however, I'm having trouble getting the compiler to recognize your .h properly (perhaps because it's actually C++, not C, e.g. cstring doesn't seem to be available). Do you happen to have a basic example of your library integrated with esp-idf
hello I will look at it since the version 5 of esp-idf I need to make changes I will try to look at it asap Yves
ahhh thanks! I'm actually on IDF 4.4.4 and it still seems to not want to work, I'm going to keep fiddling as well. I'll post a minimum reproducible example if I can get it working
So more digging, seems like the .h was getting treated as a C compiled file, which I remedied via
#ifdef __cplusplus
extern "C++"
{
#endif
however, it seems like there are other references in your code to Arduino.h... is it required to run an Arduino core in esp-idf to get your program to work?
Who is going to get IDF v5 support first, you or FastLED? 😜
Normally it should be already compatible with espidf v5. I have made the necessary change for the virtualLed I will check for this one