-
Notifications
You must be signed in to change notification settings - Fork 19
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
Make AsyncDNS arduino-esp32-compatible #3
Comments
I don't use esp32, and I don't plan to in the near future. |
@drws use this on ESP32: https://github.com/guestisp/ESP32AsyncDNSServer |
Proposed PR has been merged. |
thank you |
This change is not reflected in the version PlatformIO installs automatically. This caused errors about missing dependencies for esp8266 when compiling my esp32 project. I do not know how the PlatformIO Registry is updated, or who is responsible. Maybe @devyte can push the update somehow? |
I don't know about pushing anything, I don't use PIO myself, so I have no idea how this lib is integrated there. But I can make changes within this repo if that helps anyone. So if anyone knows what needs to be done here, or better yet: proposes the needed changes in a PR, I can look into it. |
I bet if you just change the version number, it'll trigger PIO to get the latest? |
PR open for this in #6. |
Currently ESPAsyncDNSServer includes ESPAsyncUDP with
#include <ESPAsyncUDP.h>
. However, AsyncUDP is natively included in arduino-esp32 since 2018 and can be included in Arduino ESP32 projects with#include <AsyncUDP.h>
only. Currently, this library is not compatible with arduino-esp32 out-of-the-box or am I missing anything?The text was updated successfully, but these errors were encountered: