antaeus 0.3.10

A Versatile Framework for Vexide
Documentation
1
2
3
4
5
6
7
8
9
10
//! PID controllers
//!
//! This module provides PID controller implementations used for motion feedback
//! control.
//!
//! - `core_pid`: generic PID controller logic and supporting types.
//! - `drive_pid`: PID controller tuned/configured for drive/locomotion use.

pub mod core_pid;
pub mod drive_pid;