-
Notifications
You must be signed in to change notification settings - Fork 13
/
library.json
75 lines (75 loc) · 2.23 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": "EmbUI",
"frameworks": "arduino",
"keywords": "embui, arduino, framework, esp8266, esp32",
"description": "Embeded Web UI framework for esp8266/esp32/esp32-c3/esp32-s2/esp32-s3 IoT prototyping",
"url": "https://github.com/DmytroKorniienko/EmbUI",
"authors": [
{
"name": "Dmytro Korniienko",
"url": "https://github.com/DmytroKorniienko",
"maintainer": true
},
{
"name": "Anton Zolotarev",
"url": "https://github.com/anton-zolotarev"
},
{
"name": "Emil Muratov",
"url": "https://github.com/vortigont",
"email": "gpm@hotplug.ru"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DmytroKorniienko/EmbUI.git"
},
"platforms": ["espressif8266", "espressif32"],
"version": "2.7.0",
"dependencies":
[
{"owner": "bblanchon",
"name": "ArduinoJson",
"version": "*"},
{"name": "AsyncWebServer-mod",
"version": "https://github.com/DmytroKorniienko/ESPAsyncWebServer/#ESPAsyncWebServerMod"},
{"owner": "marvinroger",
"name": "AsyncMqttClient",
"version": "*"},
{"owner": "arkhipenko",
"name": "TaskScheduler",
"version": "*"},
{"name": "ESP32SSDP",
"version": "*",
"platforms": "espressif32"},
{"name": "ESP32 Async UDP",
"version": "*",
"platforms": "espressif32"},
{"name": "ESPAsyncUDP",
"version": "https://github.com/DmytroKorniienko/ESPAsyncUDP",
"platforms": "espressif8266"},
{"owner": "charno",
"name": "FTPClientServer",
"version": "https://github.com/charno/FTPClientServer"}
],
"build": {
"flags": [
"-DEMBUI_VER=2.7.0"
],
"srcDir": "src",
"libCompatMode": "strict"
},
"examples": [
{
"name": "Generic UI sensors",
"base": "examples/02_sensors",
"files": [
"platformio.ini",
"src/main.cpp",
"src/interface.cpp",
"src/src.ino"
]
}
]
}