pot-head 0.2.1

A no_std Rust library for processing raw potmeter inputs in embedded systems
Documentation
/// Noise filtering implementations
///
/// Filters smooth noisy ADC readings. All filtering happens in normalized f32 space.
mod ema;

#[cfg(feature = "moving-average")]
mod moving_avg;

pub use ema::EmaFilter;

#[cfg(feature = "moving-average")]
pub use moving_avg::MovingAvgFilter;

/// Noise filter configuration
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum NoiseFilter {
    /// No filtering applied
    None,

    /// Exponential moving average: output = alpha * input + (1 - alpha) * previous
    /// Lower alpha = more smoothing, higher = more responsive
    /// Requires: 0.0 < alpha <= 1.0
    ExponentialMovingAverage { alpha: f32 },

    /// Simple moving average over N samples
    /// Window size configured at filter creation
    /// Requires buffer of size window_size (RAM cost: window_size * 4 bytes)
    #[cfg(feature = "moving-average")]
    MovingAverage { window_size: usize },
}

impl NoiseFilter {
    /// Validate filter configuration at compile time
    pub const fn validate(&self) -> Result<(), &'static str> {
        match self {
            NoiseFilter::None => Ok(()),

            NoiseFilter::ExponentialMovingAverage { alpha } => {
                if *alpha <= 0.0 || *alpha > 1.0 {
                    return Err("EMA alpha must be in range (0.0, 1.0]");
                }
                Ok(())
            }

            #[cfg(feature = "moving-average")]
            NoiseFilter::MovingAverage { window_size } => {
                if *window_size == 0 {
                    return Err("MovingAverage window_size must be > 0");
                }
                if *window_size > 32 {
                    return Err("MovingAverage window_size must be <= 32");
                }
                Ok(())
            }
        }
    }
}