SlideShare ist ein Scribd-Unternehmen logo
1 von 21
SOIL MOISTURE SENSOR
MSE-I
PARVESH TANEJA
Submitted by:
SOIL MOISTURE SENSOR
Fig 1: Soil Moisture Sensor (Ref)
INTRODUCTION
Soil Moisture Sensor as the name suggest ,can detect amount of moisture in
soil (roots of a plant).
 It is Low-Tech sensor.
This sensor is compatible with Arduino UNO,Arduino mega2560, Arduino ADK
etc.
WORKING PRINCIPLE
• Strictly Speaking moisture sensor does not measures moisture but measures
conductivity or resistivity of soil.
• Moisture Sensor has two probes to pass current through the soil. It then reads
resistance(conductance) in the soil.
• Less moisture (water) in soil results in higher resistance i.e. dry soil.
• More moisture (water) in soil results in lesser resistance and sensor thus
relates moisture content.
FEATURES
This sensor has low power consumption, and high sensitivity. (Sensitivity should not be
confused with accuracy)
Operates on low Voltage of 5v.
Operates on low current <20mA.
Weighs only 3 gram.
DISADVANTAGES
Depth of detection is only 37mm.
Working temperature is only 10˚-30˚ Celsius.
Less accuracy.
PIN DEFINITIONS
Fig 2.1: Soil Moisture Sensor Pins (Ref)
 Pin with “S” written on it means signal.
 Pin with “-” written on it means GND (ground) .
 Pin with “+” written on it means 5v supply.
YL69(PROBES) CONNECTED TO YL38 (INTERFACE)
This is what I will be using while
Showing Demo.
Fig 2.2: Soil Moisture Sensor unit (Ref)
Yl38 (Interface) and Yl69 (Probes)
Cost = 130 INR
YL-69 MOISTURE SENSOR (PROBES)
• This is an Electrical resistance Sensor. The sensor is made up of two electrodes. This soil moisture sensor
reads the moisture content around it. A current is passed across the electrodes through the soil and the
resistance to the current in the soil determines the soil moisture. If the soil has more water resistance
will be low and thus more current will pass through. On the other hand when the soil moisture is low
the sensor module outputs a high level of resistance.
• This sensor has both digital and analogue outputs. Digital output is simple to use but is not as accurate
as the analogue output.
YL-69 MOISTURE SENSOR(PROBES)
Fig 2.2.1: YL-69 (Probes)
YL - 38 INTERFACE FOR YL-69 PROBES
• The sensor comes with a small PCB board fitted with LM393 comparator chip and a potentiometer.
• Output signal Pins (Both Analog and Digital).
• Input Power pins for the sensor is also present on this PCB.
Fig 2.2.2: YL-38 (Interface)
CONNECTING DIAGRAM
Fig 3.1: Soil Moisture Sensor connected to Arduino (Ref)
PICTOGRAPHIC REPRESENTATION
Fig 3.2: Soil Moisture Sensor connected to Arduino (Ref)
HARDWARE REQUIRED
 Arduino UNO(Fig 4)
 Soil Moisture Sensor(Fig 5)
 3 Pin Dual Female Jumper wire(Fig 6)
 Sensor shield (Optional, not required)
Fig 4:Arduino UNO (Ref)
Fig 6:Female Jumper Wire(Ref)
Fig 5:Soil Moisture Sensor (Ref)
SIMPLE BASIC SKETCH-1
• void setup() {
• // put your setup code here, to run once:
• // initialize serial communication at 9600 bits per second:
• Serial.begin(9600);
• }
• void loop() {
• // put your main code here, to run repeatedly:
• // read the input on analog pin 0:
• int sensorValue = analogRead(A0); Serial.println(sensorValue);
• delay(100);
• }
SIMPLE BASIC SKETCH-2
void setup() {
Serial.begin(9600);
}
void loop(){
if(analogRead(A0)<300){
Serial.println("I feel so comfortable");
}
if(analogRead(A0)>300 && analogRead(5)<700){
Serial.println("I am thirsty ,please give me water");
}
if(analogRead(A0)>700){
Serial.println("Too much water,I might get hurt");
}
delay(200);
}
TEST RESULTS:
• Moisture content is less in soil.
TEST RESULTS CONTINUE:
After watering :
• Moisture content is within the range in soil.
TEST RESULTS CONTINUE:
Adding more water :
• Moisture content is out of range in soil.
REFERENCE
S.No. LINK
1. http://www.fut-electronics.com/wp-content/plugins/fe_downloads/Uploads/moisture-sensor-arduino.pdf
2. http://lowtech.propositions.org.uk/lowtech-sensors-and-actuators.pdf
3. https://arduino-info.wikispaces.com/SensorShield
THANK YOU 
• Keep Experimenting 
• Keep Loving Open Source.

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Fire fighting robot ppt
Fire fighting robot pptFire fighting robot ppt
Fire fighting robot ppt
 
