I am working with arduino uno for labview based sensor data acquisition application.
I am facing a problem of signal reconstruction at higher frequencies...as per snapshots attached.
All loop delays are set to zero but my acquired signal is getting distrorted...what could be the reason for this??
// the loop routine runs over and over again forever:
void loop()
{
// read the input on analog pin 0:
int sensorValue = analogRead(A0);
// Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 5V):
float voltage = sensorValue;// * (5.0 / 1023.0);
// print out the value you read:
mySerial.print(voltage);
delay(0);
}