Hi,
I've very new to Arduino, having just purchased a Nano and getting familiar with uploading code to and from.
In an nutshell, I'd like to know if it's possible to work with two micro SD cards, copying a text file from one to the other.
For this application, we have some off-the-shelf data loggers sitting in the field, writing data to a text file. At the moment, we have to go around with a laptop and remove the micro sdcard from the logger, copy it onto a directory on the laptop and insert the SD card back back into the logger. The loggers are in a rain forest, so the terrain is pretty rough, the vegetation is thick and it's generally not kind to laptops.
The name of the loggers text file is unique for each device but we won't know as we move from logger to logger what that name will be.
Ideally, what I'd like to build is an Arduino with two SD card slots, one being the SD card will write the log files too and the second where we can insert the card. Again, ideally, when the SD card is inserted we would find any text files (there will normally be only one or two files), write them to the internal SD card and then automatically unmount the SD card.
I don't forsee any problems writing the code and we have access to a 3D printer so can create a housing - what I'm not sure about is whether it's possible two have SD card readers and if so, how you access them as almost all the examples I've found so far assume that there will only be one SD card and it will mainly be used as storage.
The goal is for something as simple as possible - just stick the SD card in and wait for an LED to go out so you know you can remove the card.
As far as the logger are concerned, there's no ability to modify them.
Can anyone give any advice?