[][src]Struct bmp085_driver::Bmp085

pub struct Bmp085<I2C, TIMER: DelayUs<u16>> { /* fields omitted */ }

BMP085 driver

Methods

impl<I2C, TIMER, E> Bmp085<I2C, TIMER> where
    I2C: WriteRead<Error = E> + Write<Error = E>,
    TIMER: DelayUs<u16>, 
[src]

pub fn new(i2c: I2C, timer: TIMER, oss: Oversampling) -> Result<Self, E>
[src]

Create a new driver from a I2C peripheral with given oversampling settings.

pub fn read(&mut self) -> Result<PT, E>
[src]

Read temperature and pressure from sensor.

Auto Trait Implementations

impl<I2C, TIMER> Send for Bmp085<I2C, TIMER> where
    I2C: Send,
    TIMER: Send

impl<I2C, TIMER> Sync for Bmp085<I2C, TIMER> where
    I2C: Sync,
    TIMER: Sync

Blanket Implementations

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T
[src]

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

impl<T> Same for T

type Output = T

Should always be Self