-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibrary.json
More file actions
44 lines (44 loc) · 1.03 KB
/
library.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "ESPFileUpdater",
"version": "1.2.0",
"description": "A library for updating files on ESP devices from a remote HTTP source.",
"keywords": ["esp32", "esp8266", "file", "files", "download", "downloader", "update", "updater", "http", "ota", "spiffs", "littlefs"],
"repository": {
"type": "git",
"url": "https://github.com/trip5/ESPFileUpdater"
},
"authors": [
{
"name": "Trip5",
"url": "https://github.com/trip5"
}
],
"frameworks": ["arduino"],
"platforms": ["espressif32", "espressif8266"],
"license": "MIT",
"export": {
"include": [
"src/*.cpp",
"include/*.h",
"examples/*",
"library.properties"
]
},
"examples": [
{
"name": "BasicUpdate",
"base": "examples/BasicUpdate",
"files": ["BasicUpdate.ino"]
},
{
"name": "ErrorHandling",
"base": "examples/ErrorHandling",
"files": ["ErrorHandling.ino"]
},
{
"name": "ehRadio",
"base": "examples/ehRadio",
"files": ["ehRadio.cpp"]
}
]
}