Help with PLX-DAQ
scottycss2000
Posts: 4
I am using a Arduino UNO board and am wanting to import my data to Excel using PLX-DAQ. I have tried Excel 2003, 2007, and 2010 and all have done the same thing. I open PLX-DAQ, enable content, and then click connect. It then shows connected and the R button flashes red and green, but the comments do not say receiving data and the data is not populating the cells. What am I doing wrong? Thanks,
Here is my code.
<int x = 0;
int row = 0;
void setup()
{
Serial.begin(128000);
Serial.println("CLEARDATA");
Serial.println("LABEL,Time,x,sin(x)");
}
void loop()
{
Serial.print("DATA,TIME,"); Serial.print(x); Serial.print(","); Serial.println(sin(x*PI/180));
row++;
x++;
if (row > 360)
{
row = 0;
x = 0;
Serial.println("ROW,SET,2");
}
delay(100);
}>
Here is my code.
<int x = 0;
int row = 0;
void setup()
{
Serial.begin(128000);
Serial.println("CLEARDATA");
Serial.println("LABEL,Time,x,sin(x)");
}
void loop()
{
Serial.print("DATA,TIME,"); Serial.print(x); Serial.print(","); Serial.println(sin(x*PI/180));
row++;
x++;
if (row > 360)
{
row = 0;
x = 0;
Serial.println("ROW,SET,2");
}
delay(100);
}>
Comments
The instructions were for the basic stamp so im wondering if it was ever updated for use with C?
Have you tried the Arduino forums? Or Google? I found this:
http://www.instructables.com/id/Sending-data-from-Arduino-to-Excel-and-plotting-it/