Trait kernel::hil::sensors::HumidityClient [] [src]

pub trait HumidityClient {
    fn callback(&self, value: usize);
}

Client for receiving humidity readings.

Required Methods

Called when a humidity reading has completed.

  • value: the most recently read humidity in hundredths of percent.

Implementors