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

Single digital input pin

Required methods

Is the input pin high?

Is the input pin low?

Implementations on Foreign Types

Implementors