The Atlas Scientific pH Probe (KIT-103P) is a highly accurate sensor designed for measuring the pH level of liquids. pH, which stands for "potential of hydrogen," is a scale used to specify the acidity or basicity of an aqueous solution. The probe is commonly used in a variety of applications including environmental monitoring, aquariums, hydroponics, and laboratory research. When paired with the Atlas Scientific pH Circuit, it provides reliable and precise pH readings that are essential for quality control and scientific analysis.
The Atlas Scientific pH Probe is designed to interface with the Atlas Scientific pH Circuit. The pH Circuit has a standard BNC connector for the probe and various pins for interfacing with microcontrollers like the Arduino UNO. Below is the pin configuration for the pH Circuit board:
Pin Label | Function | Description |
---|---|---|
VCC | Power Supply | Connect to 3.3V - 5V power supply. |
GND | Ground | Connect to the ground of the power supply. |
TX | Transmit | Serial data output. Connect to RX pin of the microcontroller. |
RX | Receive | Serial data input. Connect to TX pin of the microcontroller. |
PGND | Probe Ground | Connect to the ground sleeve of the BNC connector. |
Po | Probe Output | Connect to the signal wire of the BNC connector. |
To use the Atlas Scientific pH Probe with an Arduino UNO, follow these steps:
Connect the pH Circuit board to the Arduino as follows:
Attach the pH Probe to the BNC connector on the pH Circuit board.
Calibrate the probe using the provided calibration solutions and following the manufacturer's instructions.
Upload the following sample code to the Arduino to read pH values:
#include <SoftwareSerial.h>
SoftwareSerial mySerial(1, 0); // 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);
}
}
Q: How often should I calibrate the pH probe? A: Calibration should be performed at least once a month or whenever the accuracy of the readings is in question.
Q: Can the pH probe be used in non-aqueous solutions? A: The KIT-103P is designed for use in aqueous solutions. Using it in non-aqueous solutions may damage the probe and void the warranty.
Q: What should I do if the probe gets dry? A: If the probe dries out, immerse it in the storage solution for at least an hour to rehydrate the sensor before use.
For further assistance, refer to the manufacturer's detailed documentation and support resources.