timer.start

From Inspired-Lua Wiki
Revision as of 19:36, 7 January 2012 by Adriweb (talk | contribs)
Jump to navigation Jump to search

timer.start is a function that is part of the timer functions.

Starts the timer with the given period in seconds.
If the timer is already running when this routine is called, the timer is reset to the new period.

This function fires the on.timer() event.


This has been introduced in TI-Nspire OS 3.0 (Changes).


Syntax

timer.start(period)

Parameter Type Description
period
number the time period in seconds for the timer to start. Must be > 0.01

Example

variable = 0

function on.timer()
   timer.stop()
   variable = variable + 1
   platform.window:invalidate()
end

function on.paint(gc)
   timer.start(0.5)
   gc:drawString(variable,0,0,"top")

end

See also