I must have missed this somewhere, and I have tried searching the forum.
I am building a display that is updated every day at midnight, using a simple RTC for timing ( it has to run for weeks )
To test it without waiting for a whole day each time, I thought I could change the / 86400 for getting days from Unixseconds to say 864, and make it advance 100 times a day .
I dont know why there is the L after the divisor, so can I just use ? int rxday = now.unixtime() / 864L;
Well I tried that and it is working, refreshing every 14.4 minutes, so perhaps the L forces it to a long integer ??