Description
Pauses the program for the amount of time (in microseconds) specified as 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. 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 (unsigned int
)
Returns
Nothing