The TDS Sensor Board by SQRobot is an electronic device designed to measure the Total Dissolved Solids (TDS) in a liquid, providing an indication of the purity or the concentration of dissolved ions in water. This sensor is widely used in applications such as water quality testing, hydroponics, aquariums, and environmental monitoring.
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply (3.3V to 5.5V) |
2 | GND | Ground |
3 | AOUT | Analog output voltage |
4 | TEMP | Temperature sensor output (optional use) |
// TDS Sensor Board example code for Arduino UNO
const int TDS_PIN = A0; // Analog input pin connected to TDS Sensor Board
void setup() {
Serial.begin(9600); // Start serial communication at 9600 baud rate
}
void loop() {
int tdsValue = analogRead(TDS_PIN); // Read the TDS value
float voltage = tdsValue * (5.0 / 1024.0); // Convert the analog reading to voltage
float tdsPPM = (voltage / 2.3) * 1000; // Convert voltage to TDS in ppm
Serial.print("TDS Value: ");
Serial.print(tdsPPM);
Serial.println(" ppm");
delay(1000); // Wait for a second before reading again
}
Q: Can the TDS Sensor Board be used in saltwater? A: Yes, but ensure that the measurement range of the sensor covers the expected TDS levels in saltwater.
Q: How often should the sensor be calibrated? A: Calibration frequency depends on usage, but it is generally recommended to calibrate the sensor every month or after any significant change in water quality.
Q: Is the sensor waterproof? A: The sensor probe is waterproof, but the electronic components on the board should not be submerged in water.
Q: Can the sensor measure the hardness of water? A: Indirectly, yes. TDS levels can give an indication of water hardness, but for precise measurements, a dedicated water hardness test is recommended.
For further assistance or technical support, please contact SQRobot customer service.