Search found 188 matches

by Reefology
Wed Mar 29, 2023 10:55 am
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's code

note to self: add something like this for my fish room fan.

if (ReefAngel.Params.Temp[T3_PROBE] >= 825) ReefAngel.Relay.On(Port6);
if (ReefAngel.Params.Temp[T3_PROBE] <= 805) ReefAngel.Relay.Off(Port6);
by Reefology
Mon Mar 20, 2023 8:52 am
Forum: Ask anything here
Topic: Kalk Dosing
Replies: 0
Views: 956

Kalk Dosing

Hi, wondering if someone can help with this problem. My Kalk port keeps turning on and off repeatedly several times a second when the ph fluctuates above and below the set point. wondering if I can delay port turning on to solve this problem //kalk dosing if ((hour()>13 && hour()<20) || (Ree...
by Reefology
Tue Oct 25, 2022 7:58 pm
Forum: How do I code ...
Topic: Feed Mode Duration
Replies: 5
Views: 1441

Re: Feed Mode Duration

Thank you Roberto, that did it :)

Cheers!
by Reefology
Mon Oct 24, 2022 8:23 pm
Forum: How do I code ...
Topic: Feed Mode Duration
Replies: 5
Views: 1441

Re: Feed Mode Duration

i changed it to 45mins in the internal memory but has had no effect. When i tried to input the attached code, i get this error " 'Timer' was not declared in this scope " ?
by Reefology
Mon Oct 24, 2022 3:52 am
Forum: How do I code ...
Topic: Feed Mode Duration
Replies: 5
Views: 1441

Re: Feed Mode Duration

is anyone feeding longer than 15 mins? if so, how do you do it?
by Reefology
Fri Oct 21, 2022 7:20 pm
Forum: How do I code ...
Topic: Feed Mode Duration
Replies: 5
Views: 1441

Feed Mode Duration

Wondering if someone could help me with increasing the feeding duration from default of 15 mins to 45?

I tried to change the delayed start menu in the internal memory but it had no effect on the duration.

Thanks
by Reefology
Fri Feb 25, 2022 2:27 pm
Forum: How do I code ...
Topic: HW cut off for Skimmer
Replies: 20
Views: 15427

Re: HW cut off for Skimmer

thanks for looking into this for me Roberto. I have been testing multiple triggers everyday for the past week and did get the two messages you mentioned. problem is those are the only 2 I received. That ATO High Port =0 triggered every hour for 4 days before I got the email, I have no idea why it to...
by Reefology
Wed Feb 16, 2022 7:40 pm
Forum: How do I code ...
Topic: HW cut off for Skimmer
Replies: 20
Views: 15427

Re: HW cut off for Skimmer

now i'm not getting any email notifications? Can I please get some help with this?

what's funny is the portal notifications show the last time triggered but no email was sent?

thanks
by Reefology
Fri Feb 11, 2022 9:36 pm
Forum: How do I code ...
Topic: HW cut off for Skimmer
Replies: 20
Views: 15427

Re: HW cut off for Skimmer

still nothing?!

does =1 mean ATO high is active? because my skimmer shuts down and ato high status light changes to green.
by Reefology
Tue Feb 08, 2022 5:54 pm
Forum: How do I code ...
Topic: HW cut off for Skimmer
Replies: 20
Views: 15427

Re: HW cut off for Skimmer

Yes
by Reefology
Tue Feb 08, 2022 3:16 pm
Forum: How do I code ...
Topic: 4th doser
Replies: 4
Views: 4983

Re: 4th doser

could this work?

ReefAngel.DosingPumpRepeat( Port1,0,360,60 );

when these were already running:

ReefAngel.DosingPumpRepeat1( Port6 );
ReefAngel.DosingPumpRepeat2( Port7 );
ReefAngel.DosingPumpRepeat3( Port8 );
by Reefology
Tue Feb 08, 2022 1:22 pm
Forum: How do I code ...
Topic: HW cut off for Skimmer
Replies: 20
Views: 15427

Re: HW cut off for Skimmer

i did at least15 mins each attempt, thats not the issue. any other ideas?
by Reefology
Sun Feb 06, 2022 10:05 pm
Forum: How do I code ...
Topic: HW cut off for Skimmer
Replies: 20
Views: 15427

Re: HW cut off for Skimmer

tried both, doesn't work for me?
by Reefology
Sun Feb 06, 2022 12:29 pm
Forum: How do I code ...
Topic: HW cut off for Skimmer
Replies: 20
Views: 15427

Re: HW cut off for Skimmer

rimai wrote:That's what I use too :)
In addition, I set HighATO trigger in the portal to send me an email notification.
How do you set this trigger?
by Reefology
Wed Feb 02, 2022 8:03 pm
Forum: How do I code ...
Topic: Dual ATO based on time
Replies: 19
Views: 15588

Re: Dual ATO based on time

anyone see any issues with this?

Code: Select all

