From 56ab9ad7aa95d295975ea8abacf350371ceee30f Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Tue, 10 Jan 2023 16:29:38 -0500 Subject: [PATCH] Add AsyncUDP_ESP32_W6100 library (#2360) ### Initial Releases v2.0.0 1. Initial coding to port [AsyncUDP](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP) to ESP32 boards using `LwIP W6100 Ethernet` 2. Add more examples. 3. Add debugging features. 4. Bump up to v2.0.0 to sync with [AsyncUDP v2.0.0](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP). --- repositories.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/repositories.txt b/repositories.txt index ada0eb19..b05609bd 100644 --- a/repositories.txt +++ b/repositories.txt @@ -5512,3 +5512,4 @@ https://github.com/khoih-prog/WebServer_ESP32_W6100 https://github.com/khoih-prog/WebServer_ESP32_SC_W6100 https://github.com/khoih-prog/AsyncWebServer_ESP32_SC_W6100 https://github.com/khoih-prog/AsyncWebServer_ESP32_W6100 +https://github.com/khoih-prog/AsyncUDP_ESP32_W6100