DueFlashStorage saves non-volatile data for Arduino Due. The library is made to be similar to the EEPROM library. Uses flash block 1 per default.
-
Non-volatile data storage. Resetting or loss of power to the Arduino will not affect the data.
-
Similar to the standard EEPROM library
-
Write and read byte by byte
-
Write and read byte arrays to store arbitrary variable types (strings, structs, integers, floats)
Note: The flash storage is reset every time you upload a new sketch to your Arduino.
Inspiration and some code from Pansenti at https://github.com/Pansenti/DueFlash
For more information about this library please visit us at http://sebastiannilsson.com/en/blogg/ersattare-for-eeprom-pa-arduino-due/
Copyright (c) 2015 Sebastian Nilsson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.