I am curious if anyone can confirm if the opposite is also true…
For example, if I invert the code to say:
execute only when Time is between sunrise and 06:25:00
Will it use today’s sunrise if sunrise is before 6:25?
Will it use tomorrow’s sunrise if sunrise if after 6:25?
If so, then maybe use something like this:
If sunrise > 06:25:00 then execute only when Time is between 06:25:00 and sunrise
If sunrise < 06:25:00 then execute only when Time is between sunrise and 06:25:00
This would basically insure that it always triggered between 6:25 and sunrise, no matter which came first. (of courses, two days a year the sun will rise AT 6:25, so nothing will trigger on those days.)