Search found 21 matches

by jayclaire
Sat Apr 06, 2013 4:40 pm
Forum: Apps
Topic: iPhone app not working
Replies: 1
Views: 4099

iPhone app not working

iPhone app not working error unable to connect.

Portal is working so its not my wireless.
by jayclaire
Thu Mar 21, 2013 10:51 am
Forum: How do I code ...
Topic: Code Expansion Relay Box 1 Port 7
Replies: 1
Views: 2389

Code Expansion Relay Box 1 Port 7

Hi - I need a code for Expansion Relay Box 1 Port 7 to turn on for 15 minutes every 2 hours.

Thanks,
~JaY
by jayclaire
Wed Mar 20, 2013 3:25 pm
Forum: How do I code ...
Topic: ReefCrest for Tunze
Replies: 12
Views: 8337

Re: ReefCrest for Tunze

Here's my current code - Where should I put the new code? #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi.h> #include <Wire.h> #include <OneWire.h> #include <Time.h> #include <DS1307RTC.h> #include <InternalEEPROM.h> #include <RA_NokiaLCD.h> #include <RA_ATO.h> #include <RA_Jo...
by jayclaire
Wed Mar 20, 2013 8:48 am
Forum: How do I code ...
Topic: ReefCrest for Tunze
Replies: 12
Views: 8337

Re: ReefCrest for Tunze

Will do - Thanks once again Roberto.
by jayclaire
Wed Mar 20, 2013 5:26 am
Forum: How do I code ...
Topic: ReefCrest for Tunze
Replies: 12
Views: 8337

Re: ReefCrest for Tunze

http://forum.reefangel.com/viewtopic.php?p=21277#p21277 Will the code work for 2 tunzes anyti-sync mode? byte ReefCrestMode(byte s) { static unsigned long lastmillis=millis(); static int newspeed=s; if ((millis()-lastmillis) > 5000) { int delta; delta=random(20); if (delta<10) newspeed--; else news...
by jayclaire
Tue Mar 19, 2013 5:53 pm
Forum: How do I code ...
Topic: ReefCrest for Tunze
Replies: 12
Views: 8337

ReefCrest for Tunze

Hi,

Can u please help me code my pair of Tunzes to run on ReefCrest mode anti-sync?

Thanks,
~JaY
by jayclaire
Thu Mar 14, 2013 1:36 pm
Forum: Standard
Topic: Tunze Control
Replies: 15
Views: 17358

Re: Tunze Control

I'd like to try TUNZE_MODE_SINE // sine wave, no pulse
by jayclaire
Wed Mar 06, 2013 12:48 pm
Forum: How do I code ...
Topic: Help Code Alternating Tunze Pumps
Replies: 11
Views: 8587

Re: Help Code Alternating Tunze Pumps

