ESPAsyncDNSServer
ESPAsyncDNSServer copied to clipboard
Make AsyncDNS arduino-esp32-compatible
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?
I don't use esp32, and I don't plan to in the near future. However, if you make a PR I'll take a look.
@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.