I am new to this so please excuse the basic question:
I have one WP40 connected to the RA using a dimmer port. I would like a gentle flow during the night, a more vigorous flow in the day with a hour of nutrient transport. Here is the code:
Code: Select all
void loop()
{
ReefAngel.StandardHeater( Port3,250,270 );
ReefAngel.StandardHeater( Port4,250,270 );
ReefAngel.Relay.DelayedOn( Port5,10 );
ReefAngel.WavemakerRandom( Port6,60,100 );
ReefAngel.DCPump.UseMemory = false;
ReefAngel.DCPump.SetMode( ReefCrest,30,30 );
ReefAngel.DCPump.DaylightChannel = Sync;
// ReefAngel.DCPump.ActinicChannel = None;
////// Place your custom code below here
////// Place your custom code above here
if (hour()>=21 || hour()<8)
{
// ReefAngel.RF.UseMemory=false;
ReefAngel.DCPump.SetMode(Lagoon,30,90);
// ReefAngel.DCPump.DaylightChannel = Sync;
ReefAngel.Relay.Off( Port6 );
}
else if (hour()>=9 && hour()<10)
{
// ReefAngel.RF.UseMemory=false;
ReefAngel.DCPump.SetMode( NutrientTransport,60,10 );
ReefAngel.DCPump.DaylightChannel = Sync;
}
else
{
// ReefAngel.RF.UseMemory=false;
ReefAngel.DCPump.SetMode(ReefCrest,40,30);
// ReefAngel.DCPump.DaylightChannel = Sync;
ReefAngel.WavemakerRandom( Port6,60,100 );
};
Now:
[*]Could I have a speed as low as 30 in the Lagoon mode? - The pump does not run.
[*]On the RA display and the portal I get an RF Expansion module readout with Vortech and Radion data as wel as a DC Pump readout. Did I somehow switched this on in the code?
[*]What does
Code: Select all
// ReefAngel.DCPump.DaylightChannel = Sync;
Code: Select all
// ReefAngel.RF.UseMemory=false;
Thank you
Fanie