lnevo wrote:I think you need to % 14400 with the remainder < 7200 (so modulus the day by 4 hours (14400) and remainder less than 2 hours (7200)

Previously it was modulus 2 minutes (120) with the remainder being less than 1 minutes (60)

Thanks lnevo - Are u the same lnevo in MR?
by jayclaire
Wed Mar 06, 2013 12:22 pm
Forum: How do I code ...
Topic: Help Code Alternating Tunze Pumps
Replies: 11
Views: 8587

Re: Help Code Alternating Tunze Pumps

Okay how about this? ////// Place your custom code below here if (hour()>14) { ReefAngel.PWM.SetDaylight (now()%(4*60*60)<(2*60*60)?25:75); ReefAngel.PWM.SetActinic (now()%(4*60*60)<(2*60*60)?75:25); } else { ReefAngel.PWM.SetDaylight (25); ReefAngel.PWM.SetActinic (25); } ////// Place your custom c...
by jayclaire
Wed Mar 06, 2013 11:59 am
Forum: How do I code ...
Topic: Help Code Alternating Tunze Pumps
Replies: 11
Views: 8587

Re: Help Code Alternating Tunze Pumps

Is this correct?

////// Place your custom code below here
if (hour()>14)
{
ReefAngel.PWM.SetDaylight (now()%(10)<2?25:75);
ReefAngel.PWM.SetActinic (now()%(10)<2?75:25);
}
else
{
ReefAngel.PWM.SetDaylight (25);
ReefAngel.PWM.SetActinic (25);
}

////// Place your custom code above here
by jayclaire
Wed Mar 06, 2013 11:16 am
Forum: How do I code ...
Topic: Help Code Alternating Tunze Pumps
Replies: 11
Views: 8587

Re: Help Code Alternating Tunze Pumps

Hey Roberto can you please change the alternate time to every 2 hours instead of every 60 seconds.

Thanks - JaY
by jayclaire
Mon Mar 04, 2013 7:50 am
Forum: How do I code ...
Topic: Feed Mode on Tunze
Replies: 1
Views: 2145

Feed Mode on Tunze

Hi Again, Is it possible to change the speed of my 2 controllable powerhead to 30% or less on Feed Mode? I don't want to turn them off. Currently running this: ////// Place your custom code below here if (hour()>14) { ReefAngel.PWM.SetDaylight (75); ReefAngel.PWM.SetActinic (75); } else { ReefAngel....
by jayclaire
Mon Mar 04, 2013 6:52 am
Forum: Ask anything here
Topic: Stray Voltage/Inaccurate PH reading
Replies: 19
Views: 18795

Re: Stray Voltage/Inaccurate PH reading

Thanks for Sharing Steve...
I found out that my very old Tunze 6100 was leaking. My PH reading has been accurate since I've removed it.
by jayclaire
Sat Mar 02, 2013 6:49 am
Forum: Ask anything here
Topic: Stray Voltage/Inaccurate PH reading
Replies: 19
Views: 18795

Stray Voltage/Inaccurate PH reading

How can I find and fix the stray voltage in my tank? I've relocated the PH probe several times (sump and DT) but the PH reading is still incorrect.

PH reading is accurate if the PH probe is inside a cup with my tank water.
by jayclaire
Tue Feb 26, 2013 10:18 am
Forum: How do I code ...
Topic: Help Code Alternating Tunze Pumps
Replies: 11
Views: 8587

Re: Help Code Alternating Tunze Pumps

Thank you for the fast respond - I'll give this a try.
by jayclaire
Tue Feb 26, 2013 9:09 am
Forum: Standard
Topic: Custom Menu Help
Replies: 6
Views: 4155

Re: Custom Menu Help

Great - I will do that in an event that I lose wireless connectivity. Thank you!!!
by jayclaire
Tue Feb 26, 2013 8:53 am
Forum: How do I code ...
Topic: Help Code Alternating Tunze Pumps
Replies: 11
Views: 8587

Help Code Alternating Tunze Pumps

Please help me alter current code to run 2 Tunze pump at alternating mode Roberto wrote this for me to run 1 Tunze pump at 75% from 2pm to 12am then from 12am to 2pm at 25% ////// Place your custom code below here if (hour()>14) { ReefAngel.PWM.SetDaylight (75); ReefAngel.PWM.SetActinic (75); } else...
by jayclaire
Tue Feb 26, 2013 7:56 am
Forum: Standard
Topic: Custom Menu Help
Replies: 6
Views: 4155

Re: Custom Menu Help

so how can you control the port(s) without wireless then?
by jayclaire
Mon Feb 25, 2013 1:20 pm
Forum: Standard
Topic: Custom Menu Help
Replies: 6
Views: 4155

Custom Menu Help

Hi,

I just need help creating a custom menu to turn on/off each 1 of all ports on my 2 boxes in case I lose wireless connectivity.

Thanks,
~JaY
by jayclaire
Thu Feb 21, 2013 11:34 am
Forum: Apps
Topic: RA Cllient - Notifications Options
Replies: 5
Views: 6268

Re: RA Cllient - Notifications Options

Thank All - GMail account enabled it.
by jayclaire
Thu Feb 21, 2013 8:49 am
Forum: Apps
Topic: RA Cllient - Notifications Options
Replies: 5
Views: 6268

RA Cllient - Notifications Options

I can't enable SMS Alert and E-mail Alert option in RA Client 3.0-Setting-Notification Tab - It won't let me enter my info.

Am I missing something?