Jebao battery backup and feeding mode
-
- Posts: 62
- Joined: Mon Feb 24, 2014 9:38 pm
- Location: Sydney, Australia
Jebao battery backup and feeding mode
Hi,
I just rewired the whole RA setup over the weekend (will post pics later), and also installed the Jebao battery backup. The backup worked great right out of the box (just need to monitor the solar charger over the next days). I tested the power cut scenario, and the backup kicked in as planned, but I was pleasantly surprised at how much power that was still supplied to my two WP-40 when they were on battery power.
I have one problem though, and it's in the feeding mode. When I start feeding mode, which powers off my 5 circulation pumps including the WP-40, the backup interprets this as a power cut and the battery backup kicks in. This is of course not what I want.
Have I wired it incorrectly, or is there something that needs to be changed in the programming??
I just rewired the whole RA setup over the weekend (will post pics later), and also installed the Jebao battery backup. The backup worked great right out of the box (just need to monitor the solar charger over the next days). I tested the power cut scenario, and the backup kicked in as planned, but I was pleasantly surprised at how much power that was still supplied to my two WP-40 when they were on battery power.
I have one problem though, and it's in the feeding mode. When I start feeding mode, which powers off my 5 circulation pumps including the WP-40, the backup interprets this as a power cut and the battery backup kicks in. This is of course not what I want.
Have I wired it incorrectly, or is there something that needs to be changed in the programming??
Re: Jebao battery backup and feeding mode
I think instead of shutting down the relay ports, you should add this to setup():
Code: Select all
ReefAngel.DCPump.FeedingSpeed=0;
ReefAngel.DCPump.WaterChangeSpeed=0;
Roberto.
-
- Posts: 62
- Joined: Mon Feb 24, 2014 9:38 pm
- Location: Sydney, Australia
Re: Jebao battery backup and feeding mode
Ah, I see! Thanks Roberto you're a star
Re: Jebao battery backup and feeding mode
I added the above code for feeding mode, but the jebao wavemakers are still running with battery backup. I am not using the DCPump class in the code. My wavemakers have these codes:rimai wrote:I think instead of shutting down the relay ports, you should add this to setup():Code: Select all
ReefAngel.DCPump.FeedingSpeed=0; ReefAngel.DCPump.WaterChangeSpeed=0;
ReefAngel.PWM.SetDaylight(SineMode(32,40,30,true) ); //SineMode from 30% to 40% for 30 seconds on sync mode
ReefAngel.PWM.SetActinic(SineMode(32,40,30,false) ); //SineMode from 30% to 40% for 30 seconds on anti-sync mode
Is there another code I can add to slow the pump speed to '0' when switched to feeding mode.
Dr Davaraj
Re: Jebao battery backup and feeding mode
Just to be sure, your battery backup is connected to the wall outlet, correct?
Roberto.
Re: Jebao battery backup and feeding mode
The battery backup is connected to batteries which are in turn connected to a sloar panel. Not connected to wall outlet.
Re: Jebao battery backup and feeding mode
The Jebao power supplies are on port 5 and port 6 of the relay box (not wireless).rimai wrote:Sorry, I meant the Jebao power supplies.
Re: Jebao battery backup and feeding mode
If you want to keep them on the relay box, make sure to not turn them off when on feeding or the battery is going to kick in.
Roberto.
Re: Jebao battery backup and feeding mode
So if I take this off from the code:rimai wrote:If you want to keep them on the relay box, make sure to not turn them off when on feeding or the battery is going to kick in.
ReefAngel.FeedingModePorts = Port5Bit | Port6Bit;
and keep this on:
ReefAngel.DCPump.FeedingSpeed=0;
it should work.
Dr Davaraj