Wish List 0

Electrode Probe For Liquid Ph Value Detection Sensor Module

Rs. 639.00 Rs. 735.00

  • Product Code: SEN-PH
  • SKU -
  • Availability: In Stock
  • Price in reward points: 6
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-This is Electrode Probe for Liquid pH Value Detection Sensor Module.
-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 Liquid pH Value Detection Sensor.
-This probe can be used with this pH sensor module.
-The electrode is made of a pH glass electrode and a reference electrode combined composite electrode, which is pH meter measuring sensor for measuring the concentration of an aqueous solution of H (pH value), it is widely used in various fields to be detected in the pH.
-The PH electrode has a single cylinder that allows direct connection to the input terminal of a PH meter, controller, or any PH device which has a BNC input terminal.
-The PH electrode probe is accurate and reliable that can give almost instantaneous readings.

Features:
-BNC Connector is suitable for most PH meter and controller.
-Suitable for a wide range of application: Aquariums, Hydroponics, Laboratory, etc.

SPECIFICATIONS:
pH Range                       0-14 pH
Operating Temperature (°C)     0 ~ 80
Zero Point                     7±0.5 pH
Alkali Error                   0.2 pH
Theoretical Percentage Slope   ≧98.5%
Internal Resistance            ≦250MΩ
Response Time                  ≦1min
Terminal Blocks BNC plug
Total Probe Length (m)         Approx 1m
Weight (gm)                    56
Shipment Weight                0.225 kg
Shipment Dimensions            24 × 10 × 5 cm
OVERVIEW:
PH range                      0-14 PH
Temperature range             0-60℃
Zero-point                    7 ± 0.5PH
Alkali Error                  0.2PH
Theoretical Percentage Slope  ≧98.5%
Internal Resistance           ≦250MΩ
Response Time                 ≦1min

PACKAGE INCLUDES:

1 PCS x Electrode Probe Liquid Ph Value Detection Sensor Module


/*SOURCE CODE TAKEN FROM BELOW LINK

https://www.dfrobot.com/product-1025.html

# This sample codes is for testing the pH meter V1.0.

 # Editor : YouYou

 # Date   : 2013.10.12

 # Ver    : 0.1

 # Product: pH meter

 # SKU    : SEN0161

*/


#define SensorPin 0          //pH meter Analog output to Arduino Analog Input 0

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


}




15 days

Write a review

Please login or register to review