Gravity_Analog_ORP_Sensor_PRO_SKU_SEN0464-DFRobot

Introduction

As an upgraded version of industrial Gravity: ORP Sensor Meter For Arduino, this new generation ORP probe employs platinum indicator electrode and silver-silver chloride reference electrode, which makes it available for 24-hour online ORP monitoring and greatly enhances product durability. The new signal converter adds a more stable voltage reference so that the sensor readings would be no longer affected by supply voltage fluctuations. Besides, there are screws, copper columns and waterproof connectors included in the accessory packet to help you conveniently build up ORP monitoring system.

ORP(Oxidation-Reduction Potential) is a measure of the ability of oxidation and reduction of an aqueous solution, which the relative degree of oxidizing or reducing. The unit is mV. If the oxidation reduction potential is high then chemical oxidation is strong , while if the potential is lower then oxidation is weaker. The positive potential means that solution shows a certain degree of oxidation, while the negative potential means that solution shows a certain degree of reduction. ORP is an important index of water quality detection, although it can not separate water quality independently, it can be combined with other water quality indexes to reflect the ecological environment better.

⚠ Note

Specification

ORP Signal Converter

Industrial ORP Probe

Board Overview

引脚说明

Electrode Input

Signal Output

Tutorial

Requirements

Connection Diagram

SEN0464 接线图

Operation

  1. Connect modules according to the wiring diagram

  2. Upload the sample code and insert the probe into the liquid to be tested

⚠ Measurement Note

Sample Code

#include "DFRobot_ORP_PRO.h"

#define PIN_ORP A1
#define ADC_RES 1024
#define V_REF 5000

float ADC_voltage;

DFRobot_ORP_PRO ORP(0);

void setup() {
  Serial.begin(115200);
}

void loop() {
  ADC_voltage = ((unsigned long)analogRead(PIN_ORP) * V_REF + ADC_RES / 2) / ADC_RES;
  Serial.print("ORP value is : ");
  Serial.print(ORP.getORP(ADC_voltage));
  Serial.println("mV");
  delay(1000);
}

Result

Serial output ORP measurement data

ORP value is: 244 mV
ORP value is: 244 mV
ORP value is: 245 mV
ORP value is: 245 mV
ORP value is: 245 mV

Accuracy Improvement

Due to differences among electronic components and interference from power supply, notable errors may be resulted in when measuring directly. The following methods are recommended to reduce errors and improve accuracy.

  1. Provide a accurately stable 5V power supply or reference voltage for the MCU or ADC used to read the analog voltage

  2. Calibrate ORP signal converter as follows:

Zero Calibration

Although voltage reference chips can provide stable reference voltage, due to the differences of electronic components, there may be up to 50mV voltage differences among different chips. ORP measurement accuracy can be improved by measuring reference voltage in advance for correction.

  1. Remove the ORP probe and use wire to short-circuit the S+ and S- pins of the ORP signal converter

  2. Upload sample code -1 and turn on the serial port monitor to record the reference voltage

  3. Revise sample code -2, set the 0 in DFRobot_ORP_PRO ORP(0); to the just recorded reference voltage value

  4. Upload the sample code -2, the sensor readings will be corrected at the point

If the power supply or ORP signal converter is replaced, the correction value needs to be recalibrated.

Sample Code -1

#define PIN_ORP A1
#define ADC_RES 1024
#define V_REF 5000

void setup()
{
  Serial.begin(115200);
}

void loop()
{
  Serial.println((((long)analogRead(PIN_ORP)*V_REF + ADC_RES / 2) / ADC_RES) - 2480);
  delay(1000);
}

Sample Code -2

#include "DFRobot_ORP_PRO.h"

#define PIN_ORP A1
#define ADC_RES 1024
#define V_REF 5000

unsigned int ADC_voltage;

DFRobot_ORP_PRO ORP(-9);//set reference voltage mv

void setup() {
  Serial.begin(115200);

  Serial.print("calibration is: ");
  Serial.print(ORP.getCalibration());
  Serial.println(" mV");
}

void loop() {
  ADC_voltage = ((unsigned long)analogRead(PIN_ORP) * V_REF + ADC_RES / 2) / ADC_RES;
  Serial.print("ORP value is: ");
  Serial.print(ORP.getORP(ADC_voltage));
  Serial.println(" mV");
  delay(1000);
}

Measurement results after calibration

ORP value is: -59.00 mV
ORP value is: -59.00 mV
ORP value is: -59.00 mV
ORP value is: -59.00 mV
ORP value is: -59.00 mV

Fix Probe

ORP industrial probes can be connected to the container by pipe threads of G3/4

Waterproof Connection

Gravity: Analog ORP Sensor PRO kits come with two types of waterproof connectors that make it easy to set up a waterproof measurement system.

FAQ

More Documents

DFshopping_car1.png Get Gravity Analog ORP Sensor PRO from DFRobot Store or DFRobot Distributor.

Turn to the Top