const int  Button_Pin = 17;
const int  debug_Led = 13;

long Counter = 0;

bool ButtonState = HIGH;
bool ButtonState_Before = LOW;

int  AlarmState = 0;

unsigned long Seconds_Current =  0;
unsigned long Minutes_Current =  0;

unsigned long Seconds_Before =  0;
unsigned long Minutes_Before =  0;

int TimeValues[2] = {0,0};


void setup() {

  setSetup();
  Serial.println("Setup completed at : " + String(TimeValues[1]) + " Minutes, " + String(TimeValues[0]) + " Seconds");
}
void loop() {
  delay(5);

  Func_Timers();
  Func_ReadButton();

}