From a53d48154ecfaad3835cf829b0f51324062a6e8b Mon Sep 17 00:00:00 2001 From: krishmo118 Date: Wed, 2 Apr 2025 17:43:32 +0000 Subject: [PATCH] Update barebones1/barebones.ino --- barebones1/barebones.ino | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }