Paulturner911 wrote:I just switched the plug on the unit side.
The high is green when it's down, the low is red when it's up. Could I make the low green when it's up by cutting and switching the leads on the plug? I guess really I would depin the harness and switch them to keep it clean. Would that do what I want? What I'm trying to achieve is the portal to show two green dots when I'm in the clear, red if anything is wrong.
You would need to put the low ATO upside down.
It is always green when the float is touching the C-Clip. So, if you invert the position, you will achieve what you want in the portal.
Thats what I gathered from the earlier post. I will be comming up with some way to do it tonight with an acrylic bracket or something.
As for feed mode, I think I see where Im confused. Feed mode lasts for 15min, then 15 after (30min) the Powerhead will come on, 30min after feed mode is COMPLETE (45min) my pumps will resume. I never really waited the full 45min I guess. Im going to lower the times in that case... Ill be uploading my "new/improved" code tonight! Wish me Luck
I wrote them both <1. I haven't been able to get any emails though. I'm only tripping the sensor for a few seconds though. How long should it be red before the portal sends me an email? I also am having an issue when resuming feedmode my pump port 1 turns on immediately after feedmode times out, 15 min after the powerhead resumes. Per my code I was under the impression it would first be the powerhead then the pump 30min after the feedmode times out. Any help?
The portal only gets data every 5 minutes...so you wont get an alert testing that way. Once the trigger happens you should get your email/sms within 5 minutes.
lnevo wrote:The portal only gets data every 5 minutes...so you wont get an alert testing that way. Once the trigger happens you should get your email/sms within 5 minutes.
Are you saying that the light would have to be red for 5 minutes inorder for the portal to send the email?
void setup()
{
// This must be the first line
ReefAngel.Init(); //Initialize controller
// Ports toggled in Feeding Mode
ReefAngel.FeedingModePorts = Port1Bit | Port2Bit | Port5Bit | Port6Bit | Port7Bit;
// Ports toggled in Water Change Mode
ReefAngel.WaterChangePorts = Port1Bit | Port2Bit | Port5Bit | Port6Bit | Port7Bit | Port8Bit;
// Ports toggled when Lights On / Off menu entry selected
ReefAngel.LightsOnPorts = Port2Bit | Port3Bit | Port5Bit | Port6Bit | Port8Bit;
// Ports turned off when Overheat temperature exceeded
ReefAngel.OverheatShutoffPorts = Port3Bit | Port5Bit | Port6Bit | Port8Bit;
// Use T1 probe as temperature and overheat functions
ReefAngel.TempProbe = T1_PROBE;
ReefAngel.OverheatProbe = T1_PROBE;
// Set the Overheat temperature setting
InternalMemory.OverheatTemp_write( 869 );
// Ports that are always on
////// Place additional initialization code below here
////// Place additional initialization code above here
}
Awesome, Ive got it working!! What about the notification? Is it true that the stated has to be red for 5min before the trigger is activated and I will get an email?
5 minutes would be the most..if the unit had just sent data and the error condition happened right away...otherwise your average response will be 2.5 minutes, sometimes less, sometimes more...
That's what I gathered. I just removed it and the junk in the portal went away.
I'm thinking about putting my existing float switch relay assembly on the RA and have it set to dose kalk with my toms aqua lifter pump around 6am to help curb ph fluctuation. I would like to know if anyone has a code to do this slowly. My evap is about 3/4 gallons per day. Ideally I would not dump this all at once. Maybe over a few hours when the ph is just starting to bottom out. I've just set it on a brinks timer today to run 15min at 6am. This will prob fill the sump. I'd like to do it slower. First I should look into the flow rate of the aqualifter and try to determine just how long it will run, then figure how to divide it up evenly over the ph swing. I'm thinking I should start about half way down the lowering side. It seems to fall shortly after 7:30 just after the halides switch off from 8.15 bottoming out at 7.98 around 8am. Any help?