Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 85f9435

Browse files
authored
Update for PIO missing libraries
Use forked and updated libraries - [ESPAsyncTCP](https://github.com/khoih-prog/ESPAsyncTCP) - [ESPAsyncWebServer](https://github.com/khoih-prog/ESPAsyncWebServer) - [ESPAsyncDNSServer](https://github.com/khoih-prog/ESPAsyncDNSServer) to avoid PIO compile error
1 parent e925a1d commit 85f9435

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

library.json

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,18 @@
2525
"dependencies":
2626
[
2727
{
28-
"owner": "me-no-dev",
2928
"name": "AsyncTCP",
30-
"version": ">=1.1.1",
31-
"platforms": ["espressif32"]
29+
"version": "https://github.com/me-no-dev/AsyncTCP",
30+
"platforms": [ "espressif32"]
3231
},
3332
{
34-
"owner": "me-no-dev",
3533
"name": "ESPAsyncTCP",
36-
"version": ">=1.2.2",
37-
"platforms": ["espressif8266"]
34+
"version": "https://github.com/khoih-prog/ESPAsyncTCP",
35+
"platforms": [ "espressif8266"]
3836
},
3937
{
40-
"owner": "me-no-dev",
4138
"name": "ESP Async WebServer",
42-
"version": ">=1.2.3",
39+
"version": "https://github.com/khoih-prog/ESPAsyncWebServer",
4340
"platforms": ["espressif8266", "espressif32"]
4441
},
4542
{
@@ -49,9 +46,8 @@
4946
"platforms": ["espressif8266"]
5047
},
5148
{
52-
"owner": "devyte",
5349
"name": "ESPAsyncDNSServer",
54-
"version": "^1.0.0",
50+
"version": "https://github.com/khoih-prog/ESPAsyncDNSServer",
5551
"platforms": ["espressif8266", "espressif32"]
5652
},
5753
{

platformio/platformio.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ lib_deps =
4848
; ESP_DoubleResetDetector@>=1.3.2
4949
; ESP_MultiResetDetector@>=1.3.2
5050
; ESPAsyncDNSServer@>=1.0.0
51+
; https://github.com/khoih-prog/ESPAsyncDNSServer
5152
; LittleFS_esp32@>=1.0.6
5253
; PlatformIO 5.x
5354
; me-no-dev/ESP Async WebServer@>=1.2.3
@@ -57,7 +58,8 @@ lib_deps =
5758
me-no-dev/AsyncTCP@>=1.1.1
5859
khoih-prog/ESP_DoubleResetDetector@>=1.3.2
5960
khoih-prog/ESP_MultiResetDetector@>=1.3.2
60-
devyte/ESPAsyncDNSServer@>=1.0.0
61+
; devyte/ESPAsyncDNSServer@>=1.0.0
62+
https://github.com/khoih-prog/ESPAsyncDNSServer
6163
; lorol/LittleFS_esp32@>=1.0.6
6264

6365
; ============================================================

0 commit comments

Comments
 (0)