

The TDS75 Flowmeter, manufactured by PCE, is a precision instrument designed to measure the flow rate of liquids with high accuracy and reliability. It is widely used in industrial, commercial, and laboratory applications where precise flow measurement is critical. The TDS75 features advanced technology, including digital displays and communication interfaces, making it easy to integrate into modern control systems.








| Parameter | Specification |
|---|---|
| Manufacturer | PCE |
| Model Number | TDS75 |
| Measurement Range | 0.1 L/min to 100 L/min |
| Accuracy | ±1% of reading |
| Operating Temperature | -10°C to 80°C |
| Operating Pressure | Up to 10 bar |
| Output Signal | 4-20 mA, Pulse, or RS485 |
| Power Supply | 12-24 V DC |
| Display | Digital LCD |
| Communication Protocol | Modbus RTU (via RS485) |
| Material | Stainless Steel (sensor body) |
| Ingress Protection | IP65 |
The TDS75 Flowmeter features a standard 4-pin connector for power and signal output. The pin configuration is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | V+ | Positive power supply (12-24 V DC) |
| 2 | GND | Ground (0 V) |
| 3 | Signal Out | Flow rate output (4-20 mA or Pulse) |
| 4 | RS485 A/B | RS485 communication line (A/B differential pair) |
The TDS75 Flowmeter can be connected to an Arduino UNO to read flow rate data via the analog signal output. Below is an example code snippet:
// Example code to read flow rate from TDS75 Flowmeter using Arduino UNO
const int flowPin = A0; // Analog pin connected to Signal Out of TDS75
float flowRate = 0.0; // Variable to store the flow rate
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(flowPin, INPUT); // Set flowPin as input
}
void loop() {
int sensorValue = analogRead(flowPin); // Read analog signal from TDS75
// Convert sensor value to flow rate (example conversion factor: 0.1 L/min per unit)
flowRate = sensorValue * 0.1;
Serial.print("Flow Rate: ");
Serial.print(flowRate);
Serial.println(" L/min");
delay(1000); // Wait for 1 second before next reading
}
Note: The conversion factor (0.1 L/min per unit) is an example. Refer to the TDS75 datasheet for the exact conversion formula.
No Output Signal
Inaccurate Flow Readings
RS485 Communication Failure
Display Not Working
Q1: Can the TDS75 measure flow rates of gases?
A1: No, the TDS75 is designed specifically for liquid flow measurement and is not suitable for gases.
Q2: What is the maximum cable length for RS485 communication?
A2: The maximum cable length for RS485 communication is typically 1200 meters, but this may vary depending on the cable quality and environmental conditions.
Q3: How often should the flowmeter be calibrated?
A3: Calibration frequency depends on the application and usage conditions. For critical applications, annual calibration is recommended.
Q4: Can the TDS75 handle corrosive liquids?
A4: The TDS75 is made of stainless steel, which provides good resistance to many chemicals. However, verify compatibility with the specific liquid before use.