Struct embedded_sensors::bh1750::Bh1750[][src]

pub struct Bh1750<I2C> { /* fields omitted */ }

Implementations

impl<I2C, I2cError> Bh1750<I2C> where
    I2C: Read<Error = I2cError> + Write<Error = I2cError>, 
[src]

pub fn new(addr: u8, i2c: &mut I2C) -> Result<Self, Error<I2cError>>[src]

pub fn with_configuration(
    addr: u8,
    i2c: &mut I2C,
    cfg: Config
) -> Result<Self, Error<I2cError>>
[src]

pub fn measurement_mode(&self) -> MeasurementMode[src]

pub fn set_measurement_mode(
    &mut self,
    i2c: &mut I2C,
    measurement_mode: MeasurementMode
) -> Result<(), Error<I2cError>>
[src]

pub fn measurement_time(&self) -> MeasurementMode[src]

pub fn set_measurement_time(
    &mut self,
    i2c: &mut I2C,
    measurement_time: u8
) -> Result<(), Error<I2cError>>
[src]

pub fn light_level(&self) -> f32[src]

pub fn read(&mut self, i2c: &mut I2C) -> Result<(), Error<I2cError>>[src]

Auto Trait Implementations

impl<I2C> Send for Bh1750<I2C> where
    I2C: Send

impl<I2C> Sync for Bh1750<I2C> where
    I2C: Sync

impl<I2C> Unpin for Bh1750<I2C> where
    I2C: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,