Due to the COVID 19 epidemic, orders may be processed with a slight delay

Search

In Stock

PH Sensor Analog Kit

Specifications:

  1. Module Power : 5.00V
  2. Module Size : 43 x 32mm
  3. Measuring Range :0 – 14PH
  4. Measuring Temperature: 0 – 60 °C
  5. Accuracy : ± 0.1pH (25 °C)
  6. Response Time : ≤ 1min
  7. pH Sensor with BNC Connector
  8. pH2.0 Interface ( 3 foot patch )
  9. Gain Adjustment Potentiometer
  10. Power Indicator LED

2,649.00

Compare
SKU:cds-s-wm-ph-sak

Download Datasheet

 

DEMO Code:

/*
# 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 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);
}

Reviews

There are no reviews yet.

Write a review

Your email address will not be published. Required fields are marked *

Bestsellers

Compare

WATER FLOW SENSOR BIG YFG1

802.40
(0 Reviews)
Specifications: Mini. Working Voltage: DC 4.5V Working Voltage: DC 5V~18V Flow Rate Range: 2~100L/min Water pressure resistance: = >2MP Operating Temperature: = -20~85C Insulation resistance: = >100MΩ Characteristics of Flow pulse: f=(4.8*Q) Q=L/Min Accuracy: ±3% Connector type: G1
Compare

Capacitive Soil Moisture Sensor V2.0

188.80
(0 Reviews)
Specifications:
  1. Operating Voltage: 3.3 ~ 5.5 VDC.
  2. Operating Current: 5mA.
  3. Interface: PH2.54-3P.
  4. Dimensions mm(LxWxH): 98 x 23 x 4.
  5. Supports 3-Pin Gravity Sensor interface
  6. Analog output.
  7. Weight (gm): 15.
Compare

Water Flow Sensor YF-S401 Flowmeter 0.3-6L/min 2mm White

472.00
(0 Reviews)
Specifications:
  1. Model: YF-S401
  2. Working Voltage: DC 5V~24V
  3. Maximum Working Current: 15mA @ 5V DC
  4. Flow Rate Range: 0.3~6L/min
  5. Outer diameter: 7mm
  6. Inner Diameter: 4mm
  7. Load Capacity: ≤10mA (DC 5V)
  8. Operating Temperature: ≤80℃
  9. Liquid Temperature: ≤120℃
  10. Operating Humidity: 35%-90%RH
  11. Water Pressure: ≤0.8MPa
Compare

Float Sensor Water/Liquid Level Switch Black

236.00
(0 Reviews)
Specifications:
  1. Rating contract (Max.): 10 W
  2. Switching power supply (Max.): 110VDC
  3. Resistance contract (Max.): 100 Ω
  4. Appro. Float Ball Size (mm) : 24×17 (LxD)
  5. Body Total Length (mm) : 85
  6. Cable Length (cm) : 37
Compare

Water Flow Sensor YF-S401 Flowmeter 0.3-6L/min 3.5mm White

472.00
(0 Reviews)
Specifications:
  1. Model: YF-S401
  2. Working Voltage: DC 5V~24V
  3. Maximum Working Current: 15mA @ 5V DC
  4. Flow Rate Range: 0.3~6L/min
  5. Outer diameter: 7mm
  6. Inner Diameter: 4mm
  7. Load Capacity: ≤10mA (DC 5V)
  8. Operating Temperature: ≤80℃
  9. Liquid Temperature: ≤120℃
  10. Operating Humidity: 35%-90%RH
  11. Water Pressure: ≤0.8MPa
Compare

Float Sensor Water/Liquid Level Switch White (30 MM)

212.40
(0 Reviews)
Specifications:
  1. Contact Rating: 10 W.
  2. Switching Voltage: 220 V.
  3. Switching Current: 0.5 A.
  4. Breakdown Voltage: 220 VDC.
  5. Carry Current: 1 A.
  6. Contact Resistance: 100 mΩ.
Compare

WATER FLOW SENSOR YF201

273.76
(0 Reviews)
Specifications:
  1. 1/2″ nominal pipe connections, 0.78″ outer diameter, 1/2″ of thread
  2. The simple and compact module
  3. Easy to Install
  4. Working Voltage: 5 to 18V DC (min tested working voltage 4.5V)
  5. Max current draw: 15mA @ 5V
  6. Working Flow Rate: 1 to 30 Liters/Minute
  7. Maximum water pressure: 2.0 MPa
  8. Flow rate pulse characteristics: Frequency (Hz) = 7.5 * Flow rate (L/min)

Back to Top
Product has been added to your cart