2013-06-20 13:24:27 +02:00
|
|
|
/*
|
|
|
|
SD card datalogger
|
|
|
|
|
|
|
|
This example shows how to log data from three analog sensors
|
2013-06-22 08:03:22 +02:00
|
|
|
to an SD card mounted on the Arduino Yun using the Bridge library.
|
2013-06-20 13:24:27 +02:00
|
|
|
|
|
|
|
The circuit:
|
|
|
|
* analog sensors on analog ins 0, 1, and 2
|
|
|
|
* SD card attached to SD card slot of the Arduino Yun
|
|
|
|
|
2013-06-21 19:48:56 +02:00
|
|
|
You can remove the SD card while the Linux and the
|
2013-06-22 08:03:22 +02:00
|
|
|
sketch are running but be careful not to remove it while
|
|
|
|
the system is writing to it.
|
2013-06-20 13:24:27 +02:00
|
|
|
|
|
|
|
created 24 Nov 2010
|
|
|
|
modified 9 Apr 2012
|
|
|
|
by Tom Igoe
|
|
|
|
adapted to the Yun Bridge library 20 Jun 2013
|
|
|
|
by Federico Vanzati
|
2013-06-22 08:03:22 +02:00
|
|
|
modified 21 Jun 2013
|
|
|
|
by Tom Igoe
|
2013-06-20 13:24:27 +02:00
|
|
|
|
|
|
|
This example code is in the public domain.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <FileIO.h>
|
2013-06-22 08:03:22 +02:00
|
|
|
#include <Serial.h>
|
2013-06-20 13:24:27 +02:00
|
|
|
|
|
|
|
void setup() {
|
2013-06-22 08:03:22 +02:00
|
|
|
// Initialize the Bridge and the Serial
|
2013-06-20 13:24:27 +02:00
|
|
|
Bridge.begin();
|
2013-06-22 08:03:22 +02:00
|
|
|
Serial.begin(9600);
|
2013-06-21 19:48:56 +02:00
|
|
|
FileSystem.begin();
|
2013-06-20 13:24:27 +02:00
|
|
|
|
2013-06-22 08:03:22 +02:00
|
|
|
while(!Serial); // wait for Serial port to connect.
|
|
|
|
Serial.println("Filesystem datalogger");
|
2013-06-20 13:24:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void loop () {
|
|
|
|
// make a string that start with a timestamp for assembling the data to log:
|
|
|
|
String dataString = "";
|
2013-06-22 08:03:22 +02:00
|
|
|
dataString += addTimeStamp();
|
2013-06-20 13:24:27 +02:00
|
|
|
dataString += " = ";
|
|
|
|
|
|
|
|
// read three sensors and append to the string:
|
|
|
|
for (int analogPin = 0; analogPin < 3; analogPin++) {
|
|
|
|
int sensor = analogRead(analogPin);
|
|
|
|
dataString += String(sensor);
|
|
|
|
if (analogPin < 2) {
|
|
|
|
dataString += ",";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// open the file. note that only one file can be open at a time,
|
|
|
|
// so you have to close this one before opening another.
|
2013-06-21 19:48:56 +02:00
|
|
|
// The FileSystem card is mounted at the following "/mnt/FileSystema1"
|
|
|
|
File dataFile = FileSystem.open("/mnt/sda1/datalog.txt", FILE_APPEND);
|
2013-06-20 13:24:27 +02:00
|
|
|
|
|
|
|
// if the file is available, write to it:
|
|
|
|
if (dataFile) {
|
|
|
|
dataFile.println(dataString);
|
|
|
|
dataFile.close();
|
|
|
|
// print to the serial port too:
|
2013-06-22 08:03:22 +02:00
|
|
|
Serial.println(dataString);
|
2013-06-20 13:24:27 +02:00
|
|
|
}
|
|
|
|
// if the file isn't open, pop up an error:
|
|
|
|
else {
|
2013-06-22 08:03:22 +02:00
|
|
|
Serial.println("error opening datalog.txt");
|
2013-06-20 13:24:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
delay(15000);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function append a time stamp to the string passed as argument
|
2013-06-22 08:03:22 +02:00
|
|
|
String addTimeStamp() {
|
|
|
|
String result;
|
2013-06-20 13:24:27 +02:00
|
|
|
Process time;
|
|
|
|
time.begin("date");
|
|
|
|
time.addParameter("+%D-%T");
|
|
|
|
time.run();
|
|
|
|
|
|
|
|
while(time.available()>0) {
|
|
|
|
char c = time.read();
|
|
|
|
if(c != '\n')
|
2013-06-22 08:03:22 +02:00
|
|
|
result += c;
|
2013-06-20 13:24:27 +02:00
|
|
|
}
|
|
|
|
}
|