ATO WaterLevel anomoly
Posted: Sun Dec 30, 2012 4:42 pm
I have the Water level expansion unit installed and working well.
My code uses the following to delay the turning on of the skimmer after feeding mode.
My ATO pump is controlled by Port2, and I would like it also to be delayed like the skimmer. So I used the following code.
The result was that the ATO port 2 was in a permanent ON state.
I am wondering if there should only be one DelayOn function, and it should contain both ports. If so I am not sure what the syntax should be?
My code uses the following to delay the turning on of the skimmer after feeding mode.
Code: Select all
// Delay turning Skimmer back on
ReefAngel.Relay.DelayedOn( Port1,60 );
Code: Select all
// Delay turning Skimmer back on
ReefAngel.Relay.DelayedOn( Port1,60 );
// Delay turning ATO back on
ReefAngel.Relay.DelayedOn( Port2,60 );
I am wondering if there should only be one DelayOn function, and it should contain both ports. If so I am not sure what the syntax should be?