Open blhough opened 7 years ago
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
Memory();
void write( unsigned addr, int val);
int read( unsigned addr );
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
Memory
class 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