Hi.
Thanks for your reply.
Here is the code i have to store to memory:
File dataFile = SD.open("datalog.csv", FILE_WRITE);
if(dataFile)
{
dataFile.print(id);
dataFile.print(',');
dataFile.println(sensor1);
dataFile.close();
// print to the serial port too:
Serial.print(id);
Serial.print("\t");
Serial.print(sensor1);
Serial.print("\t");
Serial.println(gjennomSnitt);
//Increment ID number
id++;
}
When i imported the data, I got what I wanted.
But is there a way to solve this without importing??
-Andy