This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibrary.json
117 lines (117 loc) · 3.36 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
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ContinuousStepper_Generic",
"version": "1.0.0",
"keywords": "timing, device, control, timer, pwm, pwm-slice, hardware-based-pwm, high-frequency-pwm, hardware-pwm, mission-critical, accuracy, non-blocking, mbed, mbed-nano, mbed-rp2040, rpi-pico, rp2040, nano-rp2040-connect, duty-cycle, hardware",
"description": "This library enables you to use Hardware-based PWM channels on Generic boards to use PWM to control continuous Stepper Motor. The most important feature is they're purely hardware-based PWM channels, supporting very high PWM frequencies. Therefore, their executions are not blocked by bad-behaving functions or tasks. This important feature is absolutely necessary for mission-critical tasks. These hardware-based PWMs, still work even if other software functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software-based PWM using ISR, millis() or micros(). That's necessary if you need to control devices requiring high precision",
"authors":
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"maintainer": true
},
"repository":
{
"type": "git",
"url": "https://github.com/khoih-prog/ContinuousStepper_Generic"
},
"homepage": "https://github.com/khoih-prog/ContinuousStepper_Generic",
"export": {
"exclude": [
"linux",
"extras",
"tests"
]
},
"dependencies":
[
{
"owner": "khoih-prog",
"name": "RP2040_PWM",
"version": "^1.4.1",
"platforms": ["raspberrypi"]
},
{
"owner": "khoih-prog",
"name": "AVR_PWM",
"version": "^1.0.1",
"platforms": ["avr"]
},
{
"owner": "khoih-prog",
"name": "megaAVR_PWM",
"version": "^1.0.1",
"platforms": ["megaavr"]
},
{
"owner": "khoih-prog",
"name": "ESP32_FastPWM",
"version": "^1.0.1",
"platforms": ["espressif32"]
},
{
"owner": "khoih-prog",
"name": "SAMD_PWM",
"version": "^1.0.1",
"platforms": ["samd"]
},
{
"owner": "khoih-prog",
"name": "SAMDUE_PWM",
"version": "^1.0.1",
"platforms": ["atmelsam"]
},
{
"owner": "khoih-prog",
"name": "nRF52_PWM",
"version": "^1.0.1",
"platforms": ["nordicnrf52", "nrf52"]
},
{
"owner": "khoih-prog",
"name": "Teensy_PWM",
"version": "^1.1.1",
"platforms": ["avr"]
},
{
"owner": "khoih-prog",
"name": "ATtiny_PWM",
"version": "^1.0.1",
"platforms": ["megaavr"]
},
{
"owner": "khoih-prog",
"name": "Dx_PWM",
"version": "^1.1.1",
"platforms": ["megaavr"]
},
{
"owner": "khoih-prog",
"name": "Portenta_H7_PWM",
"version": "^2.0.3",
"platforms": ["mbed_portenta"]
},
{
"owner": "khoih-prog",
"name": "MBED_RP2040_PWM",
"version": "^1.0.1",
"platforms": ["mbed", "mbed_nano", "mbed_rp2040"]
},
{
"owner": "khoih-prog",
"name": "nRF52_MBED_PWM",
"version": "^1.0.3",
"platforms": ["mbed", "nrf52"]
},
{
"owner": "khoih-prog",
"name": "STM32_PWM",
"version": "^1.0.1",
"platforms": ["ststm32"]
}
],
"license": "MIT",
"frameworks": "*",
"platforms": "*",
"examples": "examples/*/*/*.ino",
"headers": ["ContinuousStepper_Generic.h"]
}