Generic Configuration Storage Library?

Hi,

before I write something on my own, does anybody know of a generic paramter configuration library for the Arduino's EEPROM?

What I am looking for is generic way to store data (mainly numbers, strings, maybe also IP addresses) similar to dd-wrt "nvram" command line. Being generic means it should not rely on a specific data structure being known by the sketch.

Use would be to configure MAC/IP address configuration in a generic fashion and the on a per sketch base being able to add or also leave out parameters in a set attributename=valuestring, get attributename, delete attributename manner.

Andreas

On the playground there is this - Arduino Playground - ExtendedDatabaseLibrary -

does that fit your needs?

Hi,

yes, looks fine. However I am looking into something which has variable length records as I will be storing small items (Pin Numbers, Booleans etc) as well as large items (DNS Names, IP addresses, Hostnames).

Probably it is my time to contribute :slight_smile:

Andreas