The Capacitive Soil Moisture Sensor v2.0 by DFRobot is a reliable and durable sensor designed to measure the volumetric water content in soil. Unlike traditional resistive sensors, this sensor uses capacitive sensing technology, which eliminates the risk of corrosion and ensures long-term stability. It outputs an analog voltage corresponding to the soil moisture level, making it ideal for applications requiring precise and consistent moisture readings.
Below are the key technical details of the Capacitive Soil Moisture Sensor v2.0:
Parameter | Specification |
---|---|
Operating Voltage | 3.3V - 5.5V |
Output Voltage Range | 0V - 3V (analog output) |
Current Consumption | < 20mA |
Interface Type | Analog |
Dimensions | 98mm x 23mm |
Weight | 15g |
Operating Temperature | -40°C to 85°C |
Material | Corrosion-resistant PCB |
The sensor has a 3-pin interface for easy connection to microcontrollers:
Pin | Name | Description |
---|---|---|
1 | VCC | Power supply pin. Connect to 3.3V or 5V depending on your microcontroller. |
2 | GND | Ground pin. Connect to the ground of your circuit. |
3 | AOUT | Analog output pin. Outputs a voltage proportional to the soil moisture level. |
Connect the Sensor:
Insert the Sensor:
Read the Output:
Below is an example Arduino sketch to read and display the sensor's output:
// Capacitive Soil Moisture Sensor v2.0 Example Code
// This code reads the analog output of the sensor and displays the moisture level
// on the Serial Monitor.
const int sensorPin = A0; // Define the analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
pinMode(sensorPin, INPUT); // Set the sensor pin as an input
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the analog value from the sensor
Serial.print("Soil Moisture Level: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(1000); // Wait for 1 second before taking the next reading
}
No Output or Incorrect Readings:
Fluctuating Readings:
Sensor Not Responding:
Output Voltage Does Not Change:
Q1: Can this sensor be used outdoors?
A1: Yes, the sensor is designed for outdoor use, but it is recommended to protect the connections from water and extreme weather.
Q2: How do I calibrate the sensor?
A2: Measure the sensor's output voltage in completely dry soil and fully saturated soil. Use these values to map the readings to a percentage scale.
Q3: Can I use this sensor with a Raspberry Pi?
A3: Yes, but since the Raspberry Pi lacks an analog input, you will need an ADC (Analog-to-Digital Converter) module to read the sensor's output.
Q4: What is the lifespan of the sensor?
A4: The sensor is durable and corrosion-resistant, but its lifespan depends on usage conditions. Proper care and protection can extend its life significantly.