- Modified some thermocouple functions to use f64 instead of f32

- Added thermistor
- Added resistive divider
This commit is contained in:
Zachary Sunforge
2024-07-07 18:57:59 -07:00
parent 403df6f5f4
commit 96ae59087e
7 changed files with 87 additions and 15 deletions

View File

@ -5,5 +5,7 @@ pub mod control;
pub mod error;
pub mod adc;
#[cfg(feature = "resistive-divider")]
pub mod resistive_divider;
pub use error::CriticalError;