Soil Moisture Meter, Soil Humidity Sensor, Water Sensor, Soil Hygrometer for Ardunio

₹71

In stock

  • (GST Bill) Enter your GST number at checkout
  • Free shipping on eligible prepaid orders
  • Secure payments via Razorpay and Paytm
  • Dispatch in 24 Hours from Noida warehouse!
arduino nano microcontroller programmer board with pins soldered for various robotics project
₹269
DHT11 Digital Temperature & Humidity Sensor Module
₹77
DHT22 AM2302 Digital Temperature & Humidity Sensor Module
₹177
  1. Dual output mode, analog output more accurate
  2. A fixed bolt hole for easy installation
  3. With power indicator (red) and digital switching output indicator (green)
  4. Having LM393 comparator chip, stable.
  5. Operating Voltage: 3.3V~5V
SKU: SE1134 Category:

Description

The Soil Moisture Sensor (Hygrometer Module) allows microcontrollers to measure volumetric water content in soil. The system consists of two parts: a two-pronged fork probe inserted directly into the soil and an electronic control board driven by an LM393 high-precision comparator IC.

The probe acts as a variable resistor. When the soil is dry, resistance is high, causing the digital pin (DO) to stay HIGH. When water content rises, soil conductivity increases, resistance drops, and the signal switches LOW. You can adjust the exact switching threshold with the onboard potentiometer or read continuous raw values from the analog pin (AO).


Technical Specifications

Parameter Specification
Operating Voltage 3.3V to 5.0V DC
Comparator IC LM393 Voltage Comparator
Output Type Dual Output: Digital Switch (0/1) & Analog Voltage (0–VCC)
Sensitivity Adjustment Onboard Potentiometer (for DO threshold calibration)
Status Indicators Power LED (Red) & Digital Switch Output LED (Green)
PCB Board Size ~30 mm × 15 mm
Probe Dimensions ~60 mm × 20 mm
Pinout Header 4-Pin: VCC, GND, DO, AO

Pinout Description

  • VCC: 3.3V – 5V Power Supply input.

  • GND: Ground connection.

  • DO (Digital Output): Outputs HIGH when soil is dry (below threshold) and LOW when moisture exceeds the threshold.

  • AO (Analog Output): Provides continuous analog voltage corresponding to real-time moisture levels (higher value = drier soil).


Basic Arduino Connection & Example Code

Wiring

  • VCC âž” Arduino 5V

  • GND âž” Arduino GND

  • AO âž” Arduino Analog Pin A0

  • DO âž” Arduino Digital Pin 2


C++

// Soil Moisture Sensor Example Code
const int analogPin = A0;
const int digitalPin = 2;

void setup() {
  Serial.begin(9600);
  pinMode(digitalPin, INPUT);
}

void loop() {
  int sensorValue = analogRead(analogPin);
  int digitalState = digitalRead(digitalPin);

  Serial.print("Analog Moisture Reading: ");
  Serial.print(sensorValue);
  Serial.print(" | Digital Status: ");
  Serial.println(digitalState == LOW ? "WET" : "DRY");

  delay(1000);
}

Why Buy From Aryabot?

  • Quality Assured: Pre-tested modules with calibrated comparator responses and corrosion-resistant probe traces.

  • GST Invoice Provided: Tax-compliant B2B invoices generated for commercial projects, institutional research labs, and academic orders.

  • Pan-India Dispatch: Express shipping directly from our Noida distribution warehouse.


 

* Product Images are shown for illustrative purposes only and may differ from actual product.

Additional information

Weight 0.02 kg
Dimensions 8 × 6 × 3 cm

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

You may also like…