ToggleableOutputPin

Trait ToggleableOutputPin 

Source
pub trait ToggleableOutputPin {
    type Error;

    // Required method
    fn toggle(&mut self) -> Result<(), Self::Error>;
}
Expand description

Output pin that can be toggled

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

See toggleable to use a software implementation if both OutputPin and StatefulOutputPin are implemented. Otherwise, implement this using hardware mechanisms.

Required Associated Types§

Source

type Error

Error type

Required Methods§

Source

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

Toggle pin output.

Implementors§

Source§

impl<MODE> ToggleableOutputPin for ErasedPin<Output<MODE>>

Source§

impl<MODE, HL, const P: char, const N: u8> ToggleableOutputPin for Pin<Output<MODE>, HL, P, N>

Source§

impl<MODE, const P: char> ToggleableOutputPin for PartiallyErasedPin<Output<MODE>, P>

Source§

impl<P> ToggleableOutputPin for P
where P: Default,