Page 2 of 2

Re: Relay Activity on Portal

Posted: Tue Jun 19, 2012 4:00 am
by rossbryant1956
I did, but for some reason it has been acting very strange lately. Display looks weird, touch any commands get an exception error, etc. Not able to stop and start services, etc.

Went as far to uninstall and reinstall last night but no better. Is there something in this new code that client doesn't like?

Re: Relay Activity on Portal

Posted: Tue Jun 19, 2012 7:36 am
by rimai
Just make sure that you set the Client not to send parameter to reefangel.com
Or you will get issues in the Portal, similar to what you were mentioning.
Only one thing should send data. Either the controller or the Client.

Re: Relay Activity on Portal

Posted: Mon Jun 25, 2012 7:10 pm
by rossbryant1956
got this all fixed...

How would I write an alert on the portal that sent an email (or sms) if port 8 (main pump) turned off. I would also like it to sound the buzzer currently looked to atohigh. thx

Re: Relay Activity on Portal

Posted: Mon Jun 25, 2012 7:14 pm
by rimai
Currently, there is no way to do that, but I'll add to the list shortly.

Re: Relay Activity on Portal

Posted: Thu Jun 28, 2012 10:32 am
by rimai
Ok, so thinking about this one, what is that would cause Port 8 to turn off?

Re: Relay Activity on Portal

Posted: Thu Jun 28, 2012 3:10 pm
by rossbryant1956
my float valve on the i/o connector that detected an overflow situation on the main tank. (that now works thanks to you!)

My overflow kit from Glass holes will sometimes get clogged and when it does it overfills the tank and it starts pouring out. I mounted a float valve close to it and now when it happens it will trigger the float valve and shut off the pump.

This will work if I can hear the buzzer. If not at home then the portal could warn me that port 8 just turned off, then I would have time to get home, look into it, etc.

thx

Re: Relay Activity on Portal

Posted: Thu Jun 28, 2012 5:47 pm
by rimai
Oh, in this case it is simple.
You can use one of the custom variables.

Code: Select all

ReefAngel.CustomVar[0]=ReefAngel.IO.GetChannel(0);
ReefAngel.CustomVar[7]=1;
Then, on the Portal, you can set a trigger to send you alerts when C0 = 0.

Re: Relay Activity on Portal

Posted: Thu Jun 28, 2012 6:56 pm
by rossbryant1956
Thx Sir, I'll test it over the weekend.

Re: Relay Activity on Portal

Posted: Tue Jul 03, 2012 4:45 pm
by rossbryant1956
rimai wrote:Oh, in this case it is simple.
You can use one of the custom variables.

Code: Select all

ReefAngel.CustomVar[0]=ReefAngel.IO.GetChannel(0);
ReefAngel.CustomVar[7]=1;
Then, on the Portal, you can set a trigger to send you alerts when C0 = 0.
This is working fine...tell me again what custom var 7 is doing?

Re: Relay Activity on Portal

Posted: Tue Jul 03, 2012 4:50 pm
by rimai
Same thing as your Box1_Port8 is doing.
Making sure it keeps something that is non zero to keep that feature alive :)