Hello there,
I'm not sure if this is the best place to report bugs about code on playground pages. Seems that also Issues · arduino/Arduino · GitHub is not the place for this.
Anyway, theres a little bug in the code example at Arduino Playground - EEPROMReadWriteLong
In the "EXAMPLE:" section, the code block:
"//Writing first long.
EEPROMWritelong(address, number1);
address+=4;
//Writing second long.
EEPROMWritelong(address, number1);
address+=4;"
should be:
"//Writing first long.
EEPROMWritelong(address, number1);
address+=4;
//Writing second long.
EEPROMWritelong(address, number2);
address+=4;"
The code as it is now is writing the same number (number1), in both example addresses.
Thanks,
Rodrigo