Shop OBEX P1 Docs P2 Docs Learn Events
Arduino Uno and PLX-DAQ connected, but data didn`t display in Excel worksheet — Parallax Forums

Arduino Uno and PLX-DAQ connected, but data didn`t display in Excel worksheet

Hello, I am Anggi. I am newbie here. I have a problem when aquisition data from sensor with use Arduino and PLX-DAQ. PLX-DAQ can receive data from Arduino but data didn`t display in Excel worksheet. You can see in my attach file.
2016-08-21%20%281%29.png

This is my program in Arduino:

int LDR_Pin = A0;
int row = 0;
void setup() {
Serial.begin(19200); // opens serial port, sets data rate to 9600 bps
Serial.println("CLEARDATA");
Serial.println("LABEL,Time,Waktu,LDR_Read");
}

void loop() {
int LDRReading = analogRead(LDR_Pin);
Serial.print("DATA,TIME,TIMER,");Serial.println(LDRReading);
row++;
LDRReading++;
delay(100);
}

Can you help me to fix this problem? Thanks before.
1366 x 768 - 117K

Comments

  • Chris SavageChris Savage Parallax Engineering Posts: 14,406
    This software is pretty dated. It was written for Windows 98. Have you seen the requirements from the product page on our website?

    System Requirements

    Microsoft Windows 98
    Microsoft Office/Excel 2000 to 2003
    May not work with newer software; no longer supported
  • PublisonPublison Posts: 12,366
    edited 2016-08-22 20:30
    Office 2003 was the last supported. I had it working on WIN 7 with Office 2003.
  • Chris SavageChris Savage Parallax Engineering Posts: 14,406
    I'm also told there are Windows 10 issues, though we haven't tested those.
Sign In or Register to comment.