forked from DmytroKorniienko/EmbUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
90 lines (90 loc) · 2.61 KB
/
library.json
File metadata and controls
90 lines (90 loc) · 2.61 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "EmbUI",
"frameworks": "arduino",
"keywords": "embui, arduino, framework, esp8266, esp32",
"description": "Embeded Web UI framework for esp8266/esp32 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.4.7",
"dependencies":
[
{"owner": "bblanchon",
"name": "ArduinoJson",
"version": "*"},
{"name": "AsyncWebServer-mod",
"version": "https://github.com/DmytroKorniienko/ESPAsyncWebServer"},
{"owner": "marvinroger",
"name": "AsyncMqttClient",
"version": "*"},
{"owner": "arkhipenko",
"name": "TaskScheduler",
"version": "*"},
{"name": "LITTLEFS",
"version": "https://github.com/lorol/LITTLEFS.git",
"platforms": ["espressif32"]},
{"name": "ESP32SSDP",
"version": "*",
"platforms": ["espressif32"]},
{"owner": "charno",
"name": "FTPClientServer",
"version": "https://github.com/charno/FTPClientServer"}
],
"build": {
"flags": [
"-DEMBUIVER=2.4.7",
"-DCONFIG_LITTLEFS_FOR_IDF_3_2"
],
"srcDir": "src"
},
"examples": [
{
"name": "Generic UI",
"base": "examples/01_ex_generic",
"files": [
"platformio.ini",
"src/globals.h",
"src/interface.cpp",
"src/interface.h",
"src/main.cpp",
"src/main.h",
"src/uistrings.h",
"src/src.ino"
]
},
{
"name": "Generic UI sensors",
"base": "examples/02_sensors",
"files": [
"platformio.ini",
"src/globals.h",
"src/interface.cpp",
"src/interface.h",
"src/main.cpp",
"src/main.h",
"src/uistrings.h",
"src/src.ino"
]
}
]
}