Crates.io | stepper |
lib.rs | stepper |
version | 0.6.0 |
source | src |
created_at | 2016-05-15 06:10:04.709992 |
updated_at | 2022-08-05 15:14:08.237229 |
description | Universal Stepper Motor Interface |
homepage | |
repository | https://github.com/braun-embedded/stepper |
max_upload_size | |
id | 5072 |
size | 134,995 |
Stepper aims to provide an interface that abstracts over stepper motor drivers and controllers, exposing high-level hardware features directly where available, or providing software fallbacks where hardware support is lacking.
Right now, Stepper supports the following drivers:
Support for more stepper drivers and controllers will be added in the future. Please consider helping out with this effort, if you need support for a driver or controller that is currently missing.
Please refer to the API Reference or one of the following guides to learn more:
Stepper is under active development. Its API is going to change, as more features are added and existing ones are improved. Support for drivers is very limited right now, and support for controllers is non-existent.
The library is usable, but far from mature. There are some known limitations that are documented on the issue tracker. If you find any additional problems, please open an issue on the GitHub repository.
Stepper is maintained by:
Hanno Braun (@hannobraun)
Jesse Braham (@jessebraham)
Stepper is a library written in Rust and designed for use in Rust projects. It will run on any platform supported by Rust, including microcontrollers.
Add Stepper to your Cargo.toml
like this:
[dependencies.stepper]
version = "0.5" # make sure this is the latest version
If you just need to use a specific stepper driver, you can also depend on the crate for that specific driver. For example:
[dependencies.drv8825]
version = "0.5" # make sure this is the latest version
Please refer to the API Reference for more information.
This project is open source software, licensed under the terms of the Zero Clause BSD License (0BSD, for short). This basically means you can do anything with the software, without any restrictions, but you can't hold the authors liable for problems.
See LICENSE.md for full details.