JEBO WP-40
-
- Posts: 88
- Joined: Fri Oct 05, 2012 1:58 am
JEBO WP-40
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
http://www.fish-street.com/jebo_wp-40_13000l_wave_maker
JEBO WP-40
Doubtful other than off/on. I don't see any means to control it unless I'm missing something...
-
- Posts: 88
- Joined: Fri Oct 05, 2012 1:58 am
JEBO WP-40
I think it might be because the light sensor slows the pump down at night.
JEBO WP-40
Yeah well you can control your lights and watch your pumps spin down
Re: JEBO WP-40
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.
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.
Re: JEBO WP-40
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.
Re: JEBO WP-40
Will be cool to see this controlled by RA
Re: JEBO WP-40
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
http://www.reefcentral.com/forums/showt ... 44&page=12
Looks like this can be modded to be controlled with PWM signals
Roberto.
- DrewPalmer04
- Posts: 818
- Joined: Tue May 29, 2012 2:12 pm
- Location: Christopher, IL
Re: JEBO WP-40
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.
-
- Posts: 88
- Joined: Fri Oct 05, 2012 1:58 am
Re: JEBO WP-40
Awesome!! What would be needed besides the controller?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
Re: JEBO WP-40
I don't know.
You need to check with the guy that hacked it.
Sent from my Galaxy S3 using Tapatalk 2
You need to check with the guy that hacked it.
Sent from my Galaxy S3 using Tapatalk 2
Roberto.
Re: JEBO WP-40
Someone requested Vortech modes to be used for this pump or controllable Tunzes.
I went ahead and created ReefCrest to start.
Place it at the very end of your code.
To use the function, you can use like this:
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;
}
To use the function, you can use like this:
Code: Select all
ReefAngel.PWM.SetDaylight( ReefCrestMode(80) );
Roberto.
-
- Posts: 132
- Joined: Tue Jan 24, 2012 6:20 pm
Re: JEBO WP-40
Awesome awesome awesome!! Thanks for the code Roberto.
I can't wait to get my pump. It should be here next week.
I can't wait to get my pump. It should be here next week.
-
- Posts: 132
- Joined: Tue Jan 24, 2012 6:20 pm
Re: JEBO WP-40
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.treetopflyn wrote:Awesome!! What would be needed besides the controller?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
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.
Re: JEBO WP-40
Post lots pics and let me know how it works for you after you get it. I ordered one yesterday to try it out
Re: JEBO WP-40
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...rimai wrote:Someone requested Vortech modes to be used for this pump or controllable Tunzes.
I went ahead and created ReefCrest to start.Place it at the very end of your code.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; }
To use the function, you can use like this:Code: Select all
ReefAngel.PWM.SetDaylight( ReefCrestMode(80) );
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...
-
- Posts: 88
- Joined: Fri Oct 05, 2012 1:58 am
Re: JEBO WP-40
Awesome!! Thank you Roberto. Can't wait for my pump to get here.
Re: JEBO WP-40
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
The WP25 is supposed to be out at the end of the month and I am holding off for 2 of them.
Dennis
Re: JEBO WP-40
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
So if it is a 5V PWM, this should be easily interfaced and controlled by the RA.
Dennis
Re: JEBO WP-40
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.
Re: JEBO WP-40
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.
Re: JEBO WP-40
Yes, I have a scope. Bring it to the Frag Swap
We may be able to check it out.
We may be able to check it out.
Roberto.
Re: JEBO WP-40
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.
Re: JEBO WP-40
I got a friend that is gonna put one on the scope today I will let you guys know
Re: JEBO WP-40
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
Dennis
Re: JEBO WP-40
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.
Re: JEBO WP-40
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
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