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

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

Client for receiving temperature readings.

Required Methods

Called when a temperature reading has completed.

  • value: the most recently read temperature in hundredths of degrees centigrate.

Implementors