├── examples ├── EmulateEEPROM │ └── EmulateEEPROM.ino ├── FlashStoreAndRetrieve │ └── FlashStoreAndRetrieve.ino └── StoreNameAndSurname │ └── StoreNameAndSurname.ino ├── library.json ├── library.properties ├── readme.md └── src ├── FlashAsEEPROM.cpp ├── FlashAsEEPROM.h ├── FlashStorage.cpp └── FlashStorage.h /examples/EmulateEEPROM/EmulateEEPROM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/examples/EmulateEEPROM/EmulateEEPROM.ino -------------------------------------------------------------------------------- /examples/FlashStoreAndRetrieve/FlashStoreAndRetrieve.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/examples/FlashStoreAndRetrieve/FlashStoreAndRetrieve.ino -------------------------------------------------------------------------------- /examples/StoreNameAndSurname/StoreNameAndSurname.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/examples/StoreNameAndSurname/StoreNameAndSurname.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/library.properties -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/readme.md -------------------------------------------------------------------------------- /src/FlashAsEEPROM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/src/FlashAsEEPROM.cpp -------------------------------------------------------------------------------- /src/FlashAsEEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/src/FlashAsEEPROM.h -------------------------------------------------------------------------------- /src/FlashStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/src/FlashStorage.cpp -------------------------------------------------------------------------------- /src/FlashStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmaglie/FlashStorage/HEAD/src/FlashStorage.h --------------------------------------------------------------------------------