Jebao Reef Crest question
Jebao Reef Crest question
I have my reefcrest set to 45,12 - why does it go as low as 25% - shouldn't this give me a min of 33% and a max of 57%?
Re: Jebao Reef Crest question
Good question. Same thing with mine, not sure why this happens.
Barry
Current tank info: 150g mixed reef
"Some of the worst mistakes of my life were hair cuts" -Jim Morrison
Current tank info: 150g mixed reef
"Some of the worst mistakes of my life were hair cuts" -Jim Morrison
Re: Jebao Reef Crest question
Curious if your pump is set to sync or antisync?
Re: Jebao Reef Crest question
If you are using the dosing pump class, it is hard coded to +/-10% for lagoon and +/-20% for reefcrest
Roberto.
Re: Jebao Reef Crest question
DCPump class you mean...your getting ahead of me...need to put that bit together
Re: Jebao Reef Crest question
Daylight is true
Actinic is false
So anti sync... Right?
it's pre set to 20 so if you put 12 like the OP it's combined? Like 32 + - ?
Actinic is false
So anti sync... Right?
it's pre set to 20 so if you put 12 like the OP it's combined? Like 32 + - ?
Barry
Current tank info: 150g mixed reef
"Some of the worst mistakes of my life were hair cuts" -Jim Morrison
Current tank info: 150g mixed reef
"Some of the worst mistakes of my life were hair cuts" -Jim Morrison
Re: Jebao Reef Crest question
I don't know what dcpump class is lol
Barry
Current tank info: 150g mixed reef
"Some of the worst mistakes of my life were hair cuts" -Jim Morrison
Current tank info: 150g mixed reef
"Some of the worst mistakes of my life were hair cuts" -Jim Morrison
Re: Jebao Reef Crest question
+1
Sent from my SCH-I605 using Tapatalk 4 Beta
Sent from my SCH-I605 using Tapatalk 4 Beta
Re: Jebao Reef Crest question
wpWavStr=45;rimai wrote:Where are you putting 12?
wpWavOff=12;
ReefAngel.DCPump.SetMode( ReefCrest,wpWavStr,wpWavOff );
Re: Jebao Reef Crest question
This is the SetMode function for the DCPump class:
Code: Select all
void DCPumpClass::SetMode(byte mode, byte speed, byte duration)
Roberto.
Re: Jebao Reef Crest question
rimai wrote:This is the SetMode function for the DCPump class:Code: Select all
void DCPumpClass::SetMode(byte mode, byte speed, byte duration)
can you elaborate how i would use that base on my code?
ReefAngel.DCPump.SetMode( ReefCrest,wpWavStr,wpWavOff );
Re: Jebao Reef Crest question
You can't.
Like I said.
Reef Crest is hard coded to 20% and Lagoon to 10%.
If you want to do your own function, you will need to use the custom mode.
Like I said.
Reef Crest is hard coded to 20% and Lagoon to 10%.
If you want to do your own function, you will need to use the custom mode.
Roberto.
Re: Jebao Reef Crest question
what is the correct way to use reefcrest in custom mode?rimai wrote:You can't.
Like I said.
Reef Crest is hard coded to 20% and Lagoon to 10%.
If you want to do your own function, you will need to use the custom mode.
Re: Jebao Reef Crest question
Code: Select all
if (ReefAngel.DCPump.Mode==Custom) {
ReefAngel.DCPump.UseMemory=false;
ReefAngel.PWM.SetDaylight(ReefCrestMode(ReefAngel.DCPump.Speed,ReefAngel.DCPump.Duration, ReefAngel.DCPump.DaylightChannel-1));
ReefAngel.PWM.SetActinic(ReefCrestMode(ReefAngel.DCPump.Speed,ReefAngel.DCPump.Duration, ReefAngel.DCPump.ActinicChannel-1));
} else {
ReefAngel.DCPump.UseMemory=true;
}
although Roberto, I think we should allow Duration to be part of the default mode for ReefCrest. You could say ReefAngel.DCPump.Duration for Lagoon and ReefAngel.DCPump.Duration*2 for ReefCrest. That's my $.02 Just seems a waste of custom mode :)
Re: Jebao Reef Crest question
Isn't it just going to confuse people?
Set offset with the duration field?
Set offset with the duration field?
Roberto.
Re: Jebao Reef Crest question
I know I'm confused.rimai wrote:Isn't it just going to confuse people?
Set offset with the duration field?
I set my reefcrest to a certain strength depending on the hour. I wanted to take advantage of the new class and just set my portal settings to custom.
Re: Jebao Reef Crest question
I don't know... makes perfect sense to me.rimai wrote:Isn't it just going to confuse people?
Set offset with the duration field?