Miscellaneous Ideas
|
Post your ideas for new miscellaneous programs here, or build on ideas posted by other visitors.
|
|
Reply to this item
|
TI-89 E6-B Flight Computer anyone?
|
Darwin695
|
Is anyone out there in TI calculator land into aviation and have any interest in a TI-89 based E6-B flight computer? (if you don’t already use a nice Jeppesen one that is… hopefully mine would have much nicer graphics.)
I was thinking of taking on the project… and I wanted to put some feelers out there for demand (?) for such a thing. Alternatively, you may not have any idea what I am talking about.
Chances are rare, but if you want to help out / do this project / want it on your calculator I would love encouragement. I happen think it’s a neat project for any other pilots who also happen to program TI-89 asm. (not like you could use it on the written exam...)
|
|
23 November 2004, 05:14 GMT
|
|
Re: Miscellaneous Ideas
|
09husbri
|
I have some questions for expert basic programmers regarding what I can do with Basic. 1) Can I create an automatic Alpha-Lock at user input? If so, how? 2) How can I 'protect' my programs from people screwing around with them in the program editor? 3) This is a little more specific, but when I have
: Input "WORD? ",Str1
: lengthStr1->X
: 0->T
: Lbl 1
: ClrHome
: RandInt(1,8)->A
: RandInt(1,16-X)->B
: Output(A,B,Str1)
: T+1->T
: If T=10:Goto 2
: For X,1,500
: End
: Goto 1
: Lbl 2
: Stop
Why do I get an Error for Domain?
|
|
26 November 2004, 20:11 GMT
|
|
|
|
|
Re: Re: Miscellaneous Ideas
|
Stijn van Drongelen
|
1) I don't think so... not in BASIC.
2) No. You can't change that using BASIC. There are however a lot of ASM programs and applications that can do that for you.
3) Well, there's nothing really wrong with the displaying part, but the main problem is this line:
: For X,1,500
Also, there's nothing wrong with this line, but you use the X variable again. When the program jumps back to label 1, it uses X as the length of Str1 again. X is 500.
There are two options to fix this;
a) remove ": length(Str1)->X" and change ": RandInt(1,16-X)->B" to ": RandInt(1,16- length(Str1))->B"
b) change ": For X,1,500" to for instance ": For I,1,500"
|
|
21 January 2005, 08:51 GMT
|
|
Asm compiler built in
|
Gib Hanson
|
Someone should program an assembly compiler that's built into the calc. That would be awesome!
|
|
29 November 2004, 20:04 GMT
|
|
Z80 on the Calc
|
Wesley Transue
|
Would anyone know how to make a program to program Z80 on the Calc (mainly the TI-83(+))? I could really use it.
|
|
1 December 2004, 17:36 GMT
|
|
Re: Miscellaneous Ideas
|
VrmlBasic
(Web Page)
|
What do the Lib() commands do on the TI-84+ ??
|
|
13 December 2004, 19:41 GMT
|
|
Re: Miscellaneous Ideas
|
Rug
|
Does anyone know how to make it so that when you turn your calculator (ti-84+) on you have to log in? if so please tell.
|
|
13 December 2004, 21:26 GMT
|
|
Encrypt/Decrypt
|
pachacco2
|
I have an idea for an extremely simple encryption/decryption program, but i need to know if there's a command to delete only a single variable out of a list. (for example, delete the 3rd variable in list 1). To prevent the theft of this program before it's published, I'm not going to include any details on how I plan on designing it. Just be patient and steal it after I upload it.
|
|
14 December 2004, 04:06 GMT
|
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
You can change the number of comments per page in Account Preferences.
|