Hey folks, I'm trying to use ESPAsync_WIFIManager to create a wifi example on theLuos_engine lib. But I have hard time to solve all the dependancies issue. To make it simple I came back to a simple project. I'm just tying to compile theAsync_ConfigOnDoubleReset example for ESP32. I use theplatformio.iniprovided on your repo without changing anything :
 Here is the error I get : src/Async_ConfigOnDoubleReset.cpp:359:10: fatal error: ESPAsync_WiFiManager.h: No such file or directory******************************************************************************* Looking for ESPAsync_WiFiManager.h dependency? Check our library registry!** CLI > platformio lib search "header:ESPAsync_WiFiManager.h"* Web > https://registry.platformio.org/search?q=header:ESPAsync_WiFiManager.h******************************************************************************* #include <ESPAsync_WiFiManager.h> //https://github.com/khoih-prog/ESPAsync_WiFiManager
So I addedhttps://github.com/khoih-prog/ESPAsync_WiFiManager as a dependancy on the platformio.ini, and now i have : .pio/libdeps/ESP32/ESPAsync_WiFiManager/src/ESPAsync_WiFiManager.hpp:208:10: fatal error: ESPAsyncDNSServer.h: No such file or directory**************************************************************************** Looking for ESPAsyncDNSServer.h dependency? Check our library registry!** CLI > platformio lib search "header:ESPAsyncDNSServer.h"* Web > https://registry.platformio.org/search?q=header:ESPAsyncDNSServer.h**************************************************************************** #include <ESPAsyncDNSServer.h>
So again I addeddevyte/ESPAsyncDNSServer@^1.0.0 as a dependancy but I still have the same error... Did I miss something? |