From 069ab2a9e441e8e75511f4a20dc98ad9af754bb3 Mon Sep 17 00:00:00 2001 From: Anson Biggs Date: Fri, 12 Nov 2021 15:54:34 -0700 Subject: [PATCH] extra code --- include/teensy.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/teensy.h b/include/teensy.h index 07402d8..f948298 100644 --- a/include/teensy.h +++ b/include/teensy.h @@ -14,15 +14,6 @@ void teensyAbort(); const int chipSelect = BUILTIN_SDCARD; File dataFile; -double loadCellCalibrate() { - // place code to calibrate load cells in here - double loadTotal = 0.0; - for (double t = 0.0; t == 10.0; ++t) { - loadTotal += 1.0; - delay(15); - } - return loadTotal / 10.0; -} void initFile() { Serial.print("Initializing SD card...");