-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
library.json
51 lines (51 loc) · 1.18 KB
/
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
49
50
51
{
"name": "Timeout",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/tfeldmann/Arduino-Timeout"
},
"description": "Minimal, production-ready timeout library for Arduino.",
"keywords": "Timing",
"authors": {
"name": "Thomas Feldmann",
"email": "mail@tfeldmann.de",
"url": "https://tfeldmann.de",
"maintainer": true
},
"license": "MIT",
"frameworks": "arduino",
"platforms": "*",
"examples": [
{
"name": "Heartbeat",
"base": "examples/heartbeat",
"files": [
"heartbeat.ino"
]
},
{
"name": "Periodic Timer",
"base": "examples/periodic",
"files": [
"periodic.ino"
]
},
{
"name": "Timer",
"base": "examples/timeout",
"files": [
"timeout.ino"
]
}
],
"export": {
"exclude": [
"keywords.txt",
"*.properties",
"platformio.ini",
".github",
".editorconfig"
]
}
}