Search found 6 matches

by acabano13
Sun Jan 21, 2024 12:05 pm
Forum: Ask anything here
Topic: Wifi module afficting ph probe reading
Replies: 3
Views: 2062

Re: Wifi module afficting ph probe reading

It sounds like electrical noise or grounding issue possibly. I would make sure the pins are all clean, and the cable pins all have a good connection. [acabano13] - no sign of corrosion on the pins, cleaned it any but same result. Did this just recently start since the migration? [acabano13] - yeah i...
by acabano13
Sun Jan 21, 2024 1:00 am
Forum: Ask anything here
Topic: Wifi module afficting ph probe reading
Replies: 3
Views: 2062

Wifi module afficting ph probe reading

Hi,

I have been observing my pH reading is fluctuating and reads higher when my WIFI module is plugin.
and it is causing my kalk dosing port relay to switch on/off .
I was able to confirm via removing the WIFI module, any help is greatly appreciated, ty
by acabano13
Wed Jan 17, 2024 10:15 pm
Forum: Ask anything here
Topic: Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()
Replies: 6
Views: 999

Re: Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()

ended up using the below statements, but would like to add some kind of a timeout to "if ( ReefAngel.Params.PH <= 8000 ) ReefAngel.Relay.On( Port7 );" // Kalk dosing code if ( ReefAngel.Params.PH >= 1000 && ReefAngel.Params.PH <= 6200 ) ReefAngel.Relay.Off( Port7 ); // Failsafe to ...
by acabano13
Tue Jan 16, 2024 1:24 am
Forum: Ask anything here
Topic: Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()
Replies: 6
Views: 999

Re: Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()

My observation with the kalk code below, is that the port 7 toggles when PH value fluctuates, same with the float sw (movement) #include <ReefAngel_Features.h> #include <Globals.h> #include <RA_Wifi.h> #include <Wire.h> #include <OneWire.h> #include <Time.h> #include <DS1307RTC.h> #include <Internal...
by acabano13
Mon Jan 15, 2024 7:56 pm
Forum: Ask anything here
Topic: Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()
Replies: 6
Views: 999

Re: Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()

yes, port 6 I'm currently using as a standard ATO
by acabano13
Mon Jan 15, 2024 7:23 pm
Forum: Ask anything here
Topic: Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()
Replies: 6
Views: 999

Help with kalk dosing, base on PH and ReefAngel.HighATO.IsActive()

Hello, tried the code below, but looks like with the float switch moving up and down(water flow), the ATO SW relay port is toggling, any pointers is greatly appreciated. if ( ReefAngel.Params.PH > 810 ) ReefAngel.Relay.Off( Port7 ); if ( ReefAngel.Params.PH < 800 && ReefAngel.HighATO.IsActiv...