diff --git a/barebones1/barebones.ino b/barebones1/barebones.ino index 2108a2c..5032f38 100644 --- a/barebones1/barebones.ino +++ b/barebones1/barebones.ino @@ -9,6 +9,8 @@ CRGB leds[NUM_LEDS]; long startTime = 0; long endTime = 0; long ttotaltiem = 0; +int testCount = 0; + void setup() { Serial.begin(115200); @@ -34,6 +36,6 @@ void loop() { // Output in CSV format Serial.print(testCount); Serial.print(","); - Serial.println(totalTime); + Serial.println(ttotaltiem); }