-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
59 lines (59 loc) · 1.62 KB
/
library.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "EasyLed",
"version": "1.1.0",
"keywords": ["led", "control", "blink", "easy"],
"description": "Arduino library for controlling standard LEDs in an easy way. EasyLed provides simple logical methods like led.on(), led.toggle(), led.flash(), led.isOff() and more. This library will help to write cleaner code that is easy to read and understand.",
"authors":
{
"name": "Leonel Lopes Parente",
"maintainer": true
},
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
"repository":
{
"type": "git",
"url": "https://github.com/lnlp/EasyLed.git"
},
"examples": [
{
"name": "led-basics",
"base": "examples/led-basics",
"files": ["led-basics.ino"]
},
{
"name": "led-advanced",
"base": "examples/led-advanced",
"files": ["led-advanced.ino"]
},
{
"name": "led-state",
"base": "examples/led-state",
"files": ["led-state.ino"]
},
{
"name": "led-activelevel-tester",
"base": "examples/led-activelevel-tester",
"files": ["led-activelevel-tester.ino"]
}
],
"export": {
"include":
[
"src/*",
"examples/*",
"LICENSE",
"README.md",
"library.properties",
"library.json",
"keywords.txt"
],
"exclude":
[
".gitignore",
".github/",
".git/"
]
}
}