Trait lpc55_hal::prelude::_embedded_hal_digital_InputPin[][src]

pub trait _embedded_hal_digital_InputPin {
    fn is_high(&self) -> bool;
fn is_low(&self) -> bool; }
👎 Deprecated since 0.2.2:

Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.

Expand description

Single digital input pin

This trait is available if embedded-hal is built with the "unproven" feature.

This version of the trait is now deprecated. Please use the new InputPin trait in digital::v2::InputPin.

Required methods

👎 Deprecated since 0.2.2:

Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.

Is the input pin high?

👎 Deprecated since 0.2.2:

Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.

Is the input pin low?

Implementations on Foreign Types

Implementation of v1::InputPin trait for v2::InputPin fallible pins where errors will panic.

👎 Deprecated since 0.2.2:

Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.

👎 Deprecated since 0.2.2:

Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.

Implementors