Analog pH Meter V1.0
Need to measure water quality and other parameters but haven't got any low cost pH meter? Find it difficult to use with Arduino? Here comes an analog pH meter, specially designed for Arduino controllers and has built-in simple, convenient and practical connection and features. It has an LED which works as the Power Indicator, a BNC connector and PH2.0 sensor interface. To use it, just connect the pH sensor with BNC connector, and plug the PH2.0 interface into the analog input port of any Arduino controller. If pre-programmed, you will get the pH value easily. Comes in compact plastic box with foams for better mobile storage.
Applications
- Water quality testing
- Aquaculture
Quick Spec
- Module Power : 5.00V
- Module Size : 43mm×32mm
- Measuring Range:0-14PH
- Measuring Temperature :0-60 ℃
- Accuracy : ± 0.1pH (25 ℃)
- Response Time : ≤ 1min
- pH Sensor with BNC Connector
- PH2.0 Interface ( 3 foot patch )
- Gain Adjustment Potentiometer
- Power Indicator LED
Wiring Diagram
Code Example
/*
# This sample codes is for testing the pH meter V1.0.
# Editor : YouYou
# Date : 2013.10.21
# Ver : 0.1
# Product: pH meter
# SKU : SEN0161
*/
#define SensorPin 0 //pH meter Analog output to Arduino Analog Input 0
#define Offset 0.00 //deviation compensate
unsigned long int avgValue; //Store the average value of the sensor feedback
void setup()
{
pinMode(13,OUTPUT);
Serial.begin(9600);
Serial.println("Ready"); //Test the serial monitor
}
void loop()
{
int buf[10]; //buffer for read analog
for(int i=0;i<10;i++) //Get 10 sample value from the sensor for smooth the value
{
buf[i]=analogRead(SensorPin);
delay(10);
}
for(int i=0;i<9;i++) //sort the analog from small to large
{
for(int j=i+1;j<10;j++)
{
if(buf[i]>buf[j])
{
int temp=buf[i];
buf[i]=buf[j];
buf[j]=temp;
}
}
}
avgValue=0;
for(int i=2;i<8;i++) //take the average value of 6 center sample
avgValue+=buf[i];
float phValue=(float)avgValue*5.0/1024/6; //convert the analog into millivolt
phValue=3.5*phValue+Offset; //convert the millivolt into pH value
Serial.print(" pH:");
Serial.print(phValue,2);
Serial.println(" ");
digitalWrite(13, HIGH);
delay(800);
digitalWrite(13, LOW);
}
Resources
Shipping List
- 1 x Analog pH Meter V1.0
Analog pH Meter V1.0
- Brand: DF Robot
- Product Code: SEN0161
- Product Status : Active
Stock
| Warehouse | Stock Status | Location |
|---|---|---|
| Centurion | No Stock | |
| Stellenbosch | No Stock |
We ship free of charge between branches to complete your order.
-
R512.00 (Inc Tax: R588.80)
Related Products
Analog PH meter Pro
Analog PH meter Pro This is a professional Arduino pH Sensor Meter Kit with industrial electrode. It has built-in simple, convenient , practical connection and long life (up to 1 year), which makes ..
R1,049.00 (Inc Tax: R1,206.35)
18B20 Digital Temperature Sensor - 5m cable
18B20 Digital Temperature Sensor - 5m cable This is a waterproofed version of the DS18S20 Temperature sensor. Handy for when you need to measure something far away, or in wet conditions. While the ..
R72.00 (Inc Tax: R82.80)
Industrial pH Electrode - Armor Casing
Industrial pH Electrode - Armor Casing This pH combination electrode is made of sensitive glass membrane with low impedance. It can be used in a variety of PH measurements with fast response, good th..
R948.00 (Inc Tax: R1,090.20)
18B20 Temperature Module
18B20 Temperature Module This is an electronic thermometer which has high accuracy over a wide range (accurate to ±0.5°C over the range of -10°C to +85°C). You can locate these thermometer chips up t..
R23.00 (Inc Tax: R26.45)
PH Sensor Meter Kit V2
PH Sensor Meter Kit V2 The DFRobot Gravity: Analog pH meter V2 is specifically designed to measure the pH of the solution and reflect the acidity or alkalinity. It is commonly used in various applicat..
R812.00 (Inc Tax: R933.80)
Analog Conductivity Sensor
Analog Electrical Conductivity Sensor The Analog Electrical Conductivity Meter V2 is specially used to measure the electrical conductivity of aqueous solution, and then to evaluate the water qualit..
R1,698.00 (Inc Tax: R1,952.70)
Analog Dissolved Oxygen Sensor
Analog Dissolved Oxygen Sensor This is an Analog Dissolved Oxygen sensor kit, which is compatible with Arduino microcontrollers. This product is used to measure the dissolved oxygen in water, to re..
R3,105.00 (Inc Tax: R3,570.75)
4 in 1 PH Meter
4 in 1 PH Meter The 4 in 1 soil survey instrument can test moisture, PH value, temperature, and environment sunlight intensityof soil via using a probe with the length pf 200mm. The unit can easily d..
R289.00 (Inc Tax: R332.35)
DF Robot Gravity: Analog ORP Sensor Meter PRO
DF Robot Gravity: Analog ORP Sensor Meter PRO As an upgraded version of industrial Gravity: ORP Sensor Meter For Arduino, this new generation ORP probe employs platinum indicator electrode and silv..
R2,454.00 (Inc Tax: R2,822.10)
DF Robot Turbidity Sensor
DF Robot Turbidity Sensor The DF Robot UART Non-contact Optical Turbidity Sensor provides a non-intrusive way to assess water quality by measuring turbidity levels. Relying on advanced optical tech..
R228.00 (Inc Tax: R262.20)
Tags: analog ph meter, ph