Smart Irrigation ppt
Smart Irrigation pptSmart Irrigation ppt
Smart Irrigation ppt
 
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPTAUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
 
Automated plant watering system
Automated plant watering systemAutomated plant watering system
Automated plant watering system
 
Sensor interfacing in 8051
Sensor interfacing in 8051Sensor interfacing in 8051
Sensor interfacing in 8051
 
Basic Sensors Technology
Basic Sensors TechnologyBasic Sensors Technology
Basic Sensors Technology
 
Automatic irrigation system ppt
Automatic irrigation system pptAutomatic irrigation system ppt
Automatic irrigation system ppt
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
 
Smart irrigation ppt
Smart irrigation pptSmart irrigation ppt
Smart irrigation ppt
 
Embedded Systems - Training ppt
Embedded Systems - Training pptEmbedded Systems - Training ppt
Embedded Systems - Training ppt
 
Automatic Irrigation System
Automatic Irrigation SystemAutomatic Irrigation System
Automatic Irrigation System
 
Smart Irrigation System Using IoT
Smart Irrigation System Using IoTSmart Irrigation System Using IoT
Smart Irrigation System Using IoT
 
Distance Measurement by Ultrasonic Sensor
Distance Measurement by Ultrasonic SensorDistance Measurement by Ultrasonic Sensor
Distance Measurement by Ultrasonic Sensor
 
Sensor Lecture Interfacing
 Sensor Lecture Interfacing Sensor Lecture Interfacing
Sensor Lecture Interfacing
 
Wi-Fi Esp8266 nodemcu
Wi-Fi Esp8266 nodemcu Wi-Fi Esp8266 nodemcu
Wi-Fi Esp8266 nodemcu
 
Landmines Detection
Landmines DetectionLandmines Detection
Landmines Detection
 
arduino based automatic irrigation system
arduino based automatic irrigation systemarduino based automatic irrigation system
arduino based automatic irrigation system
 
Smart irrigation system using Internet Of Things
Smart irrigation system using Internet Of ThingsSmart irrigation system using Internet Of Things
Smart irrigation system using Internet Of Things
 
Embedded System Presentation
Embedded System PresentationEmbedded System Presentation
Embedded System Presentation
 
IOT based smart agriculture monitoring.pptx
IOT based smart agriculture monitoring.pptxIOT based smart agriculture monitoring.pptx
IOT based smart agriculture monitoring.pptx
 

Andere mochten auch

Ppt for automatic plant irrigation system
Ppt for automatic plant irrigation systemPpt for automatic plant irrigation system
Ppt for automatic plant irrigation system
stk25
 
Wireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsWireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensors
Sudhanshu Tripathi
 
Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2
Puja Singh
 
Automated water planting system
Automated water planting systemAutomated water planting system
Automated water planting system
Mayank Kumbhaj
 

Andere mochten auch (20)

Sensors for water level, soil moisture temp & r.humidity
Sensors for water level, soil moisture temp & r.humiditySensors for water level, soil moisture temp & r.humidity
Sensors for water level, soil moisture temp & r.humidity
 
Soil Moisture Monitoring
Soil Moisture MonitoringSoil Moisture Monitoring
Soil Moisture Monitoring
 
Ppt for automatic plant irrigation system
Ppt for automatic plant irrigation systemPpt for automatic plant irrigation system
Ppt for automatic plant irrigation system
 
Soil moistur
Soil moisturSoil moistur
Soil moistur
 
A REVIEW OF VARIOUS SOIL MOISTUREMEASUREMENT TECHNIQUES
A REVIEW OF VARIOUS SOIL MOISTUREMEASUREMENT TECHNIQUESA REVIEW OF VARIOUS SOIL MOISTUREMEASUREMENT TECHNIQUES
A REVIEW OF VARIOUS SOIL MOISTUREMEASUREMENT TECHNIQUES
 
Soil moisture
Soil moistureSoil moisture
Soil moisture
 
Wireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensorsWireless greenhouse environment monitoring through sensors
Wireless greenhouse environment monitoring through sensors
 
Design Development of Water Monitoring Systems by Using Arduino and Sensors
Design Development of Water Monitoring Systems by Using Arduino and SensorsDesign Development of Water Monitoring Systems by Using Arduino and Sensors
Design Development of Water Monitoring Systems by Using Arduino and Sensors
 
