https://github.com/ddworken/eepromfilesystem
https://github.com/ddworken/eepromfilesystem
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ddworken/eepromfilesystem
- Owner: ddworken
- License: gpl-2.0
- Created: 2014-05-13T22:25:34.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-25T01:41:56.000Z (almost 12 years ago)
- Last Synced: 2025-01-17T19:51:35.104Z (over 1 year ago)
- Language: C++
- Size: 168 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This project has been discontinued. A primitive string based filesystem is seen in https://github.com/ddworken/hardwarePasswordManager while a more mature EEPROM library is seen at http://playground.arduino.cc/Code/EepromUtil .
~~EEPROMFilesystem~~
================
~~The two important methods are:~~
~~void addString(String stringToAdd, int stringPlace)
Pass this method a string (of length less than 924 characters) for it to be stored in stringPlace. stringPlace must be an even number between 0 and 98 (otherwise will not work). This even number is the string identifier.~~
~~String getString(int stringNumber)
When passed an even number between 0 and 98 it will return the string with that identifier.~~
===============
~~Currently supports up to 50 strings of length up to 924 characters.~~