Step 5: Shoot the Photos!
Connect your Camera and Calculator - Use the link cable from part 3 to connect the two
Start the program - Turn on your calculator and press the PRGM button. Find the program you made on the list, and press enter.
On your screen, you should see the prompt "A=?". Enter in the amount of time you want in between the pictures. Note: this is not the amount of time in seconds. I think about 100 of these make a second, but this can change depending on battery life and your calculator model. If you don't want to think about this conversion every time, you can add a small piece of code in the program to do it for you.
Press Enter - Your camera should start snapping away! Now sit back and relax and make sure nothing explodes.
Turn the Program off - When you're done shooting, you can turn the program off by pressing or holding the ON button. You will see a prompt that says "ERR: BREAK". Just highlight Quit and press enter. The program will now be stopped and you can turn your calculator off.
If you want to restart the program, all you have to do is press ENTER again, you don't need to go to the program dialog again.
Remove these ads by
Signing Up






































Visit Our Store »
Go Pro Today »




If you are interested give it a try..
( the % are supposed to be arrows.. the STO key above on/off)
.................................................................................
Disp "START DELAY IN"
Disp" SECONDS"
Prompt A
A*333.3333 % W
Disp "HOW OFTEN IN"
Disp "SECONDS"
Prompt B
B*333.3333 % X
Disp "HOW MANY SHOTS"
Prompt Y
For(H,1,W,1)
End
Send(A)
Y-1 % Y
While Y>0
Y-1%Y
For(H,1,X,1)
End
Send(A)
End
...............................................................................
As you can see from what "solupine" showed.. you need to multiply your delay (seconds) by approx. 333.3333 to get the camera to fire at the right time...
The first delay , is how long till it takes the first shot.
The second delay, is how often between shots
This was done on a TI-83+ , if you try it on other models post it up if it works or not please..
to understand it the best i suggest putting it in as i have it above and running it .. it will explain itself..
I my self do not have the spare time anymore to reprogram it to see if i can get it to work. if anyone out there has any ideas on how to program it please feel free to post it.
For timing I figured the following. It might be a little off, but it's roughly correct:
1 minute interval = set A to 20000
15 seconds = 5000
and so on . . .