[][src]Struct debounced_pin::DebouncedInputPin

pub struct DebouncedInputPin<T: InputPin, A> {
    pub pin: T,
    // some fields omitted
}

A debounced input pin.

Implements approach 1 from here (archived 2018-09-03).

Requires update() to be called every ~1ms.

Fields

pin: T

The wrapped pin.

Methods

impl<T: InputPin, A> DebouncedInputPin<T, A>[src]

pub fn new(pin: T, _activeness: A) -> Self[src]

Initializes a new debounced input pin.

impl<T: InputPin> DebouncedInputPin<T, ActiveHigh>[src]

pub fn update(
    &mut self
) -> Result<(), <DebouncedInputPin<T, ActiveHigh> as InputPin>::Error>
[src]

Updates the debounce logic.

Needs to be called every ~1ms.

impl<T: InputPin> DebouncedInputPin<T, ActiveLow>[src]

pub fn update(
    &mut self
) -> Result<(), <DebouncedInputPin<T, ActiveLow> as InputPin>::Error>
[src]

Updates the debounce logic.

Needs to be called every ~1ms.

Trait Implementations

impl<T: InputPin, A> InputPin for DebouncedInputPin<T, A>[src]

type Error = T::Error

Error type

Auto Trait Implementations

impl<T, A> Send for DebouncedInputPin<T, A> where
    A: Send,
    T: Send

impl<T, A> Sync for DebouncedInputPin<T, A> where
    A: Sync,
    T: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

type Error = ()

Error type