Industrial Grade Analog PH Sensor Kit

Availability:

Out of stock

Approx Restocking Date: 25 to 30 Days
SKU: 235871
  1. Module power supply: 5 VDC.
  2. Measuring temperature: 0-50 ℃.
  3. Response time: ≤ 1min.
  4. pH sensor with BNC connector.
  5. Gain adjustment Potentiometer.
  6. Power indicator LED.

 1,842.00

(Including GST)

Out of stock

Didn’t Find what you are looking for?

You must register to use the waitlist feature. Please login or create an account
Brand: Generic
Category: Water TDS, pH, Flow, Level and Pressure Sensor
Tags: pH meter

This is Industrial Grade Analog PH Sensor Kit. 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, we have an Industrial Grade Analog PH Sensor Kit. This probe can be used with this pH sensor module.

The Analog pH Sensor Kit is specially designed for Arduino controllers and has a built-in simple, convenient, and practical connection and features. It has an LED that works as the Power Indicator, a BNC connector, and a PH2.0 sensor interface. To use it, just connect the pH sensor with the BND 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 a compact plastic box with foams for better mobile storage

Circuit Diagram:

Generic Shpkvrddoovnyxjs0W2K8Xw Qjtjqryntr 1Applications

 

  • Water quality testing
  • Aquaculture

Note: This is a laboratory probe, it can’t be immersed in the liquid for a too long time.

To Explore More pH Sensors, Click here


Source Code:

#define SensorPin A0          // the pH meter Analog output is connected with the Arduino’s Analog

unsigned long int avgValue;  //Store the average value of the sensor feedback

float b;

int buf[10],temp;

void setup()

{

  pinMode(13,OUTPUT);  

  Serial.begin(9600);  

  Serial.println("Ready");    //Test the serial monitor

}

void loop()

{

  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])

      {

        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;                      //convert the millivolt into pH value

  Serial.print("    pH:");  

  Serial.print(phValue,2);

  Serial.println(" ");

  digitalWrite(13, HIGH);       

  delay(800);

  digitalWrite(13, LOW);

Step to Use the pH Meter:

Cautions:

  1. Please use an external switching power supply, and the voltage as close as possible to the +5.00V. More accurate the voltage, the higher the accuracy!
  2. Before the electrode is continuously used every time, you need to calibrate it by the standard solution, in order to obtain more accurate results. The best environment temperature is about 25 ℃, and the pH value is known and reliable, close to the measured value. If you measure the acidic sample, the pH value of the standard solution should be 4.00. If you measure the alkaline sample, the pH value of the standard solution should be 9.18.Subsection calibration, just in order to get better accuracy.
  3. Before the pH electrode is measured in different solutions, we need to use water to wash it. We recommend using deionized water.
  4. Connect equipment according to the graphic, that is, the pH electrode is connected to the BNC connector on the pH meter board,and then use the connection lines, the pH meter board is connected to the analog port 0 of the Arduino controller. When the Arduino controller gets power, you will see the blue LED on board is on.
  5. Upload the sample code to the Arduino controller.
  6. Put the pH electrode into the standard solution whose pH value is 7.00,or directly shorten the input of the BNC connector. Open the serial monitor of the Arduino IDE, you can see the pH value printed on it, and the error does not exceed 0.3. Record the pH value printed, then compared with 7.00, and the difference should be changed into the “Offset” in the sample code. For example, the pH value printed is 6.88, so the difference is 0.12. You should change the “# define Offset 0.00” into “# define Offset 0.12” in your program.
  7. Put the pH electrode into the pH standard solution whose value is 4.00. Then wait about one minute, adjust the gain potential device, let the value stabilize at around 4.00. At this time, the acidic calibration has been completed and you can measure the pH value of an acidic solution.

Note: If you want to measure the pH value of other solutions, you must wash the pH electrode first!


Package Includes:

1 x pH probe with cable and BNC connector.

1 x pH sensor circuit board.

Input Supply voltage (VDC)

5

Module Size (mm)

50 x 47 x 16

Measuring Range

0 – 14 PH

Measuring Temperature

0 – 50 ℃

Accuracy

± 0.01 pH

Response Time

≤ 1min

Cable Length (cm)

75

pH sensor size (mm)

150, Φ12

Shipping Weight 0.07 kg
Shipping Dimensions 19 × 7 × 4 cm
15 Days Warranty

This item is covered with a standard warranty of 15 days from the time of delivery against manufacturing defects only. This warranty is given for the benefit of Robu customers from any kind of manufacturing defects.  Reimbursement or replacement will be done against manufacturing defects.


What voids warranty:

If the product is subject to misuse, tampering, static discharge, accident, water or fire damage, use of chemicals & soldered or altered in any way.

Based on 0 reviews

0.0 overall
0
0
0
0
0

Be the first to review “Industrial Grade Analog PH Sensor Kit”

There are no reviews yet.

Documentation

Sample Code

Questions and answers of the customers

  1. 0 votes
    Q can this work with the ADS1115? answer now
    Asked by nathanphilip1909 on March 14, 2023 12:09 am
    A

    Yes, it is compatible with ADS1115.

  2. 0 votes
    Q Can I connect with Raspberry Pi 3 B+ answer now
    Asked by UNICITA on July 23, 2020 10:10 am
    A

    Yes

  3. 0 votes
    A

    You can check the attachment section for datash... Read more

  4. 0 votes
    Q what is the opput voltage range of the probe? answer now
    Asked by Divyanggiri Gosai on February 5, 2020 12:15 pm
    A

    Please refer to the attachment section. Manual/... Read more

  5. 0 votes
    Q How long I can put this sensor in water immersed? answer now
    Asked by aatish.khan on February 4, 2020 12:59 am
    A

    Please go through the manual in the documentati... Read more

  6. 0 votes
    Q is this can be used for soil testing answer now
    Asked by Anonymous user on January 7, 2020 9:53 am
    A

    No, This sensor can be used to measure the PH v... Read more

    A

    No, This sensor can be used to measure the PH v... Read more

Only registered users are eligible to enter questions
Country Of Origin: China