[−][src]Trait lpc55_hal::prelude::_embedded_hal_digital_OutputPin  
Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Single digital push-pull output pin
This version of the trait is now deprecated. Please use the new OutputPin trait in
digital::v2::OutputPin.
Required methods
fn set_low(&mut self)[−]
Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin low
NOTE the actual electrical state of the pin may not actually be low, e.g. due to external electrical sources
fn set_high(&mut self)[−]
Deprecated because the methods cannot return errors. Users should use the traits in digital::v2.
Drives the pin high
NOTE the actual electrical state of the pin may not actually be high, e.g. due to external electrical sources
Implementations on Foreign Types
impl<T, E> OutputPin for OldOutputPin<T> where
    E: Debug,
    T: OutputPin<Error = E>, [src][−]
E: Debug,
T: OutputPin<Error = E>,
Implementation of v1::OutputPin trait for fallible v2::OutputPin output pins
where errors will panic.