Tag Reset on SpecificHour

Hi,
Please advise script that resets tag on specific hour, let’s say 5:15 AM.
Thank you!

from time import localtime, strftime
curDay = strftime("%d", localtime())
curTime = strftime("%H:%M:%S", localtime())

if curTime == "05:15:00":
	#do Something

elif curTime == "09:23:00":	
	Do something else

Create a gateway timer script, executing every 750ms, with dedicated threading

You can also upvote this ideas post, as it would make it much easier in the future :slightly_smiling_face:

Thanks a lot. Tested, it works.