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 quality, which is often used in water culture, aquaculture, environmental water detection and other fields. It supports 3 ~ 5V wide voltage input, and is compatible with 5V and 3.3V main control board. The output signal filtered by hardware has low jitters; the excitation source adopts AC signal, which effectively reduces the polarization effect, improves the precision and prolongs the life of the probe; The software library uses two-point calibration method, and can automatically identify standard buffer solution, so simple and convenient.
With this product, main control board (such as Arduino) and the software library, you can quickly build an electrical conductivity meter, plug and play, no welding. DFRobot provides a variety of water quality sensor products, uniform size and interface, not only meet the needs of various water quality testing, but also suitable for the DIY of multi-parameter water quality tester. Conductivity is the reciprocal of the resistance, which is related to the ability of the material to carry the current. In the liquid, the reciprocal of the resistance, the conductivity, is the measure of its ability to conduct electricity. Conductivity is an important parameter of water quality. It can reflect the extent of electrolytes present in water.
Please Note: In order to ensure the measurement accuracy, it is strongly recommended to add a temperature sensor to measure the temperature, and achieve automatic temperature compensation. DS18B20 waterproof temperature sensor can also be used.
Quick Spec
Signal Conversion Board (Transmitter) V2
- Supply Voltage: 3.0~5.0V
- Output Voltage: 0~3.4V
- Probe Connector: BNC
- Signal Connector: PH2.0-3Pin
- Measurement Accuracy: ±5% F.S.
- Board size: 42 x 32 mm
Electrical Conductivity Probe
- Probe Type: Laboratory Grade
- Cell Constant: 1.0
- Support Detection Range: 0~20ms/cm
- Recommended Detection Range: 1~15ms/cm
- Temperature Range: 0~40°C
- Probe Life: >0.5 year (depending on frequency of use)
- Cable Length: 100cm
Please Note: The probe is a laboratory-grade probe. Do not immerse in liquid for a long time. Otherwise this will shorten the life of the probe. ThePlatinum black layer is attached to the surface of the sheet metal in the probe. It should avoid any object touching it. It can only be washed with distilled water, otherwise the platinum black layer will be damaged, resulting in inaccurate measurement.
Wiring Diagram

Sample Code
/*
* file DFRobot_EC.ino
* @ https://github.com/DFRobot/DFRobot_EC
*
* This is the sample code for Gravity: Analog Electrical Conductivity Sensor / Meter Kit V2 (K=1.0), SKU: DFR0300.
* In order to guarantee precision, a temperature sensor such as DS18B20 is needed, to execute automatic temperature compensation.
* You can send commands in the serial monitor to execute the calibration.
* Serial Commands:
* enter -> enter the calibration mode
* cal -> calibrate with the standard buffer solution, two buffer solutions(1413us/cm and 12.88ms/cm) will be automatically recognized
* exit -> save the calibrated parameters and exit from calibration mode
*
* Copyright [DFRobot](http://www.dfrobot.com), 2018
* Copyright GNU Lesser General Public License
*
* version V1.0
* date 2018-03-21
*/
#include "DFRobot_EC.h"
#include
#define EC_PIN A1
float voltage,ecValue,temperature = 25;
DFRobot_EC ec;
void setup()
{
Serial.begin(115200);
ec.begin();
}
void loop()
{
static unsigned long timepoint = millis();
if(millis()-timepoint>1000U) //time interval: 1s
{
timepoint = millis();
voltage = analogRead(EC_PIN)/1024.0*5000; // read the voltage
//temperature = readTemperature(); // read your temperature sensor to execute temperature compensation
ecValue = ec.readEC(voltage,temperature); // convert voltage to EC with temperature compensation
Serial.print("temperature:");
Serial.print(temperature,1);
Serial.print("^C EC:");
Serial.print(ecValue,2);
Serial.println("ms/cm");
}
ec.calibration(voltage,temperature); // calibration process by Serail CMD
}
float readTemperature()
{
//add your code here to get the temperature from your temperature sensor
}
Resources
Shipping List
- 1 x Electrical Conductivity Probe(K=1,Laboratory Grade
- 1 x Signal Conversion Board (Transmitter) V2
- 2 x Standard Buffer Solution 1413us/cm
- 2 x Standard Buffer Solution 12.88ms/cm
- 1 x Gravity Analog Sensor Cable
- 2 x Waterproof Gasket
- 1 x Screw Cap for BNC Connector
- 4 x M3 * 10 nylon pillar
- 8 x M3 * 5 screw
Analog Conductivity Sensor
- Brand: DF Robot
- Product Code: DFR0300
- Weight: 0.33kg
- 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.
-
R1,698.00 (Inc Tax: R1,952.70)
Related Products
Analog pH Meter V1.0
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 design..
R512.00 (Inc Tax: R588.80)
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)
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)
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 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)
Analog TDS Sensor
Analog TDS Sensor This is an Arduino-compatible TDS sensor/Meter Kit for measuring TDS (Total Dissolved Solids) value of the water, to reflect the cleanliness of the water. It can be applied to dom..
R240.00 (Inc Tax: R276.00)
Tags: analog, electrical, conductivity, sensor, meter, electro, water, quality, water sensor, diy, kit