Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

Number of slow sequences


Anton Jul 4, 2015 10:34 AM

Is there a fundamental reason why there cannot be more than 4 slow sequences?


JDavis Jul 6, 2015 06:27 PM

A limit has to be chosen when creating the scheduling portion of the datalogger operating system. The limit of 4 is not going to change.

If you want to run processes in slow sequence on more than 4 different intervals, you can use If IfTime() Then statements within your slow sequences to in essence create other intervals.

Example:
SlowSequence
Scan (1,Min,3,0)
'Instructions placed here happen every 1 minute
If IfTime (0,5,Min) Then
'Instructions placed here happen every 5 minutes
EndIf
If IfTime (0,10,Min) Then
'Instructions placed here happen every 10 minutes
EndIf
NextScan

Log in or register to post/reply in the forum.