pub trait HumidityClient {
    // Required method
    fn callback(&self, value: usize);
}
Expand description

Client for receiving humidity readings.

Required Methods§

source

fn callback(&self, value: usize)

Called when a humidity reading has completed.

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

Implementors§