Description
Pauses the program for the amount of time (in microseconds) specified by the parameter. There are a thousand microseconds in a millisecond and a million microseconds in a second.
Currently, the largest value that will produce an accurate delay is 16383; larger values can produce an extremely short delay. This could change in future Arduino releases. For delays longer than a few thousand microseconds, you should use delay()
instead.
Syntax
delayMicroseconds(us)
Parameters
us
: the number of microseconds to pause. Allowed data types: unsigned int
.
Returns
Nothing