Please check if my dc pump code is correct

Basic / Standard Reef Angel hardware
Post Reply
Ridwaan
Posts: 32
Joined: Thu Apr 03, 2014 11:37 pm

Please check if my dc pump code is correct

Post 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
}
Ridwaan
Posts: 32
Joined: Thu Apr 03, 2014 11:37 pm

Re: Please check if my dc pump code is correct

Post by Ridwaan »

Im not sure about the indicator for sync and antisync on the Reefcrest and nutrient transport modes int he code above.
Post Reply