Page 1 of 1
problem with jebao cable?
Posted: Mon Jun 17, 2013 7:54 pm
by daniella3d
HI,
I have installed the cable for the jaboa wp25 but the pump keep stopping. The only way to restart it is to unplug the power and plug it back. What,s going on? This happen only in reef crest mode.
thanks.
Re: problem with jebao cable?
Posted: Tue Jun 18, 2013 6:46 am
by cosmith71
You may have the minimum value too low. The wp25's seem to be pickier about lower voltages and stop if you go too low.
Re: problem with jebao cable?
Posted: Tue Jun 18, 2013 9:48 am
by Sacohen
That was the problem that I was having when I tested the WP25's. I was running at 30%.
Rrasco had the same problem, but I don't know what speed he was running.
I don't think anyone has nailed down the speed at which the 25's are happy.
Re: problem with jebao cable?
Posted: Wed Jun 19, 2013 2:13 pm
by daniella3d
I found the problem, it was due to the reef crest mode being set too low. Strangly though once the pump did stop, it did not resume.
I replaced with the custom code from the other thread and that did not cause the same problems, even when set low. With the custom mode the pump stop and restart.
Re: problem with jebao cable?
Posted: Wed Jun 19, 2013 2:35 pm
by Sacohen
daniella3d wrote:I found the problem, it was due to the reef crest mode being set too low. Strangly though once the pump did stop, it did not resume.
I replaced with the custom code from the other thread and that did not cause the same problems, even when set low. With the custom mode the pump stop and restart.
Strange because mine WP25 stopped on the custom mode, but works fine with the WP-40.
Which pump are you using again?
Re: problem with jebao cable?
Posted: Thu Jun 20, 2013 6:45 pm
by daniella3d
I am using the wp25. It works well with the custom mode. Mine stop and does not restart on reef crest. Strange.
Re: problem with jebao cable?
Posted: Mon Jul 08, 2013 8:28 am
by ganjero
daniella3d wrote:I am using the wp25. It works well with the custom mode. Mine stop and does not restart on reef crest. Strange.
What custom mode are you using? Do you mind linking it? There are so many thread on this in almost every subforums.
Re: problem with jebao cable?
Posted: Mon Jul 08, 2013 8:38 am
by Sacohen
ganjero wrote:daniella3d wrote:I am using the wp25. It works well with the custom mode. Mine stop and does not restart on reef crest. Strange.
What custom mode are you using? Do you mind linking it? There are so many thread on this in almost every subforums.
This is the custom code I was using that Roberto created for someone else.
I have since switched to the Else mode that cosmith71 created.
http://forum.reefangel.com/viewtopic.php?f=3&t=3481
rimai wrote:Add this to the end of your code:
Code: Select all
byte MyCustomWave(byte maxspeed)
{
static byte randomspeed=0;
if (now()%11<5)
{
return randomspeed;
}
else if (now()%11>=5 && now()%11<10)
{
return maxspeed;
}
else
{
randomspeed=random(35,maxspeed);
return 0;
}
}
And call your function like this:
Code: Select all
ReefAngel.PWM.SetActinic(MyCustomWave(70));
Re: problem with jebao cable?
Posted: Mon Jul 08, 2013 8:41 am
by ganjero
Great, Thanks.
How is the the else mode working for you? Are you using it with a wp25? Are you using the code from the first post?
Thanks
Re: problem with jebao cable?
Posted: Mon Jul 08, 2013 8:49 am
by Sacohen
I'm using it on a 40.
I like it a lot.
I think there was an updated version on page 2 that I used.