//kalk reactor
if ((hour()>=23 || hour()<=14) && (ReefAngel.Params.PH < 830))
{
 ReefAngel.DosingPumpRepeat2( Port7 );   //  Kalk schedule 11pm - 2pm if pH < 8.3  kalk dosed as per portal settings
}
else   
{
 ReefAngel.Relay.Off( Port7); 
}
by Reefology
Wed Feb 02, 2022 8:33 am
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's code

hey Roberto, wondering if this would work to turn off kalk reactor according to ph?

ReefAngel.PHControl( Port7 );

add this to the loop section and use it with the above code?

thanks
by Reefology
Mon Jan 31, 2022 10:14 pm
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's 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_Joystick.h> #include <LED.h> #include <RA_TempSensor.h> #in...
by Reefology
Mon Jan 31, 2022 10:11 pm
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's code

I tried the following in the custom code section instead and it worked:

// kalk reactor
if ( hour(now()) >= 17 && hour(now()) <= 23 ) ReefAngel.Relay.Off( Port7 ); //kalk dosing off 5pm-11pm
else ReefAngel.DosingPumpRepeat2( Port7 );
by Reefology
Mon Jan 31, 2022 9:54 pm
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's code

hey Roberto, didnt work! any other ideas?
by Reefology
Mon Jan 31, 2022 4:50 pm
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's 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_Joystick.h> #include <LED.h> #include <RA_TempSensor.h> #in...
by Reefology
Mon Jan 31, 2022 1:45 pm
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's code

Hi Roberto,

so like this?


ReefAngel.DosingPumpRepeat1( Port6 );
ReefAngel.DosingPumpRepeat2( Port7 );
if ( hour(now()) >= 17 && hour(now()) <= 23 ) ReefAngel.Relay.Off(Port7 );
ReefAngel.DosingPumpRepeat3( Port8 );

Thanks
by Reefology
Mon Jan 31, 2022 8:24 am
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's code

Hoping someone from this great community can help as I'm not sure how to implement this. I'm looking to turn my kalk stirrer (port 7) off between 5pm and 11pm. if ( hour(now()) >= 17 && hour(now()) <= 23 ) ReefAngel.Relay.Off( Port7 ); if the statement above is correct, where should I input ...
by Reefology
Fri Oct 08, 2021 5:15 am
Forum: Ask anything here
Topic: Reefology's code
Replies: 64
Views: 65571

Re: Reefology's 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_Joystick.h> #include <LED.h> #include <RA_TempSensor.h> #in...
by Reefology
Thu Oct 17, 2019 3:25 am
Forum: Ask anything here
Topic: wifi attachment help
Replies: 11
Views: 10188

Re: wifi attachment help

RESOLVED

Went into my router... -> Wireless -> Wireless Mode
wireless setting default was "802.11 g/n mixed"...switched to "802.11 g only"
Success

Many thanks Roberto!
by Reefology
Wed Oct 16, 2019 2:53 pm
Forum: Ask anything here
Topic: wifi attachment help
Replies: 11
Views: 10188

Re: wifi attachment help

Sorry Roberto, I have no idea what that means or how to change it (if possible).

I received a new router from my service provider. Should I call them to have it switched?
by Reefology
Tue Oct 15, 2019 6:26 pm
Forum: Ask anything here
Topic: wifi attachment help
Replies: 11
Views: 10188

Re: wifi attachment help

still blinking blue and ip is 0.0.0.0;2000 here is the log I get with WiFi utility: Opening Serial Port... Verifying speed at 9600 baud Connected to serial port /dev/tty.usbserial-A402NUWP > $$$ > set u b 57600 > set s p 0 > save > reboot Verifying speed at 57600 baud Removing connection to /dev/tty...
by Reefology
Tue Oct 15, 2019 6:18 pm
Forum: Ask anything here
Topic: wifi attachment help
Replies: 11
Views: 10188

Re: wifi attachment help

im definitely selecting the correct COM port.

not getting any log at all...I don't get the screen shown in step 16 of the wifi manual, screen is blank? not sure what to do?
by Reefology
Tue Oct 15, 2019 5:20 pm
Forum: Ask anything here
Topic: wifi attachment help
Replies: 11
Views: 10188

Re: wifi attachment help

no I don't get anything?
by Reefology
Tue Oct 15, 2019 3:57 am
Forum: Ask anything here
Topic: wifi attachment help
Replies: 11
Views: 10188

Re: wifi attachment help

Hi Roberto, no neither ssid or passphrase have a space.

I reset WiFi attachment to factory settings and tried all 3 setup methods and still no luck. What else can I try?

Thanks
by Reefology
Mon Oct 14, 2019 8:47 pm
Forum: Ask anything here
Topic: wifi attachment help
Replies: 11
Views: 10188

wifi attachment help

Hi, I recently changed my router and tried to change my ssid and passphrase on the RA+ wifi attachment with no luck. It worked flawlessly for years until I changed my router and now not sure how to proceed. I followed the wifi setup documentation for all 3 methods and the result is always the same, ...