-
Notifications
You must be signed in to change notification settings - Fork 15
/
library.json
48 lines (48 loc) · 924 Bytes
/
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
{
"name": "ESPLogger",
"version": "2.0.0",
"authors": {
"name": "Fabiano Riccardi",
"email": "[email protected]"
},
"description": "ESPLogger is an intuitive library to collect data on local storage and flush them to an external endpoint.",
"keywords": [
"data-collection",
"esp8266",
"esp32",
"data",
"logging",
"logger"
],
"repository": {
"type": "git",
"url": "https://github.com/fabianoriccardi/ESPLogger"
},
"licence": "LGPL-2.1-or-later",
"frameworks": [
"arduino"
],
"platforms": [
"espressif8266",
"espressif32"
],
"build": {
"libLDFMode": "deep"
},
"examples": [
{
"name": "Basic",
"base": "examples/Basic",
"files": [
"Basic.ino"
]
},
{
"name": "PartialFlush",
"base": "examples/PartialFlush",
"files": [
"PartialFlush.ino"
]
}
]
}