The Atlas Scientific ORP Board (part ID: KIT-104O) is a high-quality circuit component designed for measuring the oxidation-reduction potential (ORP) in aqueous solutions. ORP is a critical parameter in water quality analysis, indicating the degree to which a substance can oxidize or reduce another substance. This board is commonly used in environmental monitoring, aquaculture, and water treatment processes.
Pin Number | Function | Description |
---|---|---|
1 | BNC Connector | Connects to the ORP probe |
2 | Gain | Sets the gain (unused in most applications) |
3 | Temp | Optional temperature sensor input |
4 | GND | Ground |
5 | V+ | Positive supply voltage (3.3V to 5V) |
6 | TX (Output) | Serial data output (TX) |
7 | RX (Input) | Serial data input (RX) |
Q: Can the ORP Board be used in saltwater applications? A: Yes, the ORP Board is suitable for use in both freshwater and saltwater applications.
Q: What is the recommended calibration solution? A: Atlas Scientific provides ORP calibration solutions that are specifically designed for use with their probes.
Q: How often should the ORP probe be calibrated? A: Calibration frequency depends on usage, but it is generally recommended to calibrate the probe once a month or whenever the accuracy is in question.
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
void setup() {
Serial.begin(9600);
mySerial.begin(9600);
}
void loop() {
if (mySerial.available()) {
char inChar = (char)mySerial.read();
Serial.print(inChar);
}
if (Serial.available()) {
char inChar = (char)Serial.read();
mySerial.print(inChar);
}
}
SoftwareSerial mySerial(10, 11);
sets up a software serial port on pins 10 (RX) and 11 (TX).Serial.begin(9600);
and mySerial.begin(9600);
initialize both the hardware and software serial ports at a baud rate of 9600.loop()
function reads from one serial port and writes to the other, allowing for communication between the Arduino and the ORP Board.Note: This example assumes that the ORP Board is set to the default baud rate of 9600. If you have changed the default settings, adjust the baud rate in the code accordingly.