stepper-motion 0.1.1

Configuration-driven stepper motor motion control with embedded-hal 1.0 support
Documentation
1
2
3
4
5
6
7
8
9
//! Motion module for stepper-motion.
//!
//! Provides motion profile calculation and step execution.

mod executor;
mod profile;

pub use executor::MotionExecutor;
pub use profile::{Direction, MotionPhase, MotionProfile};