Page 1 of 1

Please check if my dc pump code is correct

Posted: Wed Nov 05, 2014 7:15 am
by Ridwaan
Hi..

Please check if my dc pump code is correct...
Not sure of what the nutrient transport mode does, but sound interesting..

Code: Select all

{
if (hour()>=7 && hour()<=11)
ReefAngel.DCPump.SetMode( LongPulse,40,30 ); // Long pulse at 40% with 30s pulse on sync mode
}
if (hour()>=11 && hour()<=15)
{
  ReefAngel.DCPump.SetMode( ReefCrest, 80, 1 ); // ReefCrest at 80% + - 20 on antisync mode
}
if (hour()>=15 && hour()<=18)
{
  ReefAngel.DCPump.SetMode( NutrientTransport, 90, 1 ); // Nutrient Transport on antisync mode
}
if (hour()>=18 && hour()<=20)
{
  ReefAngel.DCPump.SetMode( LongPulse,80,50 ); // long pulse gyre flow at 75% + - 50 on antisync mode
}
if (hour()>=20 && hour()<=7)
{
  ReefAngel.DCPump.SetMode( Constant,40,70 ); // Tidal Swell at 40% on sync mode
}

Re: Please check if my dc pump code is correct

Posted: Thu Nov 06, 2014 1:26 am
by Ridwaan
Im not sure about the indicator for sync and antisync on the Reefcrest and nutrient transport modes int he code above.