PH fish tank

Hello, I'm trying to measure the PH levels of my fish tank. Spark Fun sells a kit (see link below) but I don't know if this would work for my project. I need my Arduino to check the ph level continually and dump a mix into the tank if the ph falls below 10.5. Would this kit work for this application? If so does anybody know where I could look at a sample program like this. The programs they have seem to send the values to the computer which is not what I need.

Also, If anybody knows of a different kit that would work better or is cheaper that would be awesome.

Thanks!!!

Wow. What kind of fish like pH over 10.5? I've kept just about everything out there but that's a new one to me.

That seems like a doable project. A pH probe puts out a mV signal and you simply read that. You will need some method to calibrate what mV value corresponds to what pH and that will need to be recalibrated pretty often.

The programs they have seem to send the values to the computer which is not what I need.

No, the sparkfun code example shows the PH module talking to the arduino on pins 2 and 3 using the softserial library so the measured values will be received by the arduino and available to use as you wish in your sketch.

Lefty

That kit puts out the pH as a serial signal, which you can read using the Arduino.

A less expensive solution would be to buy a pH probe (available from ebay), use an instrumentation amplifier to amplify the probe output and add an offset, and read the amplifier output using an Arduino analog input.

Yes, you can use this to adjust the pH of your aquarium, but you will need to write some code. The kit is a very good starting point if you are new to measuring pH with glass electrodes. the probe generates a very small voltage that must be properly amplified for it to be usable. the stamp does this automatically, making it very easy to "plug-and-play". The probe must be calibrated regularly hence the buffer solutions. if you already have the buffers, you can find a probe ($20) and stamp ($25) on eBay.

Thanks for all the input!! I still have a few questions.

From what I saw it seemed like you could just leave the PH sensor in the tank for long periods of time with out attention. Is that correct? Also, if I use the wiring diagram (link below) could anybody show me how to get the value from the sensors into an integer so I could use the numbers in my program.

Also, this is not for fish. It's for algae.

Thanks for all of your help!!!!

From what I saw it seemed like you could just leave the PH sensor in the tank for long periods of time with out attention.

In very clean water, possibly, and even then the chemistry of the probe has a tendency shift over time. The surface of the bulb needs to be clean for a good measurement. On top of that I'm guessing you'll be growing algae... In my experience, you'll find yourself cleaning it about once a month( probably more in your case) and calibrating every week or so. It depends also on what the alga's tolerances are.

Also, this is not for fish. It's for algae.

I was gonna say, poor fisshies :frowning:

Spark fun gives you 3 bottles; 250ml Red Buffer Solution - pH 4.0, 250ml, Yellow Buffer Solution - pH 7.0, 250ml Blue Buffer Solution - pH 10.0. How long do you think that will last? Also do I just leave the sensor in the tank or do i need to extract a sample from the water and place it into the sensor.

Thanks,
Drew Davis

How long do you think that will last?

I use 20-30ml in a small medicine cup, once a week, so 250ml should easily last at least 10 weeks.

Also do I just leave the sensor in the tank or do I need to extract a sample from the water and place it into the sensor.

Have you used glass pH electrodes before (the handheld kind, possibly)? If not, I would strongly encourage you to do a google search and research them. Anything left in the tank is going to quickly acquire a nice layer of scum within a few days, therefore requiring frequent cleaning. How much the algae growth affects your reading, I couldn't tell you, maybe not at all. (In my situation, accuracy mattered greatly.) And frequent cleanings run the risk of damaging the sensitive bulb. If it were me, I would get two probes and keep one in the tank and properly store the other. When it is time to take your measurements, place the clean probe in the tank and let it stabilize for a minute, then compare the two readings.

[quote author=Drew Davis link=topic=139748.msg1049786#msg1049786 date=1356836654]
Also, this is not for fish. It's for algae.

http://www.algaelab.org[/quote]

Interesting link! Glad you said it was for algae as I was surprised like Delta_G with what fish you were trying to turn into caustic soup :astonished:

If you look up aquarium controllers a lot of the pH probes are damn expensive. I'm not sure if that's just because they're made to last while continually in the tank, or also because aquarium equipment is often overpriced. Some of the well-known manufacturers recommend cleaning them at least every couple of months. Many people use undiluted white vinegar or lemon juice for this. Even then the probes only last up to 18 months or so.

As for the buffer solutions, since you're only concerned with a pH of 10-11, did you know a borax solution can be used to calibrate near this range? It will produce a buffer solution of around pH 9.2, so this method requires a controller that will allow calibration using arbitrary buffers. That Sparkfun kit doesn't do that.

EDIT:
I just did some searching and apparently these probes are pretty popular for the price:
http://www.bulkreefsupply.com/brs-brand-ph-probe.html

did you know a borax solution can be used to calibrate near this range? It will produce a buffer solution of around pH 9.2, so this method requires a controller that will allow calibration using arbitrary buffers.That Sparkfun kit doesn't do that.

Because it already has set calibration points. 4.0, 7.0, and 10.0 are very commonly used and widely available buffer solutions. And at $25, the stamp is the cheapest I have found.

seanz2003:

did you know a borax solution can be used to calibrate near this range? It will produce a buffer solution of around pH 9.2, so this method requires a controller that will allow calibration using arbitrary buffers.That Sparkfun kit doesn't do that.

Because it already has set calibration points. 4.0, 7.0, and 10.0 are very commonly used and widely available buffer solutions. And at $25, the stamp is the cheapest I have found.

But he's only interested in the 10.0 range, the 4,0 and 7.0 is useless. Considering the OP is only interested in a small range of pH values, it would be cheaper to purchase a Ph probe, use a single-chip instrumentation amp and do the calibration on the Arduino itself. The pH 10 buffers don't keep very well as they absorb CO2 from the atmosphere.

Thanks for all the help! I think I will probably buy the kit from spark fun and learn how to measure different ph levels before using it to grow algae.

Thanks again,
Drew

Drew I don't know if I am too late, but I have recently released a ph shield for arduino on tindie. I'll be writing a in depth tutorial on how to control ph in the few weeks too.

I actually did this some years ago. I started out with an arduino, but ended up doing this with x-10 modules and a set-point ph monitor. The monitor sent a signal to the x-10 wall module, which was sent over the home wiring to a usb wall outlet receiver and finally to the computer. I used a wall x-10 wall receptacle to plug a surplus medical dosing pump into to deliver the carbonate. The whole thing was programmed and controlled by (I forget the name) x-10 software. I got the idea and instructions from someone else on ReefCentral.com. The discussion is probably archived.

Mike