pamoja for TypeScript - v0.2.0
    Preparing search index...

    Interface Delay

    What paces a driver that has to wait between pin changes, such as a stepper between steps. SleepDelay really waits; DelayLog counts every wait and waits for none, for a program run with nothing plugged in.

    interface Delay {
        delayMicros(micros: number): void | Promise<void>;
    }

    Implemented by

    Index
    • Waits, or counts the wait.

      Parameters

      • micros: number

        How long, in microseconds.

      Returns void | Promise<void>