1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! DRV8825 Driver
//!
//! Platform-agnostic driver library for the DRV8825 stepper motor driver.
//! This crate is a specialized facade for the [Stepper] library. Please
//! consider using Stepper directly, as it provides drivers for more stepper
//! motor drivers, as well as an interface to abstract over them.
//!
//! See [Stepper] for more documentation and usage examples.
//!
//! [Stepper]: https://crates.io/crates/stepper

#![no_std]
#![deny(missing_docs)]

pub use stepper::{drivers::drv8825::*, *};