I have a roller filter mat that I'm currently running 27/7 except for when I do maintenance. I'd like to play around with running it for less time each day to see how it effects my systems parameters. Below is my current code:
If I wanted to only run it in four hour blocks, could I simply add this code after the Fallback ON statement?
Finally, if I wanted to adjust the start time of that four hour block, I would simply had the number of minutes to the first part of that code and that would adjust it from midnight?
Code:
Set ON
Fallback ON
If Output ReturnPumpA = OFF Then OFF
If Output ReturnPumpB = OFF Then OFF
If Output Maintenance = ON Then OFF
Defer 005:00 Then ON
If I wanted to only run it in four hour blocks, could I simply add this code after the Fallback ON statement?
Code:
OSC 0:00/240:00/240:00 Then OFF
Finally, if I wanted to adjust the start time of that four hour block, I would simply had the number of minutes to the first part of that code and that would adjust it from midnight?