Soil humidity

Overview #

Soil moisture sensors measures the amount of water in the soil to maintain consistent and ideal soil conditions for plants. They can be used to detect the moisture of soil or judge if there is water around the sensor. They can be very easy to use, just insert it into the soil and then read it. However, be aware that the soil-water-plant interactions are very complex and cannot simply be assessed by just a simple soil moisture measure.

Documentation for this kind sensor is available here.

soil-sensor

soil-sensor

Connecting to Arduino #

There are only three pins that you need to worry about on most of these soil humidity sensors that are simple analog sensors. The common principle is to power the sensor and get the output voltage on an analog pin, e.g. A0.

soil-sensor

soil-sensor

Code example #

/********************
 * Soil humidity sensor tester
 * Read soil humidity by measuring its resistance.
 ********************/

int sensorPin = A0;
int soilHumidity = -1;

void setup() {
  Serial.begin(38400);
  //A1 can be used to power the sensor to have dynamic behavior 
  pinMode(A1,OUTPUT);
	digitalWrite(A1,HIGH);    
}

void loop() {
  soilHumidity = analogRead(sensorPin);
  Serial.println(soilHumidity);
  delay(100);
}
The raw source of the sketch example is visible here.

Going further #

With this kind of sensors, it is very important to have a sensor calibration procedure in order to determine the typical response of your own sensor. For users who want to go further they can also look at this very interesting Adafruit tutorial on sensor calibration.

For the specific purpose of optimizing irrigation system, you can have a look at the PRIMA INTEL-IRRIS project which objectives are to provide low-cost sensing yet efficient technologies for small-scale farming. To reach a high level of accuracy with low-cost sensors, the project uses advanced calibration, advanced soil-water-plant models and AI/ML technologies. See INTEL-IRRIS’s scientific methodology and the project presentation.

Enjoy!

2018 - Muhammad Ehsan, Mamour Diop & Congduc Pham