Return Pump Ramp Start when Turned On

jasonamyers

Well-Known Member
View Badges
Joined
Jun 9, 2016
Messages
563
Reaction score
469
Rating - 0%
0   0   0
I want a programmable return pump to have a soft start whenever it is turned on. I created a ramp profile, but I'm struggling to figure out how to have it activate when the pump is turned on initially. I was hoping that I could have a set of statements like...

fallback on
set on
if outlet pump on then set ramp_profile
defer 5
set normal_profile

Cheers,
Jason
 

Brew12

Electrical Gru
View Badges
Joined
Aug 14, 2016
Messages
22,488
Reaction score
61,034
Location
Decatur, AL
Rating - 0%
0   0   0
I want a programmable return pump to have a soft start whenever it is turned on. I created a ramp profile, but I'm struggling to figure out how to have it activate when the pump is turned on initially. I was hoping that I could have a set of statements like...

fallback on
set on
if outlet pump on then set ramp_profile
defer 5
set normal_profile

Cheers,
Jason
I've never tried to use a defer statement in this manner but I would try this.

defer 05:00 then set normal_profile
 
OP
OP
jasonamyers

jasonamyers

Well-Known Member
View Badges
Joined
Jun 9, 2016
Messages
563
Reaction score
469
Rating - 0%
0   0   0
Thank you for that! I had one additional piece of work (a control port). Here is what I ended up with:

Profile: RampReturn
Type: Ramp
Ramp Time: 3
Start Intensity: 0
End Intensity: 70

Profile: RtnNrmPwr
Type: Pump
Initial Off: 0
On Time: 1
Off Time: 0
Min Intensity: 90
Max Intensity: 90

Outlet: VariosPwr (Variable)
Type: Advanced
Code:
Fallback ON
If Output ReturnRamp = OFF Then RampReturn
If Output ReturnRamp = ON Then RtnNrmPwr

Outlet: ReturnRamp (Virtual)
Type: Advanced
Code:
Set ON
If Output VariosReturn = OFF Then OFF
Defer 003:00 Then ON

Outlet: VariosReturn
Type: Advanced
Code:
Fallback ON
Set ON


This accomplished what I wanted, except my variable speed programming is in RtnNrmPwr instead of in VariosPwr ; however, that is totally livable.
 

Rock solid aquascape: Does the weight of the rocks in your aquascape matter?

  • The weight of the rocks is a key factor.

    Votes: 10 8.9%
  • The weight of the rocks is one of many factors.

    Votes: 41 36.6%
  • The weight of the rocks is a minor factor.

    Votes: 33 29.5%
  • The weight of the rocks is not a factor.

    Votes: 27 24.1%
  • Other.

    Votes: 1 0.9%
Back
Top