Data Storage - Electron

Wondering what you guys use for local data storage with electron. I need to store up to 32k of data. The data will be written ofen.
At the moment I have been using the FM25V10 Ramtron IC but these are very expensive. Spi EEprom only has 1 Million write cycles (11 days at 1 second writes). Some of the serial flash ICs look ok but writing to them in blocks is a pain to manage compared to linear addressing of the Ramtron.

Thanks

Actually, to answer my own question, I think I can use a micro SD card. This gives me far more memory than I require at low cost and looks like the SDFat library will save a lot of low level writing.

1 Like

Yes, the SDFAT library and a micro SD card make an excellent data storage system for the Electron and Photon.

2 Likes