Programming help.
cannibalmonk
Posts: 3
I am a student who is invovled with ballon satellite project sponspered by NAU and Nasa.
We are sending up a package that will take pictures and collect certain data way up high, however high weather ballons go up.
We bought a BASIC stamp, a few of the courses, and a accelerometer.
I am currently trying to program the accelerometer and the BASIC stamp to log data throughout the trip, which is about 2 hours long If I recall correctly. Therein lies the problem, I simply dont know how to program and am looking for some quick suggestions. Sadly enough, the launch is coming up real fast.
So far, I am trying to tweak the program, MEMSIC2125-Dual.BS2, to Write the approprite data thoughout the trip. I didnt think it whould be that hard, but it seems so.
I could use some guidance.
Thanks,
Sean
Post Edited (cannibalmonk) : 4/17/2006 5:56:07 AM GMT
We are sending up a package that will take pictures and collect certain data way up high, however high weather ballons go up.
We bought a BASIC stamp, a few of the courses, and a accelerometer.
I am currently trying to program the accelerometer and the BASIC stamp to log data throughout the trip, which is about 2 hours long If I recall correctly. Therein lies the problem, I simply dont know how to program and am looking for some quick suggestions. Sadly enough, the launch is coming up real fast.
So far, I am trying to tweak the program, MEMSIC2125-Dual.BS2, to Write the approprite data thoughout the trip. I didnt think it whould be that hard, but it seems so.
I could use some guidance.
Thanks,
Sean
Post Edited (cannibalmonk) : 4/17/2006 5:56:07 AM GMT
Comments
I have six varibles that I want to WRITE, every second or minute, or as many crammed into an hour that I can. Then I want to read them at a latter date.
So they are stored in the EEPROM forever until I READ them with a seperate program or until I write over them, right?
Any help whould be greatly appreciated.
- You re-program the stamp.
- You write to the same Eeprom location too many times, (the limit I think is around 1,000,000 writes to the one location, search this forum to be sure). So if you write to the location·a few times per second, the life of the stamp is going to be fairly short. If you only write to the location say, once an hour,·then you wont have any problems for a very long time.
If you 'put' the data into Ram, it can be written as many times as you like, but then the data will be lost if the power is removed from the stamp.
Hope this helps,
Chris
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Tech Support
csavage@parallax.com
You may also want to look at this page:
http://www.parallax.com/html_pages/resources/custapps/app_nearspace.asp
Paul's group does near space launches-
Ryan
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Ryan Clarke
Parallax Tech Support
RClarke@Parallax.com
P.S. That part number is apparently more like 24LC32.
Could anyone help me to write down and retrive the measurments that I whould get during our launch with the attached program?
Ive been at it for awhile now trying differnt things, but with no luck. I am trying to use the WRITE and READ commands, but nothing shows up in the debug window.
Post Edited (cannibalmonk) : 4/18/2006 12:27:12 AM GMT