Arduino based intelligent greenhouse Project
Arduino based intelligent greenhouse ProjectArduino based intelligent greenhouse Project
Arduino based intelligent greenhouse Project
 
Digital Soil Moisture Sensor
Digital Soil Moisture SensorDigital Soil Moisture Sensor
Digital Soil Moisture Sensor
 
Microcontroller based irrigation
Microcontroller based irrigationMicrocontroller based irrigation
Microcontroller based irrigation
 
Embedded green house automation system
Embedded green house automation systemEmbedded green house automation system
Embedded green house automation system
 
Soil moisture
Soil moistureSoil moisture
Soil moisture
 
Application of Soil Moisture Sensors in Agriculture: A Review
Application of Soil Moisture Sensors in Agriculture: A ReviewApplication of Soil Moisture Sensors in Agriculture: A Review
Application of Soil Moisture Sensors in Agriculture: A Review
 
Automatic Plant Fertilization based on Soil Humidity utilising Arduino and So...
Automatic Plant Fertilization based on Soil Humidity utilising Arduino and So...Automatic Plant Fertilization based on Soil Humidity utilising Arduino and So...
Automatic Plant Fertilization based on Soil Humidity utilising Arduino and So...
 
Pengukuran kelembaban tanah dengan moisture sensor berbasis fix
Pengukuran kelembaban tanah dengan  moisture sensor berbasis fixPengukuran kelembaban tanah dengan  moisture sensor berbasis fix
Pengukuran kelembaban tanah dengan moisture sensor berbasis fix
 
Automated greenhouse
Automated greenhouseAutomated greenhouse
Automated greenhouse
 
Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2
 
Automated water planting system
Automated water planting systemAutomated water planting system
Automated water planting system
 
Green house weather control system
Green house weather control systemGreen house weather control system
Green house weather control system
 

Ähnlich wie Soil Moisture Sensor and Arduino

irrigationsystem using wind energy and water lifting
irrigationsystem using wind energy and water liftingirrigationsystem using wind energy and water lifting
irrigationsystem using wind energy and water lifting
Hamed Raza
 
line following robot
line following robotline following robot
line following robot
Rehnaz Razvi
 
Ppt on water level indicator
Ppt on water level indicatorPpt on water level indicator
Ppt on water level indicator
palwinder virk
 

Ähnlich wie Soil Moisture Sensor and Arduino (20)

irrigationsystem using wind energy and water lifting
irrigationsystem using wind energy and water liftingirrigationsystem using wind energy and water lifting
irrigationsystem using wind energy and water lifting
 
Arduino
ArduinoArduino
Arduino
 
Adding Remote Controller Functionality To Any Stereo
 Adding Remote Controller Functionality To Any Stereo Adding Remote Controller Functionality To Any Stereo
Adding Remote Controller Functionality To Any Stereo
 
water level edit.docx
water level edit.docxwater level edit.docx
water level edit.docx
 
Lab2ppt
Lab2pptLab2ppt
Lab2ppt
 
Sensors.pptx
Sensors.pptxSensors.pptx
Sensors.pptx
 
Plant watering system
Plant watering systemPlant watering system
Plant watering system
 
PRE PROJECT.pptx
PRE PROJECT.pptxPRE PROJECT.pptx
PRE PROJECT.pptx
 
GSM based agriculture monitoring system
GSM based agriculture monitoring systemGSM based agriculture monitoring system
GSM based agriculture monitoring system
 
PPT iot based smart rrigration system pptx.pptx
PPT iot based smart rrigration system pptx.pptxPPT iot based smart rrigration system pptx.pptx
PPT iot based smart rrigration system pptx.pptx
 
line following robot
line following robotline following robot
line following robot
 
publish manual
publish manualpublish manual
publish manual
 
Smart Blind stick by using arduino uno and sensor
 Smart Blind stick  by using arduino  uno  and sensor Smart Blind stick  by using arduino  uno  and sensor
Smart Blind stick by using arduino uno and sensor
 
Automatic Door Opener using PIR Sensor
Automatic Door Opener using PIR SensorAutomatic Door Opener using PIR Sensor
Automatic Door Opener using PIR Sensor
 
3030
30303030
3030
 
rain.pptx
rain.pptxrain.pptx
rain.pptx
 
Emotional Stress Indicator and Digital Thermometer-Project-8thsem
Emotional Stress Indicator and Digital Thermometer-Project-8thsemEmotional Stress Indicator and Digital Thermometer-Project-8thsem
Emotional Stress Indicator and Digital Thermometer-Project-8thsem
 
ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
Ppt on water level indicator
Ppt on water level indicatorPpt on water level indicator
Ppt on water level indicator
 

Mehr von Parvesh Taneja

Mehr von Parvesh Taneja (16)

Transient Analysis of 12V DC Power Supply_F.pdf
Transient Analysis of 12V DC Power Supply_F.pdfTransient Analysis of 12V DC Power Supply_F.pdf
Transient Analysis of 12V DC Power Supply_F.pdf
 
Anveshna abstract ncr-2016
Anveshna abstract ncr-2016Anveshna abstract ncr-2016
Anveshna abstract ncr-2016
 
Vertical farming Project
Vertical farming ProjectVertical farming Project
Vertical farming Project
 
Report on pumps
Report on pumpsReport on pumps
Report on pumps
 
Subject studied during Mechanical Engineering at Gd Goenka University
Subject studied during Mechanical Engineering at Gd Goenka UniversitySubject studied during Mechanical Engineering at Gd Goenka University
Subject studied during Mechanical Engineering at Gd Goenka University
 
CUTTING TOOLS USED FOR CUTTING OF STONE
CUTTING TOOLS USED FOR CUTTING OF STONECUTTING TOOLS USED FOR CUTTING OF STONE
CUTTING TOOLS USED FOR CUTTING OF STONE
 
Foundation of Computational Fluid Dynamics Parvesh Taneja
Foundation of Computational Fluid Dynamics Parvesh TanejaFoundation of Computational Fluid Dynamics Parvesh Taneja
Foundation of Computational Fluid Dynamics Parvesh Taneja
 
Pre Placement Interview Presentation on Mechanical Design
Pre Placement Interview Presentation on Mechanical DesignPre Placement Interview Presentation on Mechanical Design
Pre Placement Interview Presentation on Mechanical Design
 
Internship at M/s Mindarika Pvt. Ltd.
Internship at M/s Mindarika Pvt. Ltd. Internship at M/s Mindarika Pvt. Ltd.
Internship at M/s Mindarika Pvt. Ltd.
 
Connecting morse key to pc using an optical mouse.
Connecting morse key to pc using an optical mouse.Connecting morse key to pc using an optical mouse.
Connecting morse key to pc using an optical mouse.
 
Supervisory Control and Data Acquisition (SCADA) system for Greenhouse Farm w...
Supervisory Control and Data Acquisition (SCADA) system for Greenhouse Farm w...Supervisory Control and Data Acquisition (SCADA) system for Greenhouse Farm w...
Supervisory Control and Data Acquisition (SCADA) system for Greenhouse Farm w...
 
Autodesk maya presentation
Autodesk maya presentationAutodesk maya presentation
Autodesk maya presentation
 
3D modelling and animation using Autodesk maya
3D modelling and animation using Autodesk maya3D modelling and animation using Autodesk maya
3D modelling and animation using Autodesk maya
 
Automation of a farm
Automation of a farmAutomation of a farm
Automation of a farm
 
W-LAN (Wireless Local Area Network)
W-LAN (Wireless Local Area Network)W-LAN (Wireless Local Area Network)
W-LAN (Wireless Local Area Network)
 
“Comparative and Competitive study of the corporate identity of the domestic ...
“Comparative and Competitive study of the corporate identity of the domestic ...“Comparative and Competitive study of the corporate identity of the domestic ...
“Comparative and Competitive study of the corporate identity of the domestic ...
 

Kürzlich hochgeladen

Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
Kamal Acharya
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
AldoGarca30
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 

Kürzlich hochgeladen (20)

Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to Computers
 
Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptx
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 

Soil Moisture Sensor and Arduino

  • 1. SOIL MOISTURE SENSOR MSE-I PARVESH TANEJA Submitted by:
  • 2. SOIL MOISTURE SENSOR Fig 1: Soil Moisture Sensor (Ref)
  • 3. INTRODUCTION Soil Moisture Sensor as the name suggest ,can detect amount of moisture in soil (roots of a plant).  It is Low-Tech sensor. This sensor is compatible with Arduino UNO,Arduino mega2560, Arduino ADK etc.
  • 4. WORKING PRINCIPLE • Strictly Speaking moisture sensor does not measures moisture but measures conductivity or resistivity of soil. • Moisture Sensor has two probes to pass current through the soil. It then reads resistance(conductance) in the soil. • Less moisture (water) in soil results in higher resistance i.e. dry soil. • More moisture (water) in soil results in lesser resistance and sensor thus relates moisture content.
  • 5. FEATURES This sensor has low power consumption, and high sensitivity. (Sensitivity should not be confused with accuracy) Operates on low Voltage of 5v. Operates on low current <20mA. Weighs only 3 gram.
  • 6. DISADVANTAGES Depth of detection is only 37mm. Working temperature is only 10˚-30˚ Celsius. Less accuracy.
  • 7. PIN DEFINITIONS Fig 2.1: Soil Moisture Sensor Pins (Ref)  Pin with “S” written on it means signal.  Pin with “-” written on it means GND (ground) .  Pin with “+” written on it means 5v supply.
  • 8. YL69(PROBES) CONNECTED TO YL38 (INTERFACE) This is what I will be using while Showing Demo. Fig 2.2: Soil Moisture Sensor unit (Ref) Yl38 (Interface) and Yl69 (Probes) Cost = 130 INR
  • 9. YL-69 MOISTURE SENSOR (PROBES) • This is an Electrical resistance Sensor. The sensor is made up of two electrodes. This soil moisture sensor reads the moisture content around it. A current is passed across the electrodes through the soil and the resistance to the current in the soil determines the soil moisture. If the soil has more water resistance will be low and thus more current will pass through. On the other hand when the soil moisture is low the sensor module outputs a high level of resistance. • This sensor has both digital and analogue outputs. Digital output is simple to use but is not as accurate as the analogue output.
  • 10. YL-69 MOISTURE SENSOR(PROBES) Fig 2.2.1: YL-69 (Probes)
  • 11. YL - 38 INTERFACE FOR YL-69 PROBES • The sensor comes with a small PCB board fitted with LM393 comparator chip and a potentiometer. • Output signal Pins (Both Analog and Digital). • Input Power pins for the sensor is also present on this PCB. Fig 2.2.2: YL-38 (Interface)
  • 12. CONNECTING DIAGRAM Fig 3.1: Soil Moisture Sensor connected to Arduino (Ref)
  • 13. PICTOGRAPHIC REPRESENTATION Fig 3.2: Soil Moisture Sensor connected to Arduino (Ref)
  • 14. HARDWARE REQUIRED  Arduino UNO(Fig 4)  Soil Moisture Sensor(Fig 5)  3 Pin Dual Female Jumper wire(Fig 6)  Sensor shield (Optional, not required) Fig 4:Arduino UNO (Ref) Fig 6:Female Jumper Wire(Ref) Fig 5:Soil Moisture Sensor (Ref)
  • 15. SIMPLE BASIC SKETCH-1 • void setup() { • // put your setup code here, to run once: • // initialize serial communication at 9600 bits per second: • Serial.begin(9600); • } • void loop() { • // put your main code here, to run repeatedly: • // read the input on analog pin 0: • int sensorValue = analogRead(A0); Serial.println(sensorValue); • delay(100); • }
  • 16. SIMPLE BASIC SKETCH-2 void setup() { Serial.begin(9600); } void loop(){ if(analogRead(A0)<300){ Serial.println("I feel so comfortable"); } if(analogRead(A0)>300 && analogRead(5)<700){ Serial.println("I am thirsty ,please give me water"); } if(analogRead(A0)>700){ Serial.println("Too much water,I might get hurt"); } delay(200); }
  • 17. TEST RESULTS: • Moisture content is less in soil.
  • 18. TEST RESULTS CONTINUE: After watering : • Moisture content is within the range in soil.
  • 19. TEST RESULTS CONTINUE: Adding more water : • Moisture content is out of range in soil.
  • 20. REFERENCE S.No. LINK 1. http://www.fut-electronics.com/wp-content/plugins/fe_downloads/Uploads/moisture-sensor-arduino.pdf 2. http://lowtech.propositions.org.uk/lowtech-sensors-and-actuators.pdf 3. https://arduino-info.wikispaces.com/SensorShield
  • 21. THANK YOU  • Keep Experimenting  • Keep Loving Open Source.

Hinweis der Redaktion

  1. Low Tech means which is not highly accurate for scientific studies but could be used for non scientific work like in sensing moisture in root of a plant where we don’t need exact readings or simply it doesn’t matter if some small errors are present in reading.
  2. This was cheaper then previous one shown in figure2.1 and was easily available. So this slide is just to tell what I did(That’s why background is different)
  3. All pictures in slide 11,12 & 13 are taken from http://www.fut-electronics.com/wp-content/plugins/fe_downloads/Uploads/moisture-sensor-arduino.pdf
  4. All pictures in slide 11,12 & 13 are taken from http://www.fut-electronics.com/wp-content/plugins/fe_downloads/Uploads/moisture-sensor-arduino.pdf
  5. All pictures in slide 11,12 & 13 are taken from http://www.fut-electronics.com/wp-content/plugins/fe_downloads/Uploads/moisture-sensor-arduino.pdf