start
main.cpp
- Committer:
- BillyGrande
- Date:
- 2017-06-27
- Revision:
- 2:5dd057d67746
- Parent:
- 1:924bead61d21
File content as of revision 2:5dd057d67746:
#include "general_control.h"
#include "temp.h"
#include "salinity.h"
//#include "calibration.h"
//extern bool rfl_flag;
//extern Serial pc;
int main() {
bool sal_state, temp_state;
initialization();
while(1){
//calibrate('a', "left");
sal_state = salinity_control();
//temp_state = temp_control();
//normality_test(sal_state, temp_state);
wait(1);
}
}