[][src]Trait trellis_m4::prelude::_atsamd_hal_embedded_hal_digital_v2_OutputPin

pub trait _atsamd_hal_embedded_hal_digital_v2_OutputPin {
    type Error;
    pub fn set_low(&mut self) -> Result<(), Self::Error>;
pub fn set_high(&mut self) -> Result<(), Self::Error>; }

Single digital push-pull output pin

Associated Types

type Error[src]

Error type

Loading content...

Required methods

pub fn set_low(&mut self) -> Result<(), Self::Error>[src]

Drives the pin low

NOTE the actual electrical state of the pin may not actually be low, e.g. due to external electrical sources

pub fn set_high(&mut self) -> Result<(), Self::Error>[src]

Drives the pin high

NOTE the actual electrical state of the pin may not actually be high, e.g. due to external electrical sources

Loading content...

Implementors

impl OutputPin for DynPin[src]

type Error = Error

impl<I, C> OutputPin for trellis_m4::gpio::v2::Pin<I, Output<C>> where
    C: OutputConfig,
    I: PinId
[src]

type Error = Infallible

impl<I, M> OutputPin for trellis_m4::gpio::Pin<I, Output<M>> where
    M: OutputConfig,
    I: PinId
[src]

type Error = ()

impl<T> OutputPin for T where
    T: OutputPin
[src]

Implementation of fallible v2::OutputPin for v1::OutputPin traits

type Error = ()

Loading content...