aboutsummaryrefslogtreecommitdiff
path: root/libraries/detectorBuilding/src/detectorBuilding.h
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/detectorBuilding/src/detectorBuilding.h')
-rw-r--r--libraries/detectorBuilding/src/detectorBuilding.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/libraries/detectorBuilding/src/detectorBuilding.h b/libraries/detectorBuilding/src/detectorBuilding.h
deleted file mode 100644
index cdb6890..0000000
--- a/libraries/detectorBuilding/src/detectorBuilding.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- detectorBuilding.h - Library for Detector Building utility functions
- Created by Anthony Wang, February 21, 2020.
- Released into the public domain.
-*/
-
-#ifndef detectorBuilding_h
-#define detectorBuilding_h
-
-#include "Arduino.h"
-typedef long double ld;
-
-const int LED_R = 8, LED_G = 10, LED_B = 12, THERM = 0; // Device component pins
-const ld R_k = 10000, V_in = 5, analog_max = 1023; // Device constants
-
-ld f2c(ld f);
-ld c2f(ld c);
-ld k2c(ld k);
-ld c2k(ld c);
-ld f2k(ld f);
-ld k2f(ld k);
-
-ld a2d(int a);
-int d2a(ld d);
-
-ld v2r(ld V_out);
-
-void sort(ld a[], int n);
-
-//void calculate();
-
-#endif \ No newline at end of file