Quick Apex programming question for a water station pump

Slevin007

Active Member
View Badges
Joined
Mar 1, 2014
Messages
180
Reaction score
60
Location
VA
Rating - 0%
0   0   0
I want to make sure this pump, which I am using to feed fresh water to a bucket when I need it, is only on when I manually turn it on. This is the simple program I have

Fallback OFF
Set OFF

I’m assuming this is correct but I want to make sure it can’t somehow turn on and burn up the motor.

Thanks in advance
 

n2585722

2500 Club Member
View Badges
Joined
Jun 17, 2013
Messages
4,815
Reaction score
2,775
Location
Cedar Park, Tx
Rating - 0%
0   0   0
I want to make sure this pump, which I am using to feed fresh water to a bucket when I need it, is only on when I manually turn it on. This is the simple program I have

Fallback OFF
Set OFF

I’m assuming this is correct but I want to make sure it can’t somehow turn on and burn up the motor.

Thanks in advance
I added a manual valve on mine and also have a push button to press to turn the pumps on. I don't use a Apex so I cannot comment on that but it could not hurt to install a manual valve to keep it from emptying the container if it accidentally gets turned on.

IMG_8498.jpeg
 
OP
OP
Slevin007

Slevin007

Active Member
View Badges
Joined
Mar 1, 2014
Messages
180
Reaction score
60
Location
VA
Rating - 0%
0   0   0
I added a manual valve on mine and also have a push button to press to turn the pumps on. I don't use a Apex so I cannot comment on that but it could not hurt to install a manual valve to keep it from emptying the container if it accidentally gets turned on.

IMG_8498.jpeg
Absolutely a great idea. I have one. This is really just to control the pump once I’ve adjusted the valves. :)
 

All_talk

Active Member
View Badges
Joined
Oct 8, 2019
Messages
398
Reaction score
368
Location
Thorp, WA
Rating - 0%
0   0   0
I want to make sure this pump, which I am using to feed fresh water to a bucket when I need it, is only on when I manually turn it on. This is the simple program I have

Fallback OFF
Set OFF

I’m assuming this is correct but I want to make sure it can’t somehow turn on and burn up the motor.

Thanks in advance
That code is good, it will keep the pump off if the EB832 looses connection with the APEX and when the power first comes on.

You might want to add a max time for the pump to run, this has saved me from many floods when I get distracted or walk away during a water transfer. I use the code below on my transfer pump. I switch the output to AUTO, the pump runs for 9:00 minutes then the output switches to OFF. In my case the 9:00 on time transfers about 2 gallons of water.

Fallback OFF
Set ON
When On > 009:00 Then OFF
 
OP
OP
Slevin007

Slevin007

Active Member
View Badges
Joined
Mar 1, 2014
Messages
180
Reaction score
60
Location
VA
Rating - 0%
0   0   0
That code is good, it will keep the pump off if the EB832 looses connection with the APEX and when the power first comes on.

You might want to add a max time for the pump to run, this has saved me from many floods when I get distracted or walk away during a water transfer. I use the code below on my transfer pump. I switch the output to AUTO, the pump runs for 9:00 minutes then the output switches to OFF. In my case the 9:00 on time transfers about 2 gallons of water.

Fallback OFF
Set ON
When On > 009:00 Then OFF
Thank you so much. And great call on the time limit. I’ll add that now
Thank you
 

TOP 10 Trending Threads

IF YOU HAD TO CHOOSE, WOULD YOU HAVE AN LPS OR SPS DOMINANT REEF TANK?

  • LPS!

    Votes: 94 48.0%
  • SPS!

    Votes: 92 46.9%
  • Other (Please explain in the comments!)

    Votes: 10 5.1%
Back
Top