Trait embedded_hal::delay::blocking::DelayMs[][src]

pub trait DelayMs<UXX> {
    type Error: Debug;
    fn delay_ms(&mut self, ms: UXX) -> Result<(), Self::Error>;
}
Expand description

Millisecond delay

UXX denotes the range type of the delay time. UXX can be u8, u16, etc. A single type can implement this trait for different types of UXX.

Associated Types

Enumeration of DelayMs errors

Required methods

Pauses execution for ms milliseconds

Implementors