I made a small set up to log temperature on SD card, everything is running smoothly until it reach 9:06:01 of logging that is 32761 seconds. I know that correspondcorresponds roughly to the max number in amaximum value of an integer. But I assignedmade all mamy variables to unsigned long. Here is the code in the loop and the IFif condition to log or not. TimerThe timer is computed with currenTimecurrentTime (unsigned long) and startTime (unsigned long). soSo even if logCount*freq are both integer integers, sothey should reach maximum value after 32761 secondseconds, then the IFif condition should always be true.
void loop() {
String date;
unsigned long timer;
int freq = 60;
sensors.requestTemperatures();
tempC1 = printTemperature(insideThermometer, 18);
tempC2 = printTemperature(outsideThermometer, 19);
// start serial port
Serial.begin(9600);
mainMenuDraw();
operateMainMenu();
CurrentTime = millis();
timer=(CurrentTime - StartTime)/1000;
date = TimeShowFormatted(CurrentTime - StartTime);
if (timer > logCount * freq and StopStatus == 0) {
logCount += 1;
LastLoggedDate=date;
DataLogg(date);
}
}
I thank you all for your help,
cheers