Sunday, November 6, 2016

TI-84 Plus CE: Updated Stopwatch and Timer Programs (OS 5.2)

TI-84 Plus CE:  Updated Stopwatch and Timer Programs

The programs STOPW52 and TIMER52 are updates of STOPWTCH and TIMER programs respectively.  The new versions take advantage of the new wait( and eval( functions.  You can find the original programs here:  http://edspi31415.blogspot.com/2016/07/ti-84-plus-ce-stopwatch-and-countdown.html

The ticks are now 0.1 seconds instead of a full second.

To find out about the new OS 5.2 for the TI-84 Plus CE, click here:  http://edspi31415.blogspot.com/2016/11/ti-84-plus-ce-os-update.html

TI-84 Plus CE Program STOPW52:

"STOPWATCH OS 5.2"
"EWS 2016-11-06"
ClrHome
0→T
While 1
getKey→K
Output(1,1,"TIMER")
Output(2,1,"PRESS ENTER TO STOP")

While K=0
getKey→K
ClrHome
Output(3,1,"SECONDS: "+eval(T))
Wait .1
T+.1→T
End
If K=105
Then
ClrHome
Output(1,1,"SECONDS: "+eval(T-.1))
Stop

End
End

TI-84 Plus CE Program TIMER52:

"TIMER FOR OS 5.2"
"EWS 2016/11/06"
Input "NO. SECONDS:",N
For(I,N,0,-.1)
ClrHome
Output(3,1,"TIME: "+eval(I))
Wait 0.1
End
ClrHome


(Thank you Jack Kessler for pointing our my previous typo (For line) - Eddie)

This blog is property of Edward Shore, 2016.






HP 15C: Distance and Slope Between Two Points Using Polar Conversion and the Stack

HP 15C: Distance and Slope Between Two Points Using Polar Conversion and the Stack HP 15C Program: Distance and Slope This short...