evian-control 0.0.1-rc.1

Controls theory primitives in evian.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Control theory primitives.
//!
//! This module provides basic building blocks and implementations for controlling
//! systems. These "systems" could be drivetrains, an arm or lift, or any other
//! mechanism that requires precise motion control.

#![no_std]

pub mod loops;

mod tolerances;
pub use tolerances::Tolerances;