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.