Hi all, i have a simple question, i want store a txt with some information into Arduino. On setup function, i want to read this file one times and after that dont use anymore. What is the best way to do this?
I read to use a SD card, but for my work is much expensive.
How can i do this?
Auron6:
Hi all, i have a simple question, i want store a txt with some information into Arduino. On setup function, i want to read this file one times and after that dont use anymore. What is the best way to do this?
I read to use a SD card, but for my work is much expensive.
How can i do this?
Thanks a lot
how many characters?
If less than 1k you can stuff it into the internal EEPROM.
If your program does not use all of the 32k of flash, you can stuff it into the remainder.
Else you will need to add hardware:
Serial (i2c) eeproms 256 bytes to 512k bytes
Serial (SPI) Flash up to 16Mbytes
Pick your poison, with any of these solutions, you will have to create your 'file system'. These devices just store bytes, you have to organize them.