APEX Programming - OFF > ON for 5 minutes then OFF

psumms

Active Member
View Badges
Joined
Sep 11, 2019
Messages
184
Reaction score
134
Location
United Kingdom
Rating - 0%
0   0   0
THought I was pretty good with my APEX knowledge, for some reason I can't get my head around this one!

I need an outlet OFF then when RO-CONTROL comes on, to have the outlet come on for four minutes then OFF. Simple! No problem if the SET is ON but I need the socket to be OFF for the all by four minutes every few days it will be on! (I know the below isn't valid BTW, its an example of what I need it to do!

Fallback OFF
Set OFF
If Output RO-CONTROL = ON Then ON
Defer 004:00 Then OFF
 

Brett S

Valuable Member
View Badges
Joined
Nov 28, 2016
Messages
1,062
Reaction score
1,373
Location
Orlando
Rating - 0%
0   0   0
You can do this, but you’ll need to use a virtual outlet as well.

OUTLET:
Fallback OFF
Set OFF
IF Output RO-CONTROL=ON Then ON
IF Output VIRTUAL=OFF Then OFF

VIRTUAL:
Set ON
IF Output RO-CONTROL=ON Then OFF
DEFER 004:00 Then OFF

This will turn the outlet on when RO-CONTROL goes on. The virtual outlet will turn off when RO-CONTROL goes on, but because of the DEFER command it won’t actually turn off for 4 minutes after RO-CONTROL has been on. So then after four minutes VIRTUAL turns off and that will turn off the actual outlet.
 

Caring for your picky eaters: What do you feed your finicky fish?

  • Live foods

    Votes: 20 31.3%
  • Frozen meaty foods

    Votes: 52 81.3%
  • Soft pellets

    Votes: 10 15.6%
  • Masstick (or comparable)

    Votes: 7 10.9%
  • Other

    Votes: 3 4.7%
Back
Top