syact 0.12.1-alpha

A library to control motors (mainly stepper motors) and components, read data from sensors and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::data::StepperConst;

#[test]
#[ignore = "Manual information display"]
fn basic_plot() {
    let consts = StepperConst::GEN;

    let u = 12.0;

    println!("Stepper-Data");
    println!("- Velocity-Max: {}", consts.omega_max(u));
}