I am doing some readings with my Arduino and logging the results in the SD card on my Ethernet Shield in .csv file format.
How is it possible to view the SD data space and access an individual file from it? Ultimately I would like from a desktop application to be able to remotely access the SD card, and also read the contents of a file that I select.
Could someone suggest a good way to accomplish this?
I am just confused how to access the data. Can I have remote access to Arduino?
Or do I have to create a server that provides this information as an SQL list?
What would be the most preferable way to do this?
As I said before, I want to store the data, and then have access to the files from a phone or computer for further processing (statistical analysis, visualization, etc).
HI, im just in the same process, the same project, but im just some steps behind, could you help me with this, and let me explain.
Im making a project that use an Arduino ethernet shield to send measurements with sensors and a 3G usb and a router to somehow send data to a server, but im just in the beginning of it, i just have the sensors working and a LCD to see the result, the Ethernet shield working in the same local network with the computer, but thats it, now i dont know what to do, any suggestions would be awesome, and in the way use the SD card will be necessary to save readings and one every amount of time send like a package all the info recollected to the server, at this point i dont know what to do.
Well perhaps you should check the sketch from Examples/Ethernet/WebServer
I also am not sure how to proceed, either set up a webpage with a json/XML file that I access from the other devices? But I would prefer to have a solution just locally, so that is why I am wondering to create this on the Arduino.
louisbourdon:
Here is a visual example to what I want to do:
madmattd has already given the simplest solution - DumpFile. A serial connection to RealTerm will suffice or you can send the data direct to Excel using PLX-DAQ. The only reason to have the Ethernet shield is that it is probably where the SD slot is.
Actually, I want to read the data back through the network, that is why I have the Ethernet card. In my example above, the orange lines from the computer to the ethernet represent the network, not a serial connection.