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
10
11
12
13
14
15
//! Motor module for stepper-motion.
//!
//! Provides the stepper motor driver with type-state safety and position tracking.

mod builder;
mod driver;
mod position;
pub mod state;
mod system;

pub use builder::StepperMotorBuilder;
pub use driver::StepperMotor;
pub use position::Position;
pub use state::{Fault, Homing, Idle, MotorState, Moving, StateName};
pub use system::MotorSystem;