Neptune Apex Programming Question

Enrique797

Community Member
View Badges
Joined
Dec 13, 2019
Messages
44
Reaction score
16
Rating - 0%
0   0   0
So I have an Apex ATO and a Dos. The Dos is set to do an auto change between 11:15 and 11:40. I am trying to turn of the ATO during this time but have been unsuccessful. Here is my Configuraiton for the ATO:

Fallback OFF
Set OFF
If Time 11:15 to 11:40 Then OFF
If Swx6_1 OPEN Then ON
If Swx6_2 CLOSED Then OFF
Defer 010:00 Then ON

What am I doing wrong? Also, is there a current manual for the APEX programming language?
 
So I have an Apex ATO and a Dos. The Dos is set to do an auto change between 11:15 and 11:40. I am trying to turn of the ATO during this time but have been unsuccessful. Here is my Configuraiton for the ATO:

Fallback OFF
Set OFF
If Time 11:15 to 11:40 Then OFF
If Swx6_1 OPEN Then ON
If Swx6_2 CLOSED Then OFF
Defer 010:00 Then ON

What am I doing wrong? Also, is there a current manual for the APEX programming language?

Could you be specific about what is not working about that program?

If the issue is that it is still active during the time you want it off, put the time line at the bottom to make it priority. It is read top down.

If the issue is that the water level is staying at Swx6_1, that would be exactly what your code calls for. Stay at Swx6_1, and Swx6_2 is an overfill cutoff. (See, as soon as Swx6_1 is closed, there is no longer anything code that turns on the outlet).
 
Move your If time statement to the second last line before the defer line. The APEX goes with the last line of code that is true, so in your current case it is the status of the switch.
 
Personnel I need to program the DOS to dose 35ml of a medicine every 48 hours but I don't know how to do this program, if anyone can help me I appreciate it. (I don't normally do this, but I have a trip scheduled and I would not like to interrupt the treatment).
 

IF YOU HAD TO TAKE A REEFING EXAM, WOULD YOU PASS?

  • Yes!

    Votes: 32 45.7%
  • Not yet, but I have one that I want to buy in mind!

    Votes: 9 12.9%
  • No.

    Votes: 26 37.1%
  • Other (please explain).

    Votes: 3 4.3%
Back
Top