The TEROS 10 Soil Water Content Sensor by Meter Group is a high-precision sensor designed to measure the volumetric water content (VWC) in soil. This sensor provides accurate and reliable data, making it an essential tool for agricultural and environmental monitoring. Its robust design ensures durability and consistent performance in various soil conditions.
Parameter | Value |
---|---|
Manufacturer | Meter Group |
Part ID | TEROS 10 |
Measurement Range | 0 to 100% VWC |
Accuracy | ±0.03 m³/m³ (±3%) |
Resolution | 0.001 m³/m³ (0.1%) |
Power Supply Voltage | 3.6 to 15 VDC |
Current Consumption | 3 mA (typical) |
Output Signal | Analog voltage (0 to 3 V) |
Operating Temperature | -40°C to 60°C |
Cable Length | 5 meters (standard) |
Dimensions | 9.4 cm x 2.4 cm x 0.7 cm |
Pin | Name | Description |
---|---|---|
1 | VCC | Power supply (3.6 to 15 VDC) |
2 | GND | Ground |
3 | DATA | Analog voltage output proportional to VWC |
// TEROS 10 Soil Water Content Sensor Example Code
// This code reads the analog voltage from the TEROS 10 sensor and converts it
// to volumetric water content (VWC).
const int sensorPin = A0; // Analog input pin that the sensor is attached to
float sensorVoltage = 0; // Variable to store the sensor voltage
float VWC = 0; // Variable to store the volumetric water content
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
// Read the analog value from the sensor
int sensorValue = analogRead(sensorPin);
// Convert the analog value to voltage (assuming 5V reference)
sensorVoltage = sensorValue * (5.0 / 1023.0);
// Convert the voltage to volumetric water content (VWC)
// The conversion formula depends on the sensor's calibration
VWC = (sensorVoltage / 3.0) * 100.0; // Example conversion formula
// Print the VWC to the Serial Monitor
Serial.print("VWC: ");
Serial.print(VWC);
Serial.println("%");
delay(1000); // Wait for 1 second before taking another reading
}
Inaccurate Readings:
No Output Signal:
Fluctuating Readings:
By following this documentation, users can effectively utilize the TEROS 10 Soil Water Content Sensor for accurate and reliable soil moisture measurements in various applications.