Apex programming - Two OSC on one socket

psumms

Active Member
View Badges
Joined
Sep 11, 2019
Messages
184
Reaction score
134
Location
United Kingdom
Rating - 0%
0   0   0
Hi all, I have my RO unit flush for 30 seconds every four hours. I want to increase that to every 30 minutes when my RO pump is running. I currently have the following on my RO pump socket:
Fallback ON
OSC 000:00/000:30/180:00 Then ON

What i'd like to do is find a solution to add a second line doing something like: (I know the syntax here isn't valid).
If Output RODI-PUMP = ON Then OSC 000:00/000:30/030:00

Any advice for the tidiest way to achieve this?
 

SuncrestReef

That Apex guy
View Badges
Joined
Jan 18, 2018
Messages
4,214
Reaction score
9,214
Location
Oregon
Rating - 0%
0   0   0
You can do this with a virtual output that runs the more frequent OSC code only when the RODI pump is on, then override your current schedule with the status of that virtual output:

RO_Running (virtual output)
-----------------
OSC 000:00/000:30/030:00 Then ON
If Output RODI-PUMP = OFF Then OFF

RO Flush:
--------------
Fallback ON
OSC 000:00/000:30/180:00 Then ON
If Output RO_Running = ON Then ON
 

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

  • Live foods

    Votes: 3 21.4%
  • Frozen meaty foods

    Votes: 10 71.4%
  • Soft pellets

    Votes: 4 28.6%
  • Masstick (or comparable)

    Votes: 0 0.0%
  • Other

    Votes: 2 14.3%
Back
Top