Search found 54 matches

by ReeferBee
Mon Oct 07, 2013 7:09 am
Forum: Tutorials
Topic: Controlling Jebao/Tunze/Speedwave pumps
Replies: 66
Views: 61947

Re: Controlling Jebao/Tunze/Speedwave pumps

That's what I thought. I cannot tell a difference between the two ports. Is the low port the one on the right? Both seem to run the wp40 the same. I'll post my code. Maybe I have it in the wrong place.
by ReeferBee
Sun Oct 06, 2013 9:43 pm
Forum: Tutorials
Topic: Controlling Jebao/Tunze/Speedwave pumps
Replies: 66
Views: 61947

Re: Controlling Jebao/Tunze/Speedwave pumps

ReeferBee wrote:Is it odd that both of my float switch ports run my wp40?
Anybody?

I don't want to kill the pump if it's only supposed to be ran on a particular float switch port.
by ReeferBee
Thu Oct 03, 2013 9:43 pm
Forum: Tutorials
Topic: Controlling Jebao/Tunze/Speedwave pumps
Replies: 66
Views: 61947

Re: Controlling Jebao/Tunze/Speedwave pumps

Is it odd that both of my float switch ports run my wp40?
by ReeferBee
Thu Oct 03, 2013 1:29 pm
Forum: How do I code ...
Topic: Can I code my 2 jebao wp40's to run at different speeds?
Replies: 9
Views: 6263

Re: Can I code my 2 jebao wp40's to run at different speeds?

I'm on the older library, my code looks different. I'm sure someone else can chime in and help you.
by ReeferBee
Thu Oct 03, 2013 1:26 pm
Forum: Tutorials
Topic: Controlling Jebao/Tunze/Speedwave pumps
Replies: 66
Views: 61947

Re: Controlling Jebao/Tunze/Speedwave pumps

Got it working. Thanks!
by ReeferBee
Thu Oct 03, 2013 1:25 pm
Forum: How do I code ...
Topic: Can I code my 2 jebao wp40's to run at different speeds?
Replies: 9
Views: 6263

Re: Can I code my 2 jebao wp40's to run at different speeds?

if (hour()<8) { ReefAngel.PWM.SetActinic(0); ReefAngel.PWM.SetDaylight(0); } else if (hour()>=8 && hour()<10) ReefAngel.DCPump.SetMode( ShortPulse,80,20 ); else if (hour()>=10 && hour()<12) ReefAngel.DCPump.SetMode( LongPulse,65,5 ); else if (hour()>=12 && hour()<14) ReefAng...
by ReeferBee
Wed Oct 02, 2013 10:12 pm
Forum: Tutorials
Topic: Controlling Jebao/Tunze/Speedwave pumps
Replies: 66
Views: 61947

Re: Controlling Jebao/Tunze/Speedwave pumps

above the "place custom code below here"? Thanks again Roberto
by ReeferBee
Wed Oct 02, 2013 9:01 pm
Forum: Tutorials
Topic: Controlling Jebao/Tunze/Speedwave pumps
Replies: 66
Views: 61947

Re: Controlling Jebao/Tunze/Speedwave pumps

rimai wrote:

Code: Select all

pinMode(lowATOPin,OUTPUT);
analogWrite(lowATOPin,ReefCrestMode(60,20,true)*2.55);
Where do I post this in my code? Thanks!
by ReeferBee
Mon Sep 16, 2013 4:54 pm
Forum: Standard
Topic: Dimmable lunar hub ?
Replies: 1
Views: 1682

Dimmable lunar hub ?

I use both my PWM for running my wp40. My question is can I hook this up to one of my float switch ports, or would I need a dimming expansion? Thanks in advance.
by ReeferBee
Sun Aug 25, 2013 9:42 pm
Forum: For New Members
Topic: How do I change the time?
Replies: 5
Views: 3849

Re: How do I change the time?

in menu go to
start up
then
date / time
you can set it there
by ReeferBee
Mon Aug 19, 2013 3:11 pm
Forum: Standard
Topic: Looking to buy RA - have basic hardware questions...
Replies: 6
Views: 3127

Re: Looking to buy RA - have basic hardware questions...

Yeah your lights

IDK about the reef breeders fixtures.
by ReeferBee
Mon Aug 19, 2013 12:29 pm
Forum: Standard
Topic: Looking to buy RA - have basic hardware questions...
Replies: 6
Views: 3127

Re: Looking to buy RA - have basic hardware questions...

1. Yes, you will need two cables. 2. The WP40 does not need to plug into the relay box, the cables connect to the side of relay box, but they do not need use an outlet. 3. If you have different Highs and lows on the heater they will need there own ports / outlets. otherwise you can split the one out...
by ReeferBee
Fri Jul 05, 2013 4:38 pm
Forum: Standard
Topic: JEBO WP-40
Replies: 407
Views: 323584

Re: JEBO WP-40

Yes
by ReeferBee
Mon Jul 01, 2013 5:18 pm
Forum: Standard
Topic: JEBO WP-40
Replies: 407
Views: 323584

Re: JEBO WP-40

I'm loving BhazardMode and Cosmith71's Else mode. Thank you guys very much!!

