-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathlibrary.json
More file actions
48 lines (48 loc) · 1.07 KB
/
library.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "StepperDriver",
"version": "1.5.0",
"description": "Control steppers via a driver board providing STEP+DIR like the ones from Pololu. Microstepping is supported. Acceleration is supported. Supported drivers are A4988, DRV8824, DRV8825, DRV8834, DRV8880, TMC2100.",
"repository": {
"type": "git",
"url": "https://github.com/laurb9/StepperDriver"
},
"keywords": [
"stepper",
"driver",
"A4988",
"DRV8824",
"DRV8825",
"DRV8880",
"TMC2100"
],
"authors": [
{
"name": "Laurentiu Badea",
"url": "https://github.com/laurb9",
"maintainer": true
}
],
"homepage": "https://github.com/laurb9/StepperDriver",
"license": "MIT",
"export": {
"exclude": [
".*"
]
},
"frameworks": ["arduino"],
"platforms": "*",
"examples": [
{
"name": "UnitTest",
"base": "examples/UnitTest",
"files": ["UnitTest.ino"]
},
{
"name": "SpeedProfile",
"base": "examples/SpeedProfile",
"files": ["SpeedProfile.ino"]
}
],
"includeDir": "src",
"srcDir": "src"
}