-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
63 lines (63 loc) · 1.53 KB
/
library.json
File metadata and controls
63 lines (63 loc) · 1.53 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
60
61
62
63
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "compkit",
"version": "1.2.0",
"description": "A collection of libraries for competitive robotics developed by and for ROBOTIEEE teams.",
"keywords": "sensors, input, data, processing, analysis, arduino, library, filter, smooth, competitive",
"repository": {
"type": "git",
"url": "https://github.com/robotieee/compkit"
},
"authors": [
{
"name": "ROBOTIEEE",
"url": "https://github.com/robotieee",
"maintainer": true
},
{
"name": "Alexandre Hiroyuki",
"email": "alex.hiroyuki@outlook.com",
"url": "https://github.com/AlexandreHiroyuki",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://github.com/robotieee/compkit",
"frameworks": "arduino",
"platforms": "*",
"headers": [
"compkit.h",
"motor.h",
"motor_controller.h",
"color_sensor.h"
],
"examples": [
{
"name": "Color Sensor with Serial Example",
"base": "examples/color_sensor_with_serial",
"files": [
"color_sensor_with_serial.ino"
]
},
{
"name": "Basic Color Sensor Example",
"base": "examples/basic_color_sensor",
"files": [
"basic_color_sensor.ino"
]
}
],
"export": {
"exclude": [
"test/",
".github",
".gitignore",
".vscode",
"docs/icon.png",
".clang-format",
".clang-tidy",
"scripts/"
]
},
"srcDir": "src"
}