forked from khoih-prog/AsyncHTTPRequest_Generic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
75 lines (75 loc) · 2.11 KB
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name":"AsyncHTTPRequest_Generic",
"version": "1.3.0",
"description":"Simple Async HTTP Request library, supporting GET, POST, PUT, PATCH, DELETE and HEAD, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, AsyncTCP_STM32, etc.. for ESP32 (including ESP32-S2), WT32_ETH01 (ESP32 + LAN8720), ESP8266 and currently STM32 with LAN8720 or built-in LAN8742A Ethernet.",
"keywords":"communication, async, tcp, http, ESP8266, ESP32, ESP32-S2, wt32-eth01, ESPAsyncTCP, AsyncTCP, stm32, ethernet, wifi, lan8742a, lan8720, f407ve, nucleo, nucleo-144, stm32f7, stm32f4",
"authors": [
{
"name": "Bob Lemaire",
"url": "https://github.com/boblemaire"
},
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"email": "[email protected]",
"maintainer": true
}
],
"repository":
{
"type": "git",
"url": "https://github.com/khoih-prog/AsyncHTTPRequest_Generic"
},
"license": "MIT",
"frameworks": "arduino",
"dependencies":
[
{
"owner": "me-no-dev",
"name": "AsyncTCP",
"version": ">=1.1.1",
"platforms": ["espressif32"]
},
{
"owner": "me-no-dev",
"name": "ESPAsyncTCP",
"version": ">=1.2.2",
"platforms": "espressif8266"
},
{
"owner": "khoih.prog",
"name": "ESPAsync_WiFiManager",
"version": ">=1.9.1",
"platforms": ["espressif8266", "espressif32"]
},
{
"owner": "stm32duino",
"name": "STM32duino LwIP",
"version": ">=2.1.2",
"platforms": "ststm32"
},
{
"owner": "stm32duino",
"name": "STM32Ethernet",
"version": ">=1.2.0",
"platforms": "ststm32"
},
{
"owner": "lorol",
"name": "LittleFS_esp32",
"version": ">=1.0.6",
"platforms": ["espressif32"]
},
{
"owner": "khoih.prog",
"name": "WebServer_WT32_ETH01",
"version": ">=1.1.0",
"platforms": ["espressif32"]
},
{
"name": "STM32AsyncTCP",
"version": "https://github.com/khoih-prog/STM32AsyncTCP"
}
],
"platforms": ["espressif8266", "espressif32", "ststm32"]
}