Thanks again, folks. Here’s the binding.
Again, I dragged and dropped exactly as with the other guy’s tag which works as expected.
For my 15 minute data logging I created a tag with the following expression:
//Turn on for one minute at 00, 15, 30 and 45 past the hour.
dateExtract(now(0), "minute") = 0
|| dateExtract(now(0), "minute") = 15
|| dateExtract(now(0), "minute") = 30
|| dateExtract(now(0), "minute") = 45
This with the oneshot on the scanclass does the data logging as required.
