I’m a bit late to the party, but for the benefit of @TwoBobBit and @liamh I thought I’d mention that you can make those timers a little neater
Here’s my rule for a timer interval between 5.30pm and 7pm - adjust as needed:
TStart = new DateTime(now.getYear(), now.getMonthOfYear(), now.getDayOfMonth(), 17, 30, 0)
TEnd = new DateTime(now.getYear(), now.getMonthOfYear(), now.getDayOfMonth(), 19, 0, 0)
if(now.isBefore(TEnd) && (now.isAfter(TStart)) {
logInfo("hestia", "test log output")
}