Victoria Gough
/
TrackingTempRead_test
Testing code for just temperature test
Diff: TABLES.h
- Revision:
- 0:584ea5db2696
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TABLES.h Mon Sep 04 10:15:45 2017 +0000 @@ -0,0 +1,31 @@ +// Tables for positions and temperature measurements + +/****** POSITIONS *******/ +int numberOfBrackets = 5; + +// these need to be repopulated by calibration +//CLOCKWISE, COUNTERCLOCKWISE +int positionsCanopyOn[5][2] = { + {110, 18}, // module 1 + {100, 64}, // split module 2 + {64, 28}, //split module 3 + {80, 48}, // module 4 + {70, 58} // module 5 +}; + +// these need to be repopulated by calibration +int positionsCanopyOff[5][2] = { + {110, 18}, + {110, 18}, + {110, 18}, + {110, 18}, + {110, 18} +}; +/************************/ + +/******TEMPERATURES *******/ +int probeNumberByModule[5] = {4,4,4,4,8}; // last module is larger +int maxProbesOnModule = 8; +float temperatureStoreFloats[5][8] = {0}; +/************************/ +