-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
47 lines (47 loc) · 930 Bytes
/
library.json
File metadata and controls
47 lines (47 loc) · 930 Bytes
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
{
"name": "JSON",
"version": "2.0.1",
"keywords": "JSON, Arduino, AVR, GSM, parsing, zero-copy",
"description": "Ultra-low-RAM zero-copy JSON parser for AVR microcontrollers. 7 bytes per instance, no heap allocation, PROGMEM key support.",
"authors":
{
"name": "Mehmet Gunce Akkoyun",
"email": "akkoyun@me.com",
"url": "https://github.com/akkoyun"
},
"license": "MIT",
"frameworks": "arduino",
"headers": "JSON.h",
"platforms":
[
"atmelavr",
"atmelmegaavr"
],
"repository":
{
"type": "git",
"url": "https://github.com/akkoyun/JSON.git"
},
"examples": [
{
"name": "Basic",
"base": "examples/Basic",
"files": ["Basic.ino"]
},
{
"name": "Handle",
"base": "examples/Handle",
"files": ["Handle.ino"]
},
{
"name": "Array",
"base": "examples/Array",
"files": ["Array.ino"]
},
{
"name": "Server",
"base": "examples/Server",
"files": ["Server.ino"]
}
]
}