Is there a way to save data inputed into Arduino?

I have a barometer hooked up and running. The issue I am having is that every time you turn it on or hit reset you need to recalibrate it. Is there any way to save data onto the board so that after reset or turn on it runs up the program and then grabs the saved data as well?

I’m using the Arduino Duemilanove board and the data I need to save is in the form of a double.

Any help would be appreciated, it’s for a class project.

Thanks.

You could use something like this.

http://www.sparkfun.com/products/9802

Thank you so much for your reply. I actually found my answer though here: http://www.arduino.cc/playground/Code/E … teAnything

I’m able to read and write to the board EEPROM memory using that coding.

I will look into that shield though because I do have a lot more data I would like to save.

Thanks again!

That’s cool. I’ve saved that link for later use. I’m actually doing a project now were I store a configuration file on the SD card. This has to be on an SD card because the end user needs to be able remove the card and modify the file.