I have this if statement:
if (now.hour() == timeHour && now.minute() == timeMinute && now.second() == 0 && now.dayOfTheWeek() != 1 && now.dayOfTheWeek() != 7){
Is there a way to condense that for the purposes of saving on some bytes?
I have this if statement:
if (now.hour() == timeHour && now.minute() == timeMinute && now.second() == 0 && now.dayOfTheWeek() != 1 && now.dayOfTheWeek() != 7){
Is there a way to condense that for the purposes of saving on some bytes?