reference:
https://www.pjrc.com/teensy/td_libs_EEPROM.html
https://www.arduino.cc/en/Reference/EEPROM
Create a Memory class with the following public interface:
Memory();default constructor
void write( unsigned addr, int val); writes the value to the EEPROM
int read( unsigned addr ); read the value from the EEPROM
be sure to read the README for how to make contributions
If you are new to classes in C++
https://github.com/RoboticsClubAtUCDavis/micromouse/blob/dev/README.md
reference:
https://www.pjrc.com/teensy/td_libs_EEPROM.html
https://www.arduino.cc/en/Reference/EEPROM
Create a
Memoryclass with the following public interface:Memory();default constructorvoid write( unsigned addr, int val);writes the value to the EEPROMint read( unsigned addr );read the value from the EEPROMbe sure to read the README for how to make contributions
If you are new to classes in C++
https://github.com/RoboticsClubAtUCDavis/micromouse/blob/dev/README.md