Controlers

reef keeper

Super Active Member
Joined
Nov 19, 2014
Location
Hamilton, Ontario
Check out brs on YouTube. I got all my programming from them. Only thing I can't get is a 15 minute delay on my ATO after feed mode. Anybody wanna throw that code out lol
 

reef keeper

Super Active Member
Joined
Nov 19, 2014
Location
Hamilton, Ontario
I want it to wait 15 minutes after the skimmer comes on to turn the outlet back on

OSC 000:00/000:30/000:30 Then ON
If FeedA 005 Then OFF
Defer 010:00 Then OFF
 

Pistol

Super Active Member
Donor
Joined
Aug 16, 2012
Location
Corunna
I want it to wait 15 minutes after the skimmer comes on to turn the outlet back on

OSC 000:00/000:30/000:30 Then ON
If FeedA 005 Then OFF
Defer 010:00 Then OFF
Change If FeedA 005 Then OFF to If FeedA 015 Then OFF and remove the defer statement.
 

Pistol

Super Active Member
Donor
Joined
Aug 16, 2012
Location
Corunna
Actually, might need to see your skimmer code to.
That last code will keep it off for 15 min after your feed cycle ends.
 

Pistol

Super Active Member
Donor
Joined
Aug 16, 2012
Location
Corunna
Skimmer code

Fallback ON
OSC 000:00/010:00/000:00 Then ON
If FeedA 005 Then OFF
If FeedB 120 Then OFF
The OSC statement does nothing here
I would
Fallback ON
Set ON
If FeedA 005( which means it stays off for 5 min after your feed cycle has ended)
If FeedB 120(which means it stays off for 120 min after your feed cycle has ended)

And your ato
If FeedA 020 (which means it will stay off 20 min after your feed cycle has ended and 15 min after your skimmer has started)
 
Top