I'm currently attempting to play around with the new PLX-DAQ v2.11 and am using this simple example:
int pot= A0;
void setup() {
Serial.begin(9600);
Serial.println("CLEARDATA");
Serial.println("LABEL, Time, Started Time, Date, Analog Value, POT%");
Serial.println("RESETTIMER");
}
void loop() {
int pot_val = analogRead(pot);
int pot_percentage = map(pot_val, 0, 1023, 0, 100);
Serial.print("DATA, TIME, TIMER, DATE,");
Serial.print(pot_val);
Serial.print(" ,");
Serial.print(pot_percentage);
Serial.println(" ,");
delay(1500);
}
I see the data coming up in the DAQ debug window, but it is not logging in the excel cells. I have selected the correct COM port, matched the baud rate, and have hit the connect button. I'm not sure what else I am missing.