ReefCrest DC Pump power question
Posted: Sat Jan 20, 2018 11:17 am
Question. I'm looking at the portal and I see my Actinic channel running at 64 % and my Daylight channel running at 40%. In my code I have it set to ReefCrest 50,10 so I assumed, maybe incorrectly, that the mode starts at 50% and will flucuate +- 10% - so a minimum of 40 to a max of 60. I'm seeing it has high as 70% so wanted to see if I am understanding this or maybe something is over riding it. The portal shows the correct ReefCrest settings on the DC Pump graph.
if (hour()>=22 || hour()<8)
{
// Sleep mode - slow things down
ReefAngel.DCPump.SetMode( ReefCrest,40,10 );
}
else if (hour()>=8 && hour()<22){
ReefAngel.DCPump.SetMode( ReefCrest,50,10 );
}
if (hour()>=22 || hour()<8)
{
// Sleep mode - slow things down
ReefAngel.DCPump.SetMode( ReefCrest,40,10 );
}
else if (hour()>=8 && hour()<22){
ReefAngel.DCPump.SetMode( ReefCrest,50,10 );
}