├── Documentation.md ├── Documentation.pdf ├── HookupGuide.pdf ├── LICENSE.txt ├── README.md ├── examples ├── Example1_BasicStepper │ └── Example1_BasicStepper.ino ├── Example2_AbsoluteMoves │ └── Example2_AbsoluteMoves.ino ├── Example3_UsingUnitsOfRotationInsteadOfSteps │ └── Example3_UsingUnitsOfRotationInsteadOfSteps.ino ├── Example4_UsingUnitsOfMillimetersInsteadOfSteps │ └── Example4_UsingUnitsOfMillimetersInsteadOfSteps.ino ├── Example5_HomingWithALimitSwitch │ └── Example5_HomingWithALimitSwitch.ino ├── Example6_MovingTwoMotorsAtOnce │ └── Example6_MovingTwoMotorsAtOnce.ino ├── Example7_MovingWhileDoingOtherThingsToo │ └── Example7_MovingWhileDoingOtherThingsToo.ino ├── Example8_HowFastCanAStepperRotate │ └── Example8_HowFastCanAStepperRotate.ino └── Example9_CNC_V3_Shield │ └── Example9_CNC_V3_Shield.ino ├── library.properties └── src ├── SpeedyStepper.cpp └── SpeedyStepper.h /Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/Documentation.md -------------------------------------------------------------------------------- /Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/Documentation.pdf -------------------------------------------------------------------------------- /HookupGuide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/HookupGuide.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/README.md -------------------------------------------------------------------------------- /examples/Example1_BasicStepper/Example1_BasicStepper.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example1_BasicStepper/Example1_BasicStepper.ino -------------------------------------------------------------------------------- /examples/Example2_AbsoluteMoves/Example2_AbsoluteMoves.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example2_AbsoluteMoves/Example2_AbsoluteMoves.ino -------------------------------------------------------------------------------- /examples/Example3_UsingUnitsOfRotationInsteadOfSteps/Example3_UsingUnitsOfRotationInsteadOfSteps.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example3_UsingUnitsOfRotationInsteadOfSteps/Example3_UsingUnitsOfRotationInsteadOfSteps.ino -------------------------------------------------------------------------------- /examples/Example4_UsingUnitsOfMillimetersInsteadOfSteps/Example4_UsingUnitsOfMillimetersInsteadOfSteps.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example4_UsingUnitsOfMillimetersInsteadOfSteps/Example4_UsingUnitsOfMillimetersInsteadOfSteps.ino -------------------------------------------------------------------------------- /examples/Example5_HomingWithALimitSwitch/Example5_HomingWithALimitSwitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example5_HomingWithALimitSwitch/Example5_HomingWithALimitSwitch.ino -------------------------------------------------------------------------------- /examples/Example6_MovingTwoMotorsAtOnce/Example6_MovingTwoMotorsAtOnce.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example6_MovingTwoMotorsAtOnce/Example6_MovingTwoMotorsAtOnce.ino -------------------------------------------------------------------------------- /examples/Example7_MovingWhileDoingOtherThingsToo/Example7_MovingWhileDoingOtherThingsToo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example7_MovingWhileDoingOtherThingsToo/Example7_MovingWhileDoingOtherThingsToo.ino -------------------------------------------------------------------------------- /examples/Example8_HowFastCanAStepperRotate/Example8_HowFastCanAStepperRotate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example8_HowFastCanAStepperRotate/Example8_HowFastCanAStepperRotate.ino -------------------------------------------------------------------------------- /examples/Example9_CNC_V3_Shield/Example9_CNC_V3_Shield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/examples/Example9_CNC_V3_Shield/Example9_CNC_V3_Shield.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/library.properties -------------------------------------------------------------------------------- /src/SpeedyStepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/src/SpeedyStepper.cpp -------------------------------------------------------------------------------- /src/SpeedyStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stan-Reifel/SpeedyStepper/HEAD/src/SpeedyStepper.h --------------------------------------------------------------------------------