Command |
WAIT |
|
|
Description |
Wait for a period of milliseconds before processing menu commands.
Wait timer accuracy of 1ms ±200ns - v42.00.
Interrupts and key presses still occur during the wait period and can be processed.
WAIT() can be used with INTs, VARs or PTR - v36.00.
Restriction: If the WAIT() command is within a function called from a KEY() command then further key presses will be ignored. Each touch key press function must be processed to completion before another can be processed. Please refer to the project example 'keyboard' for the technique to process keys. |
|
|
Syntax/Parameters |
WAIT(Time); |
|
|
Example |
WAIT(5000);
WAIT(TimeV1); |
|
|
|