You are populating the array in a for loop. Can you not see that you can print the array in a for loop, too?
for(count = 0; count <= 7; count++)
{
Serial.print(anaSave[count]);
}
Serial.println(); // Output the carriage return/line feed
You are populating the array in a for loop. Can you not see that you can print the array in a for loop, too?
for(count = 0; count <= 7; count++)
{
Serial.print(anaSave[count]);
}
Serial.println(); // Output the carriage return/line feed