Files
physical/src/lib.rs
Zachary Sunforge 3f79ef86d8 pid (#12)
Added pid control

Co-authored-by: Zachary Sunforge <zachary.sunforge@bfpower.io>
Reviewed-on: #12
2024-06-07 23:41:54 +00:00

9 lines
105 B
Rust

#![no_std]
pub mod transducer;
pub mod control;
pub mod cell;
mod error;
pub use error::CriticalError;