We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
A versatile Arduino library for converting stepper motor microsteps into precise linear distances, compatible with any stepper motor.
There was an error while loading.Please reload this page.
Convert stepper motor microsteps to linear distance with ease and precision. Available in the Arduino Library Manager.
Sketch
Include Library
Manage Libraries...
arduino-cli lib install MicrostepToLinear
git clone https://github.com/dcondrey/MicrostepToLinear.gitcd MicrostepToLineararduino-cli lib install.
Include the library and initialize the converter object.
#include "MicrostepToLinear.h"MicrostepToLinear converter(1.8, 16, 2.0);
Convert microsteps to linear distance:
float distance = converter.convert(3200);
MIT