hi
I'm trying (because its stil not working yet ) usind SDcard to store data in my UNO , and I am realizing that power is important , current needs to be high , and need to be stable etc ..
What about using an EPPROM instead of SD Card ?
Which one do you suggest ?
How complex it is to manage them and extract data from it ?
Use of an EEPROM is quite simple and it is perfect for small data like some setup which can be used at startup.
UNO has it on chip. EEPROM is unsuitable for frequent writes. It is durable for 100k writes. SD card is better for bigger data and frequent writes but it requires HW and more of code.
hi CrossRoads ,
not so much data, some measurements / logs .
Thanks for your table, I'll look into it.
I'm interested in this option because i don't want to depend too much on power (as it seem to be with SD ) . How easy it is to retrieve data back form EEPROM/FRAM ?
You can also turn the the whole SD-card + reader off via MOSFET.
Then turn it on only when writing and buffer the readings so you write a few measurements at once... the power consumption will be very low with only little code needed. The biggest drawback might be the size of the databuffer costing a little RAM... but you dont need it if thats a issue.