Struct capsules::humidity::HumiditySensor [] [src]

pub struct HumiditySensor<'a> {
    driver: &'a HumidityDriver,
    apps: Grant<App>,
    busy: Cell<bool>,
}

Fields

Methods

impl<'a> HumiditySensor<'a>
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<'a> HumidityClient for HumiditySensor<'a>
[src]

[src]

Called when a humidity reading has completed. Read more

impl<'a> Driver for HumiditySensor<'a>
[src]

[src]

subscribe lets an application pass a callback to the driver to be called later. This returns ENOSUPPORT if not used. Read more

[src]

command instructs a driver to perform some action synchronously. This returns ENOSUPPORT if not used. Read more

[src]

allow lets an application give the driver access to a buffer in the application's memory. This returns ENOSUPPORT if not used. Read more