JEBO WP-40

Basic / Standard Reef Angel hardware
Post Reply
treetopflyn
Posts: 89
Joined: Fri Oct 05, 2012 1:58 am

JEBO WP-40

Post by treetopflyn »

Anyone running one of these with their RA yet? Is it possible to control it?

http://www.fish-street.com/jebo_wp-40_13000l_wave_maker
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

JEBO WP-40

Post by lnevo »

Doubtful other than off/on. I don't see any means to control it unless I'm missing something...
treetopflyn
Posts: 89
Joined: Fri Oct 05, 2012 1:58 am

JEBO WP-40

Post by treetopflyn »

I think it might be because the light sensor slows the pump down at night.
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

JEBO WP-40

Post by lnevo »

Yeah well you can control your lights and watch your pumps spin down :)
jcm2m9
Posts: 26
Joined: Fri Feb 10, 2012 4:11 pm

Re: JEBO WP-40

Post by jcm2m9 »

I believe we can control it, with some modifications per some threads I have read.

It is a dc pump that is controlled by, I believe an internal PWM. There is a big thread on RC about them. Someone is trying to hack a stand alone controller for it.
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

Re: JEBO WP-40

Post by lnevo »

Cool. If there's a way to tap into the PWM interface, then sure. You could use the same functions we have out there for Tunze, but they'd be using PWM ports instead of Analog.
Amos Poh
Posts: 107
Joined: Sun Jul 22, 2012 4:51 am
Location: Singapore

Re: JEBO WP-40

Post by Amos Poh »

Will be cool to see this controlled by RA :)
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: JEBO WP-40

Post by rimai »

Seedlessone sent me this:
http://www.reefcentral.com/forums/showt ... 44&page=12
Looks like this can be modded to be controlled with PWM signals :)
Roberto.
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

JEBO WP-40

Post by lnevo »

Cool
User avatar
DrewPalmer04
Posts: 818
Joined: Tue May 29, 2012 2:12 pm
Location: Christopher, IL

Re: JEBO WP-40

Post by DrewPalmer04 »

Simon is from my old neck of the woods. He will update that forum with progress/reliability. I'm sure of it. I'm impressed with these power heads.
Out for now...but not over.

VISIT: Ethernet Module/Wifi Alternative
treetopflyn
Posts: 89
Joined: Fri Oct 05, 2012 1:58 am

Re: JEBO WP-40

Post by treetopflyn »

rimai wrote:Seedlessone sent me this:
http://www.reefcentral.com/forums/showt ... 44&page=12
Looks like this can be modded to be controlled with PWM signals :)
Awesome!! What would be needed besides the controller?
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: JEBO WP-40

Post by rimai »

I don't know.
You need to check with the guy that hacked it.

Sent from my Galaxy S3 using Tapatalk 2
Roberto.
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: JEBO WP-40

Post by rimai »

Someone requested Vortech modes to be used for this pump or controllable Tunzes.
I went ahead and created ReefCrest to start.

Code: Select all

byte ReefCrestMode(byte s)
{
  static unsigned long lastmillis=millis();
  static int newspeed=s;
  if ((millis()-lastmillis) > 5000)
  {
    int delta;
    delta=random(20);
    if (delta<10) newspeed--; else newspeed++;
    newspeed=constrain(newspeed,s-20,s+20);
    newspeed=constrain(newspeed,0,100);
    lastmillis=millis();
  }  
  return newspeed;
}
Place it at the very end of your code.
To use the function, you can use like this:

Code: Select all

  ReefAngel.PWM.SetDaylight( ReefCrestMode(80) );
Roberto.
Seedlessone
Posts: 135
Joined: Tue Jan 24, 2012 6:20 pm

Re: JEBO WP-40

Post by Seedlessone »

Awesome awesome awesome!! Thanks for the code Roberto.

I can't wait to get my pump. It should be here next week.
Seedlessone
Posts: 135
Joined: Tue Jan 24, 2012 6:20 pm

Re: JEBO WP-40

Post by Seedlessone »

treetopflyn wrote:
rimai wrote:Seedlessone sent me this:
http://www.reefcentral.com/forums/showt ... 44&page=12
Looks like this can be modded to be controlled with PWM signals :)
Awesome!! What would be needed besides the controller?
Looks like the VA wire on the controller board can go straight to pwm 5v on the ra. will know once I get my pump.

Also getting a battery backup on these will be a breeze. Tunze backp will work.

These pumps are going to fill a huge gap if they hold up.
Piper
Posts: 296
Joined: Fri Jul 20, 2012 7:13 am
Location: Oakley, CA

Re: JEBO WP-40

Post by Piper »

Post lots pics and let me know how it works for you after you get it. I ordered one yesterday to try it out :)
User avatar
lnevo
Posts: 5430
Joined: Fri Jul 20, 2012 9:42 am

Re: JEBO WP-40

Post by lnevo »

rimai wrote:Someone requested Vortech modes to be used for this pump or controllable Tunzes.
I went ahead and created ReefCrest to start.

