Neptune Apex Programming

110GTJ

New member
Im trying to get my powerhead outlet that my Gyre is plugged into, to turn off during feed mode A. then once feed mode is over defer an extra minute until it comes back on. Also I only want that outlet on from 9:15am-8pm as I don't have a way to control it otherwise Please help!

Fallback ON
Set ON
If Output Return_1 = OFF Then OFF
If Power Apex Off 001 Then OFF
Defer 001:00 Then ON
If FeedA 005 Then OFF
If Time 09:15 to 20:00 Then ON
 
You should be able to copy and paste but try...

If 09:15 to 20:00 ON
If FeedA then Off
Defer 01:00 then ON
 
Fallback on
Set off
If time 09:15 to 20:00 then on
if FeedA 001 then off



Should work.



The 001 after the feed mode will keep the outlet off for an additional 1 minute after the feed mode ends. If you don't SET OFF the time statement is null because the outlet is always on by the set command.
 
Back
Top