|
void delay(const long nMSec)
|
| Return Type |
The function returns no value. |
void |
| nMSec |
The amount of milliseconds to wait |
long |
- Program execution will wait for the specified number of clock units. Units are in 1-millisecond counts.
-
It is best to use the delay function to insert a programmed delay in a program because tasks that are waiting do not consume any CPU cycles.
- This makes the most number of CPU cycles available for other tasks.
-
This command is exactly the same as the wait1MSec() and sleep() commands
|
|
|
Code Sample |
|
// The program will wait for 1 second before continuing to the next line of code (1ms * 1000) delay(1000);
|
|
|
|