aboutsummaryrefslogtreecommitdiff
path: root/libraries/detectorBuilding/src/detectorBuilding.h
diff options
context:
space:
mode:
authorAnthony Wang2022-01-15 21:16:30 -0600
committerAnthony Wang2022-01-15 21:16:30 -0600
commit257e0247c614600865d861a0b818f39146a89744 (patch)
treebb41de894fced7d6d171046c384fd5ab1718fb32 /libraries/detectorBuilding/src/detectorBuilding.h
parentf79df9410b6e356c3e371cd127ed6bfe64d95f18 (diff)
Delete old stuff
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