Skip to content

Arduino EEPROM CString List Manager - EPList (For keep some Strings on Arduino EEPROM / External EEPROM and minimize use memory on Arduino Board). Template class.

Notifications You must be signed in to change notification settings

piotrku91/EPList

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino EEPROM CString List Manager - EPList (For keep some Strings on External EEPROM and minimize use memory on Arduino Board).

Template class header file.

Written by Piotr Kupczyk ([email protected]) 2020 v. 0.3

Github: https://github.com/piotrku91/

Depedencies: SparkFun_External_EEPROM.h // Click here to get the library: http://librarymanager/All#SparkFun_External_EEPROM

Tip: For proper work execute Wire.begin() function in setup() function (main sketch).

Example of create objects: EPList<64> EC(0x50); // Static allocation (i2c chip Address) EPList<64> *EC = new EPList<64>(0x50); // Dynamic allocation (Address, Size of EEPROM chip, Page Size)

EPList<64> EC(0x50,32000,128); // Static allocation with more settings (i2c chip Address, Size of EEPROM chip, Page Size) EPList<64> *EC = new EPList<64>(0x50,32000,128); // Dynamic allocation (Address, Size of EEPROM chip, Page Size)

About

Arduino EEPROM CString List Manager - EPList (For keep some Strings on Arduino EEPROM / External EEPROM and minimize use memory on Arduino Board). Template class.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages