รหัสสินค้า | AS00485 |
หมวดหมู่ | วัดสภาพแวดล้อมและแก๊ส Environmental / Gas |
ราคา | 5,250.00 บาท |
สถานะสินค้า | พร้อมส่ง |
จำนวน | ชิ้น |
ORP Signal Converter
Industrial ORP Probe
Hardware
Software
Connect modules according to the wiring diagram
Upload the sample code and insert the probe into the liquid to be tested
Simply insert the terminal electrode into the measured liquid and read the data. ORP probes are not completely waterproof, so do not immerse the probe all the way into the liquid.
It is recommended to use high-quality linear regulated power source or fully-charged lithium battery to supply power for Arduino. The closer the voltage is to 5V, the less the voltage changes, and the higher the measurement accuracy will be.
ORP electrodes can be used directly without calibration. ORP standards can be used to detect if the probe or signal converter is damaged only when the test results are in doubt.
#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);
}
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
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.
Provide a accurately stable 5V power supply or reference voltage for the MCU or ADC used to read the analog voltage
Calibrate ORP signal converter as follows:
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.
Remove the ORP probe and use wire to short-circuit the S+ and S- pins of the ORP signal converter
Upload sample code -1 and turn on the serial port monitor to record the reference voltage
Revise sample code -2, set the 0 in DFRobot_ORP_PRO ORP(0); to the just recorded reference voltage value
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.
#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);
}
#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);
}
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
ORP industrial probes can be connected to the container by pipe threads of G3/4
Gravity: Analog ORP Sensor PRO kits come with two types of waterproof connectors that make it easy to set up a waterproof measurement system.
Do the ORP probe need to be calibrated? How often?
How to clean the ORP probe?
How long can ORP electrodes be used?
ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB
กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ
ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ
https://www.arduitronics.com/informpayment
หน้าที่เข้าชม | 15,375,197 ครั้ง |
ผู้ชมทั้งหมด | 5,878,275 ครั้ง |
เปิดร้าน | 21 พ.ค. 2556 |
ร้านค้าอัพเดท | 5 ก.ย. 2568 |