const int Second = 1000 ;
const int Minute = 60 * Second;
const int Hour   = 60 * Minute;
const int Day    = 24 * Hour;

unsigned long MillisBefore_Ul = 0;
unsigned long ReportTimeInterval_Ul = 5 * Minute;  // Set the interval to one minute

const int LedPin_Int = 23;

static bool LedState_Bool = 0;

void setup() {

Func_Setup();

}

void loop() {

Func_ReportTimePassed();
Func_FlickerStateLed();
delay(10);

}