Page 1 of 1

Coding Jebao RW series pumps

Posted: Tue Feb 16, 2016 9:44 am
by Civics14
So, for the RW pumps since it can run at a lower speed than the WP series and it seems like the ReefAngel DC pump settings are default to a min. 30% since I never see it go below that.

So, how do I program for... let's say else mode for 30% is the median and 15% up/down from there? Because ReefAngel.DCPump.SetMode (Else, 30, 15); is going min. 30 and max 45, when I want min. 15 and max 45.

Also, why can't we get a sticky that explains these pump settings and what they do? The DC Pump thread is if you understand programming, why not have anything in laymen's terms?

Re: Coding Jebao RW series pumps

Posted: Tue Feb 16, 2016 12:53 pm
by rimai
I think you need to change the threshold.
Add this to your setup()

Code: Select all

InternalMemory.DCPumpThreshold_write(15);

Re: Coding Jebao RW series pumps

Posted: Tue Feb 16, 2016 4:00 pm
by lnevo
You should be able to also add a hardcode

ReefAngel.DCPump.Threshold=15;

Re: Coding Jebao RW series pumps

Posted: Fri Feb 19, 2016 11:30 am
by Civics14
Awesome. Thanks everyone.