Guys, I did the thing!
you added all the fish at the same time? :-O
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Guys, I did the thing!
Yeah, I know......you added all the fish at the same time? :-O
I don’t know how I feel about that, but I guess with tank of that size it’s ok. No QT?Yeah, I know......
They were in QT for quite some time. I dosed with prime as a precaution, and I have extra bottles of Dr. Tim's, just in case.I don’t know how I feel about that, but I guess with tank of that size it’s ok. No QT?
Did you ever get a chance to verify this? My ato reservoir ran dry the other night and the pump ran for over an hour with no alerts.I'll cross check. I cant recall any changes that would break this functionality.
It seems like the reefpi can control pumps. I just have to wait until someone creates a UI that can cycle them on and off.I have been driving my two jebao pp4 wave pumps with the 0-5vdc control signal from my reef-pi pwm board. No filters needed, just straight off the pwm. I use the lighting subsection of the program for now. My jebao return pump can not be controlled this way, even though they use the same interface plug.
Hello,
Sorry for my English, but I just wanted to thank you for your work because I installed Reef Pi for two weeks and I'm very happy with the result. I have 8 controlled sockets by a relay, two temperature probes and a mechanical level sensor for the ATO. I also soldered the board we see here for the PH. Finally, I added a touch screen.
A small detail: I am French, I do not read very much English and I had never touched a Raspberry nor welded a resistance of my life. And yet, I succeeded!
Hello,
Sorry for my English, but I just wanted to thank you for your work because I installed Reef Pi for two weeks and I'm very happy with the result. I have 8 controlled sockets by a relay, two temperature probes and a mechanical level sensor for the ATO. I also soldered the board we see here for the PH. Finally, I added a touch screen.
A small detail: I am French, I do not read very much English and I had never touched a Raspberry nor welded a resistance of my life. And yet, I succeeded!
There’s a bug in the ato alert code. I fixed it two days back, will cut 2.2 tonight. Sorry for the trouble :-( .Did you ever get a chance to verify this? My ato reservoir ran dry the other night and the pump ran for over an hour with no alerts.
Not a big deal as the Aqualifter makes plenty of noise when it runs dry.
That’s awesome :-) . Bonjour and Welcome to reef2reef . We have several French developers and users here .Hello,
Sorry for my English, but I just wanted to thank you for your work because I installed Reef Pi for two weeks and I'm very happy with the result. I have 8 controlled sockets by a relay, two temperature probes and a mechanical level sensor for the ATO. I also soldered the board we see here for the PH. Finally, I added a touch screen.
A small detail: I am French, I do not read very much English and I had never touched a Raspberry nor welded a resistance of my life. And yet, I succeeded!
Adding alerting should not be that hard, but since doser are based on schedule not by some sensor output (like ph) , I don’t know if it’s useful. As and when we allow dosing based on ph or something else , I can see the usefulness of this@Ranjib my biggest fear is a runaway doser. I have been dosing from one bottle to the other for about a week now with no issue and officially moved over to dosing my reef last night. But it’s still in the back of my mind that a glitch will dump a bottle of alk in my tank. Any plans to put alerts and maybe an auto disable on the alert similar to what you are doing with the ATO?
@b4tn@Ranjib my biggest fear is a runaway doser. I have been dosing from one bottle to the other for about a week now with no issue and officially moved over to dosing my reef last night. But it’s still in the back of my mind that a glitch will dump a bottle of alk in my tank. Any plans to put alerts and maybe an auto disable on the alert similar to what you are doing with the ATO?
As with heaters failsafes are always a good thing@b4tn
Make sure your Dosing container never has enough in it to crash your tank. Plug the dosing pump into a Pi-controlled outlet. Set that outlet on a timer to start before dosing is to begin and stop when dosing is done..
this way if the dosing procedure fails running the outlet will have the pumps power turned off..
@b4tn
Make sure your Dosing container never has enough in it to crash your tank. Plug the dosing pump into a Pi-controlled outlet. Set that outlet on a timer to start before dosing is to begin and stop when dosing is done..
this way if the dosing procedure fails running the outlet will have the pumps power turned off..
I had thought about using a timer actually. Problem is my dosing pumps are incorporated into reefpi. I guess one of the benifits of building things separate instead of incorporating it all together lol
On top of things as always.There’s a bug in the ato alert code. I fixed it two days back, will cut 2.2 tonight. Sorry for the trouble :-( .
#!/bin/bash
/bin/date > /home/bishop/pi-memory.txt
/usr/bin/free >> /home/bishop/pi-memory.txt
freemem=`/usr/bin/awk '{print $7}' /home/bishop/pi-memory.txt`
if (( $freemem < 150000 ))
then
/bin/echo $freemem >> /home/bishop/pi-memory.txt
/bin/echo "restarting reef-pi" >> /home/bishop/pi-memory.txt
/bin/systemctl restart reef-pi.service
else
/bin/echo "not less that 150M" >> /home/bishop/pi-memory.txt
fi