forked from Stan-Reifel/FlexyStepper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
106 lines (106 loc) · 2.97 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "iot-flexy-stepper",
"version": "1.2.1",
"description": "fork of FlexyStepper by S. Reifel ; Stepper motor control library for Arduino supporting in-motion changes.",
"keywords": "stepper,arduino,stm32",
"authors": [
{
"name": "Lorenzo Delana",
"email": "[email protected]",
"url": "https://github.com/SearchAThing-forks/FlexyStepper"
},
{
"name": "S. Reifel",
"url": "https://github.com/Stan-Reifel/FlexyStepper"
}
],
"license": "MIT",
"frameworks": [
"arduino"
],
"platforms": [
"ststm32"
],
"repository": {
"type": "git",
"url": "https://github.com/SearchAThing-forks/FlexyStepper.git"
},
"examples": [
{
"name": "example1",
"base": "examples/Example1_BasicStepper",
"files": [
"Example1_BasicStepper.ino"
]
},
{
"name": "example2",
"base": "examples/Example2_AbsoluteMoves",
"files": [
"Example2_AbsoluteMoves.ino"
]
},
{
"name": "example3",
"base": "examples/Example3_UsingUnitsOfRotationInsteadOfSteps",
"files": [
"Example3_UsingUnitsOfRotationInsteadOfSteps.ino"
]
},
{
"name": "example4",
"base": "examples/Example4_UsingUnitsOfMillimetersInsteadOfSteps",
"files": [
"Example4_UsingUnitsOfMillimetersInsteadOfSteps.ino"
]
},
{
"name": "example5",
"base": "examples/Example5_HomingWithALimitSwitch",
"files": [
"Example5_HomingWithALimitSwitch.ino"
]
},
{
"name": "example6",
"base": "examples/Example6_MovingTwoMotorsAtOnce",
"files": [
"Example6_MovingTwoMotorsAtOnce.ino"
]
},
{
"name": "example7",
"base": "examples/Example7_MovingWhileDoingOtherThingsToo",
"files": [
"Example7_MovingWhileDoingOtherThingsToo.ino"
]
},
{
"name": "example8",
"base": "examples/Example8_ChangingSpeedAndPositionInMotion",
"files": [
"Example8_ChangingSpeedAndPositionInMotion.ino"
]
},
{
"name": "example9",
"base": "examples/Example9_HowFastCanAStepperRotate",
"files": [
"Example9_HowFastCanAStepperRotate.ino"
]
},
{
"name": "example10",
"base": "examples/Example10_CNC_V3_Shield",
"files": [
"Example10_CNC_V3_Shield.ino"
]
}
],
"dependencies": {},
"export": {
"exclude": [
"src/debug-main.cpp"
]
}
}