You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am trying to compile the example E131_Test sketch using VScode/Platformio, and am getting this error when compiling:
.pio/libdeps/esp32devE131/ESPAsyncUDP/src/AsyncUDP.cpp:5:10: fatal error: user_interface.h: No such file or directory
I bounced this error off of ChatGPT and it suggested that user_interface.h is specific to ESP8266 boards. I have added the ESPAsyncE131 successfully in Platformio, what else am I missing?
Thank you
The text was updated successfully, but these errors were encountered:
I worked around it, It seems that Platform.io is incorrectly installing "ESPAsyncUDP" which only works on esp8266 boards. The AsyncUDP is included in the Arduino framework already for ESP32 platforms. I worked around it by deleting the ESPAsyncUDP folder from inside "libdeps\esp32dev".
Looks like in library.json the dependencies -> platforms key is a string instead of an array. The documentation says it should be able to be either... however when I changed it to an array platform.io no longer tried to download the ESPAsyncUDP on the espressif32 platform.
Hi, I am trying to compile the example E131_Test sketch using VScode/Platformio, and am getting this error when compiling:
.pio/libdeps/esp32devE131/ESPAsyncUDP/src/AsyncUDP.cpp:5:10: fatal error: user_interface.h: No such file or directory
I bounced this error off of ChatGPT and it suggested that user_interface.h is specific to ESP8266 boards. I have added the ESPAsyncE131 successfully in Platformio, what else am I missing?
Thank you
The text was updated successfully, but these errors were encountered: