Loading...
  Show Posts
Pages: [1]
1  Topics / Science and Measurement / Re: Several questions about datalogging project on: March 22, 2013, 01:52:53 am
thanks but since i am in europe i can't order from adafruit and the ADC you suggested is the smallest i have ever seen. I will never be cable of soldering it
2  Topics / Science and Measurement / Re: Several questions about datalogging project on: March 21, 2013, 06:44:24 am
Anyone knows and can suggest any external low noise ADC for arduino?
3  Topics / Science and Measurement / Re: Several questions about datalogging project on: February 28, 2013, 06:15:56 am
sprintf()
works correct
for char[];

about the time module have you got any suggections?
what to buy i mean
4  Topics / Science and Measurement / Re: eye blinking in Neurosky with Arduino on: February 28, 2013, 04:36:40 am
What extacly you want to read from?
analog or digital?
5  Topics / Science and Measurement / Re: Several questions about datalogging project on: February 28, 2013, 04:34:33 am
That's a good idea, it worked and it is a clever one.

thanks.

Now anybody has an idea how to time the measuraments?

6  Topics / Science and Measurement / Re: Several questions about datalogging project on: February 27, 2013, 12:13:46 pm
Quote
Just declare your variable as a float and myfile.print them to SD.

I was so used of converting everything to String that i didn't thought it
So thanks!!

In the otherhand the other two answers didn't not help because:
Code:
myFile = SD.open(filename, FILE_WRITE);
  myFile.print(test1);
  myFile.print(",");
  myFile.print(test2);
  myFile.print(",");

i don't want to write something different i want to give different filename!

For the date i have to find a way to change it automatically...

Thanks in advance!
7  Topics / Science and Measurement / Several questions about datalogging project on: February 27, 2013, 06:55:12 am
I am trying to create a special datalogger for reading tiny amounts o voltage diff,
however i have 2-3 questions about the datalogging problem.

first: i want to create several logs in the form of
Code:
//Open the Data CSV File
  File dataFile = SD.open("test.txt", FILE_WRITE);
test1,
test2,
etc
i have tried
Code:
File dataFile = SD.open("test"+String(k)+".txt", FILE_WRITE);
but it's not working



second:
The dates on my output
all the text file on the Sd card are dated 1/1/2000
[img][file:///C:/Users/nerito/Pictures/arduino.jpg/img]


third :
any ideas how to uses floats on sd?

thank you in advance
Pages: [1]