Hello!
In [http://www.arduino.cc/en/Reference/EEPROM] i have found that EEPROM library has functions EEPROM.put, EEPROM.get and EEPROM[]. Now this functionalities does not work in my version (1.06). Why? (In same another Arduino's tutorials this library does not include this functionality).
for example for the sketh line:
319.EEPROM.put(AA, WWZyymmdd);
compiler reports an error:
... ino:319: error: 'class EEPROMClass' has no member named 'put'
library <EEPROM.h> is installed and EEPROM.write and EEPROM.read works.
Go look at the release notes for the various versions. Figure out which version introduces the get() and put() methods. If you absolutely can't live without them, as people have done for years. then download that version!
Thanks. It looks like the additional functionality was introduced in 1.6.2 I'll grab that and give it a try.
This message might save someone else a few keystokes....