From d214f6894e9eb3ae087b0a40108b836cdd2e321f Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Wed, 30 Nov 2022 15:22:57 -0500 Subject: [PATCH] Add AsyncUDP_ESP32_W5500 library (#2163) ### 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 W5500 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 4a285c14..e355f321 100644 --- a/repositories.txt +++ b/repositories.txt @@ -5381,3 +5381,4 @@ https://github.com/khoih-prog/WebServer_ESP32_W5500 https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500 https://github.com/ESDeveloperBR/TFT_eSPI_ES32Lab https://github.com/bjoernboeckle/L293D +https://github.com/khoih-prog/AsyncUDP_ESP32_W5500