kernel::hil::sensors

Trait AmbientLightClient

Source
pub trait AmbientLightClient {
    // Required method
    fn callback(&self, lux: usize);
}
Expand description

Client for receiving light intensity readings.

Required Methods§

Source

fn callback(&self, lux: usize)

Called when an ambient light reading has completed.

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

Implementors§