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

pub trait AmbientLightClient {
    fn callback(&self, lux: usize);
}

Client for receiving light intensity readings.

Required Methods

Called when an ambient light reading has completed.

  • lux: the most recently read ambient light reading in lux (lx).

Implementors