okay im looking at the arduino ide example sket, focusing on this part of the code,,
float f = 123.456f; //Variable to store in EEPROM.
int eeAddress = 0; //Location we want the data to be put.
do i need a different "int eeAddress = 0 for each vaariable?"
int eeAddress = 0
int eeAddress = 1
int eeAddress = 2?
and if im using longs is it valid to use
eeAddress += sizeof(long); //Move address to the next byte after float 'f'.
instead of
eeAddress += sizeof(float); //Move address to the next byte after float 'f'.