Jabeo WP40 - Reefcrest mode won't work
Posted: Sat Oct 12, 2013 8:55 am
Hi, I know this topic has been posted alot, but I've searched through as many forums as I can find and I can't quite find exactly what I need in the code to get it to work.
I just purchased one Jabeo WP40 pump from Reef Angel with the adapter cable included. Right now I have the AC power plugged into Port6 of the Relay Box, and the 2pin adapter plugged into the Actinic PWM port on the side of the Relay Box. I have set Port6 set to always on.
I found this code in the forums and I have included this code in the loop section...
Is there anything else I need to add to get it to work or do I need to change the code?
Thank you ahead of time.
I just purchased one Jabeo WP40 pump from Reef Angel with the adapter cable included. Right now I have the AC power plugged into Port6 of the Relay Box, and the 2pin adapter plugged into the Actinic PWM port on the side of the Relay Box. I have set Port6 set to always on.
I found this code in the forums and I have included this code in the loop section...
Code: Select all
void loop()
{
ReefAngel.SingleATO( true,Port1,240,0 );
ReefAngel.StandardLights( Port2,20,30,8,30 );
ReefAngel.StandardLights( Port3,8,30,20,30 );
ReefAngel.StandardLights( Port4,10,0,19,0 );
ReefAngel.StandardHeater( Port5,790,810 );
////// Place your custom code below here
ReefAngel.PWM.SetDaylight( ReefCrestMode(80,20,true) ); // ReefCrest at 80% +/- 20% on sync mode
ReefAngel.PWM.SetActinic( ReefCrestMode(80,20,true) ); // ReefCrest at 80% +/- 20% on anti-sync mode
////// Place your custom code above here
// This should always be the last line
ReefAngel.Portal( "rschneider77" );
ReefAngel.ShowInterface();
}
Thank you ahead of time.