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
I was getting the same error as #63 and I realized that I'd installed the library from IDE instead of using the zip from github
If you add the ESP32AsyncWebServer from Arduino ide 2.04, the library is renamed as ESP32AsyncWebSrv.
You have to change #include "ESPAsyncWebServer.h"
to #include "ESPAsyncWebSrv.h"
and it compiles right and it works perfectly
The text was updated successfully, but these errors were encountered:
i will attest to this i have an esp32 s3, after i did this and had all the libraries installed and working the sketch compiled perfectly and seems to operate as it should. i have yet to test it on my ps4 but i expect there to be no issues.
I was getting the same error as #63 and I realized that I'd installed the library from IDE instead of using the zip from github
If you add the ESP32AsyncWebServer from Arduino ide 2.04, the library is renamed as ESP32AsyncWebSrv.
You have to change
#include "ESPAsyncWebServer.h"
to
#include "ESPAsyncWebSrv.h"
and it compiles right and it works perfectly
The text was updated successfully, but these errors were encountered: