Wish List 0

Capacitive Soil Moisture Sensor V2.0

Rs. 50.00 Rs. 60.00

  • Product Code: SEN-SOIL
  • SKU -
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-This capacitive soil moisture sensor V2.Zero measures soil moisture tiers with the aid of capacitive sensing rather than resistive sensing like different sensors in the marketplace.
-It is made of corrosion-resistant fabric which gives it splendid service existence.
-Insert it into the soil around your vegetation and impress your pals with real-time soil moisture statistics!
-This module includes an onboard voltage regulator which offers it an operating voltage variety of three.3 ~ 5.5V.
-It is best for low-voltage MCUs, both three.3V, and 5V.
-For compatibility with a Raspberry Pi, it will want an ADC converter.
-This soil moisture sensor is well matched with our three-pin “Gravity” interface, we can connect with the Gravity I/O growth protect.


Features:
1. Supports 3-Pin Gravity Sensor interface
2. Analog output

Applications:
1. Garden plants
2. Moisture detection
3. Intelligent agriculture"

SPECIFICATIONS:
Operating Voltage    3.3 ~ 5.5 VDC
Output Voltage       0 ~ 3.0VDC
Operating Current    5mA
Interface            PH2.54-3P

OVERVIEW:

-Supports 3-Pin Gravity Sensor interface

-Analog output


Applications:

-Garden plants

-Moisture detection

-Intelligent agriculture


PACKAGE INCLUDES:

1 PCS x Capacitive Soil Moisture Sensor V2.0


/***************************************************

 This example reads Capacitive Soil Moisture Sensor.


 Created 2015-10-21

 By berinie Chen <bernie.chen@dfrobot.com>

//SOURCE CODE TAKEN FROM BELOW LINK

//https://wiki.dfrobot.com/Capacitive_Soil_Moisture_Sensor_SKU_SEN0193

 GNU Lesser General Public License.

 See <http://www.gnu.org/licenses/> for details.

 All above must be included in any redistribution

 ****************************************************/


/***********Notice and Trouble shooting***************

 1.Connection and Diagram can be found here: https://www.dfrobot.com/wiki/index.php?title=Capacitive_Soil_Moisture_Sensor_SKU:SEN0193

 2.This code is tested on Arduino Uno.

 3.Sensor is connect to Analog 0 port.

 ****************************************************/


const int AirValue = 520;   //you need to replace this value with Value_1

const int WaterValue = 260;  //you need to replace this value with Value_2

int intervals = (AirValue - WaterValue)/3;

int soilMoistureValue = 0;

void setup() {

  Serial.begin(9600); // open serial port, set the baud rate to 9600 bps

}

void loop() {

soilMoistureValue = analogRead(A0);  //put Sensor insert into soil

if(soilMoistureValue > WaterValue && soilMoistureValue < (WaterValue + intervals))

{

  Serial.println("Very Wet");

}

else if(soilMoistureValue > (WaterValue + intervals) && soilMoistureValue < (AirValue - intervals))

{

  Serial.println("Wet");

}

else if(soilMoistureValue < AirValue && soilMoistureValue > (AirValue - intervals))

{

  Serial.println("Dry");

}

delay(100);

}

https://youtu.be/pdGRs7GXBeE

15 days

Write a review

Please login or register to review