ticalc.org
Basics Archives Community Services Programming
Hardware Help About Search Your Account
   Home :: Programming :: Program Ideas :: Miscellaneous Ideas
Miscellaneous Ideas

Post your ideas for new miscellaneous programs here, or build on ideas posted by other visitors.

  Reply to this item

Re: Miscellaneous Ideas
twithchytweaker00  Account Info
(Web Page)

I was Wondering if anybody here had a robotics class:
cause i need a couple programs that can add vectors using trig..
thanx
<tweaker>

oh yeah does any body here play outwar on the .net?
if you do goto my web page and please click on the thug builder it will help

     13 December 2003, 00:36 GMT

¤
burntfuse  Account Info

If you're using an '86, you can specify vectors as [x,y] or [x(angle symbol)y], and then add them like normal numbers. For example: [1,5]+[3,2]=[4,7]

     13 December 2003, 01:51 GMT


Re: Vectors
nicklaszlo Account Info
(Web Page)

I don't know why you would use vectors or calcs for robotics, but adding vectors is eazy:

Take the highths of the vectors and add them. Then take the widths of the vectors and add them. If the vector starts at the origin, hight=Y and width=X. If not, subtract the starting point of the vector from the end point.

Why would you want to use trigonometry for this? If you are working with polar vectors, just convert to coordinate. That uses some trig and the pythagorean theorem.

     14 December 2003, 01:50 GMT

Port PedroM to the TI-83+.
nicklaszlo Account Info
(Web Page)

Let's make a port or clone of PedroM for the TI-83+ so that more people can use it. (Correction: You make a port. I don't know ASM.)

First order of buisness: Break the OS update signing system.

     14 December 2003, 01:52 GMT

Re: Miscellaneous Ideas
nicklaszlo Account Info
(Web Page)

A version of VTI that can boot off a flopy on a PC would be nice. That way, people could take VTI to places where the computer administrators are parinoid about hacking. It could use the DOS system that anyone with windows can make, and then copy the VTI files onto. It could use an open operating system, such as Linux or Open DOS. It could have it's own Kernel.
I've noticed the VTI web site has been non-existant for a long time now.

     14 December 2003, 02:01 GMT


¤
burntfuse  Account Info

Boot off a floppy? Couldn't you just copy it from the floppy to the PC, then run it?

     25 December 2003, 02:26 GMT


Re: ¤
nicklaszlo Account Info
(Web Page)

Not if your school's tech people are parinoid and stupid.

     26 December 2003, 05:26 GMT


¤
burntfuse  Account Info

You mean they won't allow you to copy TEMPORARY files to the hard drive for ~30 seconds? :-O

     28 December 2003, 00:20 GMT


Re: ¤
ti_is_good_++  Account Info

In most high schools it is official policy to not allow people to put data on C:\.

     28 December 2003, 02:45 GMT


¤
burntfuse  Account Info

So VTI won't run directly from the floppy?

     3 February 2004, 23:04 GMT


Re: ¤
ti_is_good_++  Account Info

If there was enough space on the floppy to create system files and allocate space, and if that floppy had the other miscellaneous Windows resources that it needs, and if you were allowed to install it on the computer (the computer doesnt care what drive it is, it won't install a program-a hacker could simply partition their HDD), then VTI might work off of a floppy.

     1 March 2004, 18:56 GMT


VTI will run off a floppy
SDPhantom  Account Info
(Web Page)

I've had run VTI off of a floppy several times. Although you need to watch the free space on the floppy, it'll work. There is enough space on a floppy for VTI and ONE set of ROM images and save states with the matching skin.

     17 March 2004, 02:32 GMT


Re: VTI will run off a floppy
john234 Account Info

hey does anyone have any ideas how to do a chat program using the cord??

thanks

     29 March 2005, 23:18 GMT

concerning VTI
Tonythetiger  Account Info

i may just be very out of the loop...

but does VTI offer ROMS via the USB type of ti computer cable? all of the options are for com ports or something.. i may just be clueless which happends alot too. is there a prog out there to make this work????

     15 December 2003, 20:57 GMT


Re: concerning VTI
ViralX  Account Info
(Web Page)

The last version made by Rusty doesn't feature a USB connectivity because the program was released before the cable. However, someone did release a new VTI. I can't say if this has it or not since it refuses to run on my computers.

     16 December 2003, 04:45 GMT


Re: Re: concerning VTI
Tonythetiger  Account Info

do you have a link for the new VTI??? and what os are you using on your comp that it wont work??

-Tony

     18 December 2003, 22:18 GMT

Re: Re: Re: concerning VTI
Tonythetiger  Account Info

also, does any one know if there is there an updated ti graph-link software version that supports USB as well??

     18 December 2003, 23:12 GMT


Re: Re: Re: Re: concerning VTI
ti_is_good_++  Account Info
(Web Page)

TI Connect. See link.

     23 December 2003, 03:52 GMT


Re: Re: Re: concerning VTI
ViralX  Account Info
(Web Page)

It is featured in the "Programs of the Year" article, just find it there.

As for my OS, it is XP with service pack 1.

     4 January 2004, 20:15 GMT

ASSEMBLY PROGRAMMING
shkaboinka  Account Info
(Web Page)

What I want to know is this: how do you assembly programmers know
what memory to use for data/variables? Is there a way to see
what is available at one time? Or is there a way to have the
calc worry about it. HOW DO YOU ASM PROGRAMMERS KEEP TRACK OF
OR USE DYNAMIC DATA/VARIABLES?

     18 December 2003, 16:18 GMT

Re: ASSEMBLY PROGRAMMING
ViralX  Account Info
(Web Page)

One way is just to assign a dedicated hunk of memory to whatever you need, knowing that is will not be used. For example, one could use the leftover LCD memory (on the TI89) to store the variables.

I'd also probably give them nice names. Like this:

variable1 equ $5000

main:
...code here...
lea variable1,a0 ;now you can refer to variable1 with (a0)
...more code...

That's the way I use most often.

<Vx>

     18 December 2003, 21:52 GMT


Re: Re: ASSEMBLY PROGRAMMING
ViralX  Account Info
(Web Page)

Wow. You could tell I just woke up by that first sentence. Let me rephrase it:

One way is just to assign an area of memory for whatever you need to a place that you know will not be used by other programs/AMS functions.

<Vx>

     18 December 2003, 22:37 GMT


¤
burntfuse  Account Info

First, for knowing where to put variables, you can use certain areas which are unused by the OS or you can overwrite without damaging anything, like $ca00 on the '86. OR, THE EASIEST but least efficient way, you can insert a "(label): .db 0" into your code, and then you can store values to the address at (label) and retrieve them easily as with any normal memory location. You can put a second, or even third ".db 0" if you need more than 1 byte, or ".dw 0" if you want to reserve 2 bytes with one statement.

As for dynamic variables, we just make sure that there's enough space for the maximum length it could be (I assume you mean dynamic in LENGTH....).

     25 December 2003, 02:35 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.

  Copyright © 1996-2012, the ticalc.org project. All rights reserved. | Contact Us | Disclaimer