Update barebones1/barebones.ino

This commit is contained in:
krishmo118 2025-04-02 17:43:32 +00:00
parent 07851fafce
commit a53d48154e
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}