I've found that

Code: Select all

 
( millis()%1250<575?70:0);
( millis()%1250<675?0:70);
makes a perfect size wave for my 4' tank.
by ReeferBee
Sun Jun 30, 2013 3:11 pm
Forum: Development Libraries
Topic: Wave patterns
Replies: 136
Views: 262551

Re: Wave patterns

Try this, although Nutrient export needs to be ran 2.5 hours to complete the mode. if (hour()>=16 && hour()<18) { ReefAngel.PWM.SetDaylight( NutrientTransportMode(77,90,3000,true) ); // Nutrient Transport on sync mode ReefAngel.PWM.SetActinic( NutrientTransportMode(77,90,3000,false) ); // Nu...
by ReeferBee
Sun Jun 30, 2013 8:00 am
Forum: Development Libraries
Topic: Wave patterns
Replies: 136
Views: 262551

Re: Wave patterns

Hi Is it possible to have a both wave patters for one pump? I want it to run nutrition export for 2 hrs a day then go back into the reef crest mode. Is this possible? If yes how can this be done? Thanks :) Yep you can. Which wave patterns are you trying to run, and at what times? Here's an example....
by ReeferBee
Fri Jun 28, 2013 3:53 pm
Forum: Standard
Topic: Updated and trouble with code
Replies: 2
Views: 2046

Re: Updated and trouble with code

I got it figured out!
by ReeferBee
Fri Jun 28, 2013 1:58 pm
Forum: Standard
Topic: Updated and trouble with code
Replies: 2
Views: 2046

Updated and trouble with code

Ive updated my library and now my code isn't working. This is my current code, which was working until i just updated. Thanks in advance for any help! #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi.h> #include <Wire.h> #include <OneWire.h> #include <Time.h> #include <DS1307RT...
by ReeferBee
Tue Jun 25, 2013 10:29 pm
Forum: Addons
Topic: My Jebao "Else" mode
Replies: 123
Views: 61635

Re: My Jebao "Else" mode

Thank you! Can't wait to try it out.
by ReeferBee
Mon Jun 24, 2013 3:17 pm
Forum: Standard
Topic: Jebao Reef Crest question
Replies: 17
Views: 8624

Re: Jebao Reef Crest question

I don't know what dcpump class is lol
by ReeferBee
Mon Jun 24, 2013 3:15 pm
Forum: Standard
Topic: Jebao Reef Crest question
Replies: 17
Views: 8624

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 + - ?
by ReeferBee
Mon Jun 24, 2013 2:01 pm
Forum: Standard
Topic: Jebao Reef Crest question
Replies: 17
Views: 8624

Re: Jebao Reef Crest question

Good question. Same thing with mine, not sure why this happens.
by ReeferBee
Sat Jun 15, 2013 10:31 am
Forum: Standard
Topic: JEBO WP-40
Replies: 407
Views: 323584

Re: JEBO WP-40

Oops
by ReeferBee
Thu Jun 13, 2013 11:22 am
Forum: Standard
Topic: Dimensions!?
Replies: 10
Views: 5747

Re: Dimensions!?

If no ones responded by the time I get home I'll take measurements for you Josh
by ReeferBee
Fri Jun 07, 2013 9:08 pm
Forum: Standard
Topic: JEBO WP-40
Replies: 407
Views: 323584

Re: JEBO WP-40

Has anyone figured out how to replicate the else mode? Something that consist of ramping speeds up and down with some short and long pulse mixed in. I really liked the randomness of it.
by ReeferBee
Fri Jun 07, 2013 2:06 pm
Forum: Addons
Topic: Wp40 feed mode
Replies: 5
Views: 2111

Re: Wp40 feed mode

Code: Select all

if( ReefAngel.DisplayedMenu==FEEDING_MODE )
 {
   ReefAngel.PWM.SetActinic(0);
   ReefAngel.PWM.SetDaylight(0);
}
depending on which pwm port your wp40 is connected to you may need to take away daylight or actinic.
by ReeferBee
Fri Jun 07, 2013 1:53 pm
Forum: Standard
Topic: Jebo wp40?
Replies: 9
Views: 5041

Re: Jebo wp40?

No speed control on the stock controller

RA makes / sells a cable that allows you to control the speed of the pump. Check the store, its the Jebao cable.
by ReeferBee
Thu Jun 06, 2013 9:46 am
Forum: Addons
Topic: Bluetooth Attachment
Replies: 199
Views: 297362

Re: Bluetooth Attachment

What all can be done over Bluetooth? Thanks
by ReeferBee
Tue Jun 04, 2013 7:25 pm
Forum: Standard
Topic: JEBO WP-40
Replies: 407
Views: 323584

Re: JEBO WP-40

So by replacing the x:y with 80:0 you are setting the pumps to 80% power?
by ReeferBee
Sun Jun 02, 2013 4:45 pm
Forum: Tutorials
Topic: Controlling Jebao/Tunze/Speedwave pumps
Replies: 66
Views: 61947

Re: Controlling Jebao/Tunze pumps

Do you have the harness for it? What ports do you have the wp40 hooked up to?