46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
void pulseCounter(); //
|
|
void setupFlowMeter(); //
|
|
void checkFlow() ;
|
|
void flowMenu();
|
|
void getInfo(); //here we get info like temp etc
|
|
void checkMenu();
|
|
void firstMenu();
|
|
void pwdKeypadEvent();
|
|
void menuKeypadEvent();
|
|
void choiceMenu() ;
|
|
int menuType = 0;
|
|
|
|
int potMeterEnable = 46;
|
|
int testEnablePin = 47;
|
|
int lichtPin = 49;
|
|
int laserEnablePin = 50;
|
|
int waterCoolerPin = 51;
|
|
int airAssistPin = 52;
|
|
int ventilationPin = 53;
|
|
int powerWH = 48;
|
|
|
|
LiquidCrystal lcd(12, 11, 7, 6, 5, 4);
|
|
int passwordCorrect = false;
|
|
Password password = Password( "123456" );
|
|
const byte ROWS = 4; // Four rows
|
|
const byte COLS = 3; // Three columns
|
|
|
|
char keys[ROWS][COLS] = { // Define the Keymap
|
|
{ '1','2','3' } ,
|
|
{ '4','5','6' } ,
|
|
{ '7','8','9' } ,
|
|
{ '*','0','#' } };
|
|
|
|
byte rowPins[ROWS] = { 15, 20, 17, 19 }; // Connect keypad ROW0, ROW1, ROW2 and ROW3 to these Arduino pins.
|
|
byte colPins[COLS] = { 18, 14, 16 }; // Connect keypad COL0, COL1 and COL2 to these Arduino pins.
|
|
Keypad kpd = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS ); // Create the Keypad
|
|
float tempIn;
|
|
float tempOut;
|
|
int tempPinIn = 0;
|
|
int tempPinOut = 0;
|
|
volatile int pulseCount; //measuring the rising edges of the signal
|
|
int Calc;
|
|
int hallsensor = 2; //The pin location of the sensor
|
|
unsigned long loopTime;
|
|
|
|
|