Omnimaga

Calculator Community => TI Calculators => Lua => Topic started by: cyanophycean314 on December 11, 2011, 01:43:46 pm

Title: Stopwatch - Lua Timer Accuracy
Post by: cyanophycean314 on December 11, 2011, 01:43:46 pm
Recently, I have been trying to build a stopwatch for Nspire with Lua. However, when run, it obviously slows down. My program used a timer with 0.1 seconds, but I changed it so it had a timer with 0.09 seconds. That was still a bit slow, but 0.08 seconds is a bit too fast. The timer can't do anything with less than 0.01 as experimentation and the Inspired Lua wiki have shown.

Is there any way the timer could be fixed so it is more accurate? Or is there another way to do this?

P.S. My program uses tenths of a second, not hundredths or thousandths.
Title: Re: Stopwatch - Lua Timer Accuracy
Post by: Adriweb on December 11, 2011, 01:57:32 pm
Not sure...

TI made a Lua script for a stopwatch, you can download it here : http://tiplanet.org/forum/archives_voir.php?id=3613&play= (http://tiplanet.org/forum/archives_voir.php?id=3613&play=) (click on the "Télécharger" button)
Title: Re: Stopwatch - Lua Timer Accuracy
Post by: Nick on December 11, 2011, 02:03:47 pm
you could use the timer.getMilliSecCounter instead, because the timer isn't correct at all..
if you store the start millisec and increment by the current millisec, you get the millisec that are passed since the start of the program.
when you divide by 1000, you get the nr of seconds (and take the math.floor() of it)
Title: Re: Stopwatch - Lua Timer Accuracy
Post by: cyanophycean314 on December 11, 2011, 02:16:29 pm
Thanks to both of you! I'll try the getMilliSecCounter.
Title: Re: Stopwatch - Lua Timer Accuracy
Post by: Adriweb on December 11, 2011, 03:53:15 pm
you could use the timer.getMilliSecCounter instead, because the timer isn't correct at all..
if you store the start millisec and increment by the current millisec, you get the millisec that are passed since the start of the program.
when you divide by 1000, you get the nr of seconds (and take the math.floor() of it)

Of course... I actually assumed he was using it, I must have misread then :P

And yes, it will be much more precise :)