Howdy,
I am porting code from a BASIC Stamp setup over to the Arduino language, and one of the facets of the program is writing a variable to memory throughout the program and then reading it when the program starts up. In the BASIC program, I just write to the lowest address (000) on the EEPROM and then read it from there, since BASIC programs are written from the highest memory address down. Is it like this on the Arduino? In other words, is my program going to have an issue if I have something like
EEPROM.write( 0, 8 );
currentGear = EEPROM.read( 0 );
Thanks in advance,
Evan