problem with jebao cable?

Basic / Standard Reef Angel hardware
Post Reply
daniella3d
Posts: 93
Joined: Wed Nov 14, 2012 8:34 pm

problem with jebao cable?

Post 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.
User avatar
cosmith71
Posts: 1437
Joined: Fri Mar 29, 2013 3:51 pm
Location: Oklahoma City

Re: problem with jebao cable?

Post 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.
User avatar
Sacohen
Posts: 1833
Joined: Sun Apr 21, 2013 6:25 am
Location: Davie, FL

Re: problem with jebao cable?

Post 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.
daniella3d
Posts: 93
Joined: Wed Nov 14, 2012 8:34 pm

Re: problem with jebao cable?

Post 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.
User avatar
Sacohen
Posts: 1833
Joined: Sun Apr 21, 2013 6:25 am
Location: Davie, FL

Re: problem with jebao cable?

Post 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?
daniella3d
Posts: 93
Joined: Wed Nov 14, 2012 8:34 pm

Re: problem with jebao cable?

Post by daniella3d »

I am using the wp25. It works well with the custom mode. Mine stop and does not restart on reef crest. Strange.
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: problem with jebao cable?

Post 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.
Image
User avatar
Sacohen
Posts: 1833
Joined: Sun Apr 21, 2013 6:25 am
Location: Davie, FL

Re: problem with jebao cable?

Post 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));
ganjero
Posts: 147
Joined: Fri Jul 05, 2013 5:29 am

Re: problem with jebao cable?

Post 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
Image
User avatar
Sacohen
Posts: 1833
Joined: Sun Apr 21, 2013 6:25 am
Location: Davie, FL

Re: problem with jebao cable?

Post 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.
Post Reply