-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatibility with Async #7
Comments
Hello Dear @lbussy , I hope you have any solution for this, I'm so in need for this library to work. This is the error: In file included from C:\Users\firas\Desktop\UNI\Spring 2021\Senior Project\Smart Irrigation\Smart_Irrigation_Test2\Smart_Irrigation_Test2\Smart_Irrigation_Test2.ino:14:0: |
The original WiFiManager is now updated to support Async. To address the error you are seeing however,: #define WEBSERVER_H // <- Define this before you import ESPAsyncWebServer lib
#include "ESPAsyncWebServer.h" |
@lbussy well all the above errors disappeared except this one : I am using the onDemandConfigPortal example with my code. Thanks for your efforts |
I tried to use the original WiFiManager but it had the same error as the first one |
Unfortunately, it's still an include ordering issue. I've never found a better way to get past that than to deconstruct the project (comment out includes) and put it back together again slowly. You will find a nested inclusion somewhere that is responsible. |
The upstream is not well suited to use in an Async environment. Reportedly, this will allow it.
The text was updated successfully, but these errors were encountered: