|
We're glad you came by, but you might find what you're looking for elsewhere. TI-Basic Developer is not the site it once was. While its information on commands and other calculator features remains almost second-to-none, its forum, archives, and even hosting service, Wikidot, have been decaying for years. The calculator community would love to see what you're working on, or help you in your next coding adventure, but TI-Basic Developer is no longer the place to do it. Instead, you should head over to Cemetech (primarily American) or TI-Planet (primarily international). Both are active, well-established forums with their own archives, chatrooms, reference material, and abundant coding tools and resources. We'll see you there, we hope. |
You have not uploaded your program! Please edit the page to upload your program.
|
![]() |
||||||||||||||
|
This program converts between the base 2, base 10 and base 16 numeral systems, A.K.A. binary, decimal and hexadecimal. Written in pure TI-Basic. That's all it does. Have fun with it! |
|||||||||||||||

What the community thinks:
Can you post the raw code?
You can download the file and open the .8xp program with software called TI Connect CE. This software will also allow you to transfer the program to your calculator with the direct USB cable.
Here is the source code anyway:
I made a few trivial optimizations, but didn't change anything structurally.
What is that KCrHome command?
There is no KcrHome command. Check to make sure your code is typed in correctly. :)
It reads "Delvar KClrHome" he forgot to put the 'l' in ClrHome. Hope that helps.
Look, Even if this thread was active in April 2016, There is some things the creator needs to know.
There is still optimization that can be made, either by using the sub( command or by turning the:
This can be optimized to without the End and Then commands.
I have heard, using Ans is quicker than the actual variable itself.
So,
It could actually be
Good point.