embedded_hal::digital

Trait InputPin

Source
pub trait InputPin: ErrorType {
    // Required methods
    fn is_high(&mut self) -> Result<bool, Self::Error>;
    fn is_low(&mut self) -> Result<bool, Self::Error>;
}
Expand description

Single digital input pin.

Required Methods§

Source

fn is_high(&mut self) -> Result<bool, Self::Error>

Is the input pin high?

Source

fn is_low(&mut self) -> Result<bool, Self::Error>

Is the input pin low?

Implementations on Foreign Types§

Source§

impl<T: InputPin + ?Sized> InputPin for &mut T

Source§

fn is_high(&mut self) -> Result<bool, Self::Error>

Source§

fn is_low(&mut self) -> Result<bool, Self::Error>

Implementors§

impl InputPin for DynPin

impl<I> InputPin for Pin<I, ReadableOutput>
where I: PinId,

impl<I, C> InputPin for Pin<I, Input<C>>
where I: PinId, C: InputConfig,

impl<I, C> InputPin for Pin<I, Interrupt<C>>
where I: PinId, C: InterruptConfig,

impl<P, Id, F> InputPin for ExtInt<P, Id, F>
where Self: ErrorType, P: EicPin, Id: ChId,