Trait embedded_hal::digital::OutputPin [] [src]

pub trait OutputPin {
    fn is_high(&self) -> bool;
fn is_low(&self) -> bool;
fn set_low(&mut self);
fn set_high(&mut self); }

Single digital output pin

Required Methods

Is the output pin high?

Is the output pin low?

Sets the pin low

Sets the pin high

Implementors