summaryrefslogtreecommitdiff
path: root/Arduino/libraries/AccelStepper/README.md
diff options
context:
space:
mode:
authorCarlos Maiolino <[email protected]>2025-07-10 22:55:07 +0200
committerCarlos Maiolino <[email protected]>2025-07-10 22:56:55 +0200
commitd98f46ce647846b0aa30b2e16a30fd4e152a1bf5 (patch)
tree267474fcc77cf20b428f6f4c7f768ca09f4cfe0e /Arduino/libraries/AccelStepper/README.md
parent869e68986aa8f69af6e7842260a68d1e5c6f796f (diff)
Add new code
Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'Arduino/libraries/AccelStepper/README.md')
-rw-r--r--Arduino/libraries/AccelStepper/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/Arduino/libraries/AccelStepper/README.md b/Arduino/libraries/AccelStepper/README.md
new file mode 100644
index 0000000..3aadd53
--- /dev/null
+++ b/Arduino/libraries/AccelStepper/README.md
@@ -0,0 +1,22 @@
+This fork follows the [upstream version](http://www.airspayce.com/mikem/arduino/AccelStepper/). Files are slightly reorganized to follow Arduino library conventions to allow for inclusion into the Arduino IDE library manager.
+
+Please direct questions and discussion to http://groups.google.com/group/accelstepper
+
+---
+
+This is the Arduino AccelStepper library. It provides an object-oriented interface for 2, 3 or 4 pin stepper motors and motor drivers.
+
+The standard Arduino IDE includes the Stepper library (http://arduino.cc/en/Reference/Stepper) for stepper motors. It is perfectly adequate for simple, single motor applications.
+
+AccelStepper significantly improves on the standard Arduino Stepper library in several ways:
+
+ - Supports acceleration and deceleration
+ - Supports multiple simultaneous steppers, with independent concurrent stepping on each stepper
+ - API functions never delay() or block
+ - Supports 2, 3 and 4 wire steppers, plus 3 and 4 wire half steppers.
+ - Supports alternate stepping functions to enable support of AFMotor (https://github.com/adafruit/Adafruit-Motor-Shield-library)
+ - Supports stepper drivers such as the Sparkfun EasyDriver (based on 3967 driver chip)
+ - Very slow speeds are supported
+ - Extensive API
+ - Subclass support
+