Search found 54 matches
- Mon Oct 07, 2013 7:09 am
- Forum: Tutorials
- Topic: Controlling Jebao/Tunze/Speedwave pumps
- Replies: 66
- Views: 66529
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.
- Sun Oct 06, 2013 9:43 pm
- Forum: Tutorials
- Topic: Controlling Jebao/Tunze/Speedwave pumps
- Replies: 66
- Views: 66529
Re: Controlling Jebao/Tunze/Speedwave pumps
Anybody?ReeferBee wrote:Is it odd that both of my float switch ports run my wp40?
I don't want to kill the pump if it's only supposed to be ran on a particular float switch port.
- Thu Oct 03, 2013 9:43 pm
- Forum: Tutorials
- Topic: Controlling Jebao/Tunze/Speedwave pumps
- Replies: 66
- Views: 66529
Re: Controlling Jebao/Tunze/Speedwave pumps
Is it odd that both of my float switch ports run my wp40?
- 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: 6491
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.
- Thu Oct 03, 2013 1:26 pm
- Forum: Tutorials
- Topic: Controlling Jebao/Tunze/Speedwave pumps
- Replies: 66
- Views: 66529
Re: Controlling Jebao/Tunze/Speedwave pumps
Got it working. Thanks!
- 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: 6491
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...
- Wed Oct 02, 2013 10:12 pm
- Forum: Tutorials
- Topic: Controlling Jebao/Tunze/Speedwave pumps
- Replies: 66
- Views: 66529
Re: Controlling Jebao/Tunze/Speedwave pumps
above the "place custom code below here"? Thanks again Roberto
- Wed Oct 02, 2013 9:01 pm
- Forum: Tutorials
- Topic: Controlling Jebao/Tunze/Speedwave pumps
- Replies: 66
- Views: 66529
Re: Controlling Jebao/Tunze/Speedwave pumps
Where do I post this in my code? Thanks!rimai wrote:Code: Select all
pinMode(lowATOPin,OUTPUT); analogWrite(lowATOPin,ReefCrestMode(60,20,true)*2.55);
- Mon Sep 16, 2013 4:54 pm
- Forum: Standard
- Topic: Dimmable lunar hub ?
- Replies: 1
- Views: 1786
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.
- Sun Aug 25, 2013 9:42 pm
- Forum: For New Members
- Topic: How do I change the time?
- Replies: 5
- Views: 4049
Re: How do I change the time?
in menu go to
start up
then
date / time
you can set it there
start up
then
date / time
you can set it there
- Mon Aug 19, 2013 3:11 pm
- Forum: Standard
- Topic: Looking to buy RA - have basic hardware questions...
- Replies: 6
- Views: 3301
Re: Looking to buy RA - have basic hardware questions...
Yeah your lights
IDK about the reef breeders fixtures.
IDK about the reef breeders fixtures.
- Mon Aug 19, 2013 12:29 pm
- Forum: Standard
- Topic: Looking to buy RA - have basic hardware questions...
- Replies: 6
- Views: 3301
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...
- Fri Jul 05, 2013 4:38 pm
- Forum: Standard
- Topic: JEBO WP-40
- Replies: 407
- Views: 343592
Re: JEBO WP-40
Yes
- Mon Jul 01, 2013 5:18 pm
- Forum: Standard
- Topic: JEBO WP-40
- Replies: 407
- Views: 343592
Re: JEBO WP-40
I'm loving BhazardMode and Cosmith71's Else mode. Thank you guys very much!!
I've found that
makes a perfect size wave for my 4' tank.
I've found that
Code: Select all
( millis()%1250<575?70:0);
( millis()%1250<675?0:70);
- Sun Jun 30, 2013 3:11 pm
- Forum: Development Libraries
- Topic: Wave patterns
- Replies: 136
- Views: 287030
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...
- Sun Jun 30, 2013 8:00 am
- Forum: Development Libraries
- Topic: Wave patterns
- Replies: 136
- Views: 287030
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....
- Fri Jun 28, 2013 3:53 pm
- Forum: Standard
- Topic: Updated and trouble with code
- Replies: 2
- Views: 2152
Re: Updated and trouble with code
I got it figured out!
- Fri Jun 28, 2013 1:58 pm
- Forum: Standard
- Topic: Updated and trouble with code
- Replies: 2
- Views: 2152
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...
- Tue Jun 25, 2013 10:29 pm
- Forum: Addons
- Topic: My Jebao "Else" mode
- Replies: 123
- Views: 67441
Re: My Jebao "Else" mode
Thank you! Can't wait to try it out.
- Mon Jun 24, 2013 3:17 pm
- Forum: Standard
- Topic: Jebao Reef Crest question
- Replies: 17
- Views: 9165
Re: Jebao Reef Crest question
I don't know what dcpump class is lol
- Mon Jun 24, 2013 3:15 pm
- Forum: Standard
- Topic: Jebao Reef Crest question
- Replies: 17
- Views: 9165
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 + - ?
- Mon Jun 24, 2013 2:01 pm
- Forum: Standard
- Topic: Jebao Reef Crest question
- Replies: 17
- Views: 9165
Re: Jebao Reef Crest question
Good question. Same thing with mine, not sure why this happens.
- Sat Jun 15, 2013 10:31 am
- Forum: Standard
- Topic: JEBO WP-40
- Replies: 407
- Views: 343592
Re: JEBO WP-40
Oops
- Thu Jun 13, 2013 11:22 am
- Forum: Standard
- Topic: Dimensions!?
- Replies: 10
- Views: 6037
Re: Dimensions!?
If no ones responded by the time I get home I'll take measurements for you Josh
- Fri Jun 07, 2013 9:08 pm
- Forum: Standard
- Topic: JEBO WP-40
- Replies: 407
- Views: 343592
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.
- Fri Jun 07, 2013 2:06 pm
- Forum: Addons
- Topic: Wp40 feed mode
- Replies: 5
- Views: 2277
Re: Wp40 feed mode
Code: Select all
if( ReefAngel.DisplayedMenu==FEEDING_MODE )
{
ReefAngel.PWM.SetActinic(0);
ReefAngel.PWM.SetDaylight(0);
}
- Fri Jun 07, 2013 1:53 pm
- Forum: Standard
- Topic: Jebo wp40?
- Replies: 9
- Views: 5309
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.
RA makes / sells a cable that allows you to control the speed of the pump. Check the store, its the Jebao cable.
- Thu Jun 06, 2013 9:46 am
- Forum: Addons
- Topic: Bluetooth Attachment
- Replies: 199
- Views: 328279
Re: Bluetooth Attachment
What all can be done over Bluetooth? Thanks
- Tue Jun 04, 2013 7:25 pm
- Forum: Standard
- Topic: JEBO WP-40
- Replies: 407
- Views: 343592
Re: JEBO WP-40
So by replacing the x:y with 80:0 you are setting the pumps to 80% power?
- Sun Jun 02, 2013 4:45 pm
- Forum: Tutorials
- Topic: Controlling Jebao/Tunze/Speedwave pumps
- Replies: 66
- Views: 66529
Re: Controlling Jebao/Tunze pumps
Do you have the harness for it? What ports do you have the wp40 hooked up to?