Jebao Reef Crest question

Basic / Standard Reef Angel hardware
Post Reply
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Jebao Reef Crest question

Post by Smotz »

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%?
ReeferBee
Posts: 55
Joined: Wed May 08, 2013 6:23 pm
Location: North GA

Re: Jebao Reef Crest question

Post by ReeferBee »

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
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

Re: Jebao Reef Crest question

Post by lnevo »

Curious if your pump is set to sync or antisync?
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: Jebao Reef Crest question

Post by rimai »

If you are using the dosing pump class, it is hard coded to +/-10% for lagoon and +/-20% for reefcrest
Roberto.
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

Re: Jebao Reef Crest question

Post by lnevo »

DCPump class you mean...your getting ahead of me...need to put that bit together :)
ReeferBee
Posts: 55
Joined: Wed May 08, 2013 6:23 pm
Location: North GA

Re: Jebao Reef Crest question

Post by ReeferBee »

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 + - ?
Barry

Current tank info: 150g mixed reef

"Some of the worst mistakes of my life were hair cuts" -Jim Morrison
ReeferBee
Posts: 55
Joined: Wed May 08, 2013 6:23 pm
Location: North GA

Re: Jebao Reef Crest question

Post by ReeferBee »

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
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: Jebao Reef Crest question

Post by Smotz »

+1

Sent from my SCH-I605 using Tapatalk 4 Beta
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: Jebao Reef Crest question

Post by rimai »

Where are you putting 12?
Roberto.
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: Jebao Reef Crest question

Post by Smotz »

rimai wrote:Where are you putting 12?
wpWavStr=45;
wpWavOff=12;
ReefAngel.DCPump.SetMode( ReefCrest,wpWavStr,wpWavOff );
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: Jebao Reef Crest question

Post by rimai »

This is the SetMode function for the DCPump class:

Code: Select all

void DCPumpClass::SetMode(byte mode, byte speed, byte duration)
Roberto.
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: Jebao Reef Crest question

Post by Smotz »

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 );
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: Jebao Reef Crest question

Post by rimai »

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.
Roberto.
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: Jebao Reef Crest question

Post by Smotz »

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.
what is the correct way to use reefcrest in custom mode?
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

Re: Jebao Reef Crest question

Post by lnevo »

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 :)
rimai
Posts: 12857
Joined: Fri Mar 18, 2011 6:47 pm

Re: Jebao Reef Crest question

Post by rimai »

Isn't it just going to confuse people?
Set offset with the duration field?
Roberto.
Smotz
Posts: 401
Joined: Sat Mar 30, 2013 5:02 pm
Location: CT, USA

Re: Jebao Reef Crest question

Post by Smotz »

rimai wrote:Isn't it just going to confuse people?
Set offset with the duration field?
I know I'm confused.

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.
User avatar
lnevo
Posts: 5422
Joined: Fri Jul 20, 2012 9:42 am

Re: Jebao Reef Crest question

Post by lnevo »

rimai wrote:Isn't it just going to confuse people?
Set offset with the duration field?
I don't know... makes perfect sense to me. :)
Post Reply