Code: Select all

byte ReefCrestMode(byte s)
{
  static unsigned long lastmillis=millis();
  static int newspeed=s;
  if ((millis()-lastmillis) > 5000)
  {
    int delta;
    delta=random(20);
    if (delta<10) newspeed--; else newspeed++;
    newspeed=constrain(newspeed,s-20,s+20);
    newspeed=constrain(newspeed,0,100);
    lastmillis=millis();
  }  
  return newspeed;
}
Place it at the very end of your code.
To use the function, you can use like this:

Code: Select all

  ReefAngel.PWM.SetDaylight( ReefCrestMode(80) );
This is awesome... Are you going to write any other modes? I can use this with the rf custom code to do my tidal switch...

SetMode(Custom, ReefCrestMode(80), 0);
SetMode(Custom, ReefCrestMode(60), 1);

And then switch it...

SetMode(Custom, ReefCrestMode(60), 0);
SetMode(Custom, ReefCrestMode(80), 1)

Or add a parabola into the the art to ReefCrestMode! Gears are spinning...
treetopflyn
Posts: 89
Joined: Fri Oct 05, 2012 1:58 am

Re: JEBO WP-40

Post by treetopflyn »

Awesome!! Thank you Roberto. Can't wait for my pump to get here.
dcartier
Posts: 33
Joined: Thu Sep 20, 2012 2:34 am

Re: JEBO WP-40

Post by dcartier »

I have been following the thread on RC, but no one with a pump so far has the electronics background to actually determine what the control signal is. If one of you guys get a pump, please put a scope on the VA line so we can see what it is actually using. At this point it could be 0-10V, 5V PWM, 10V PWM or 24V PWM.

The WP25 is supposed to be out at the end of the month and I am holding off for 2 of them.

Dennis
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: JEBO WP-40

Post by rimai »

I'd love to see the scope screenshot too :)
Roberto.
dcartier
Posts: 33
Joined: Thu Sep 20, 2012 2:34 am

Re: JEBO WP-40

Post by dcartier »

I am waiting for confirmation, but based on info from RC users for the pin that the VA line is connected to, it looks like a plain old 5V PWM signal. The 20 pin variants have PWM0 output on the pin this line is coming from and the chips are all 3V - 5.5V parts. I am checking for the part number on the regulator to make sure that this is 5V and not 3.3V.

So if it is a 5V PWM, this should be easily interfaced and controlled by the RA.

Dennis
iiluisii
Posts: 80
Joined: Mon Jul 09, 2012 10:16 am

Re: JEBO WP-40

Post by iiluisii »

Has any body Figure out if they are 5 volts or if they will work cause I have two already that im wanting to hook up to the reef angel.
Piper
Posts: 296
Joined: Fri Jul 20, 2012 7:13 am
Location: Oakley, CA

Re: JEBO WP-40

Post by Piper »

Roberto - Do you have a scope or access to a scope? I can bring you the pump when it shows if you can get it to a scope.
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: JEBO WP-40

Post by rimai »

Yes, I have a scope. Bring it to the Frag Swap :)
We may be able to check it out.
Roberto.
Piper
Posts: 296
Joined: Fri Jul 20, 2012 7:13 am
Location: Oakley, CA

Re: JEBO WP-40

Post by Piper »

Will do. Not sure if it will be here by then though. If it goes like everyone else is saying I should have it on Friday just in time for the swap. If not, I'll find a way to get it over to you.
iiluisii
Posts: 80
Joined: Mon Jul 09, 2012 10:16 am

Re: JEBO WP-40

Post by iiluisii »

I got a friend that is gonna put one on the scope today I will let you guys know
rimai
Posts: 12881
Joined: Fri Mar 18, 2011 6:47 pm

Re: JEBO WP-40

Post by rimai »

Awesome!!! :)
Roberto.
dcartier
Posts: 33
Joined: Thu Sep 20, 2012 2:34 am

Re: JEBO WP-40

Post by dcartier »

That is great news. I have been trying to help the guys on RC do the investigative work remotely but with limited success so far.

Dennis
Piper
Posts: 296
Joined: Fri Jul 20, 2012 7:13 am
Location: Oakley, CA

Re: JEBO WP-40

Post by Piper »

My pump was out for delivery today but nobody was home to sign for it. I'll grab it tomorrow or Thursday and bring it with me on Saturday.
Piper
Posts: 296
Joined: Fri Jul 20, 2012 7:13 am
Location: Oakley, CA

Re: JEBO WP-40

Post by Piper »

Picked up my pump today :) Man, this thing moves some water! On W1 I can get a wave going and push water out of the tank without hesitation.

Roberto - I'll bring it with me on Saturday. You do what you want/need to do with it and I'll grab it at one of the next meetings. I'll probably end up selling this one once you're done with it (it's too big for my 65) and grab two of the smaller WP25s if and when they come out.

~Charlie
Post Reply