grandMA3 User Manual Publication
Timer(string, integer, integer[, string[, handle]])
Description
The Timer Lua function references the current programmer object.
Arguments
- Function:
This is the name of the function that is called multiple times using the timer. - Integer:
This is the wait time between the calls. The value is in seconds. - Integer:
This is the number of times the function is called. - Function | nil (optional):
This is an optional argument that is the name of a function that is called when the Timer function is finished. - Handle (optional):
This is an optional argument for a handle to an object that is passed to the called function.
Return
This function does not return anything.
Example
This example prints a greeting three times and then calls a clean up function:
Lua |
-- Function that will be called several times. |