I'm looking for a little guide/tutorial on data logging with the Arduino and an SD card (without page after page of back-story and tecnical data that would fly over my head), preferably something with a very simple input (like a button) that need no configuration in the IED (like a temperature sensor) and has Heavily notarised code, so even I can grasp the concept...........Im talking instructables simple!
You can use the same wiring as the "AgentOrange"/ "SD/MMC From the ground" up schematic.
I managed to get FileLogger, as well as uFat(SD/MMC From the ground up), working. It takes some diddleing around to get them programmed the way you want them to work.
The examples given are helpful, up to a point, but then the diddleing begins: looking for answers and asking questions in forums, and hoping to get responses. Hoping, I say. :
My sketches for the use of either of the methods are quite messy. If I can clean one up, maybe I can post one.
Be careful with that HCl, don't breath the fumes.
Actually, "I love the smell nitric acid in the morning"
Do you need a file system on your SD card? If you can only read it on a Windows PC, you probably do. If you want to write multiple files, you probably do. If you want to send it to someone else, you probably do.
However, if it's just for your personal use, I think you could just write the data to the card without a file system. You could read it with a Linux box, or, I believe, a Mac.
The advantage of this approach is that you wouldn't have to deal with a whole FAT library in your code. Just some low level I/O routines, which you could steal from a FAT library. I'm guessing they would be pretty simple.
Im after pure fundamentals here, just want to know how to do something along the lines of taking a value from a pin, whether it be a button high/low, or value from a sensor like a NTC.....And at defined increments of time, log that value data to a SD card.