Smart Irrigation System

October 17, 2021

Smart Irrigation System

October 17, 2021

Created By

About This Project

Smart Irrigation System water the plant whenever the soil is dry and if we want more water we can do it by sitting in chair because the Bluetooth in the project connects with the system with the help of the app. After connecting you can check the status of the soil and pump the water and turn it off again.


I decided this to make it because in India specially farmer sometimes put more or less water in the crop and the outcome does not come perfectly. This leads to a loss and ultimately they suicide. So, this project helps to put accurate amount of water.


We have made our own soil moisture sensor which collects the moisture in the soil from 0 to 1023. If the moisture value is less than 200 it automatically pumps water in the soil. One more thing is that it takes solar energy to charge.



Here we have use Arduino uno but in large farms you can use Arduiono mega and optocoupler.

Tusham Agarwal

My name is Tusham. I am extremely interested in making new codes every day and I have made a lot of projects here at Mechatron Robotics. I have learnt a lot here and developed my skills and I hope to make my parents proud by excelling in the Robotics field.

Components Required

  • Arduino UNO
  • HC-05 Bluetooth Module
  • DF Robot Solar Power Manager
  • 1N4007-High Voltage ,High Current Rated Diode
  • 9V generic Battery
  • Water Pump

Schematics

In this image all the components with the connections are given

Code Of Project

  const 
 int 
motor = 
 13 
 ; 
 const 
 int 
soilin = 
A0 ; 
 int 
sensorValue = 
 0 
 ; 
 char 
bt ; 
 const 
 int 
limit = 
 200 
 ; 
 void 
 setup 
 ( 
 ) 
 { 
Serial . 
 begin 
 ( 
 9600 
 ) 
 ; 
 pinMode 
 ( 
motor , 
OUTPUT ) 
 ; 
 pinMode 
 ( 
soilin , 
INPUT ) 
 ; 
 } 
 void 
 loop 
 ( 
 ) 
 { 
sensorValue = 
 analogRead 
 ( 
soilin ) 
 ; 
 if 
 ( 
sensorValue < 
limit ) 
 { 
 digitalWrite 
 ( 
motor , 
HIGH ) 
 ; 
 delay 
 ( 
 1000 
 ) 
 ; 
 digitalWrite 
 ( 
motor , 
LOW ) 
 ; 
 } 
 while 
 ( 
Serial . 
 available 
 ( 
 ) 
 > 
 0 
 ) 
 { 
bt = 
Serial . 
 read 
 ( 
 ) 
 ; 
 delay 
 ( 
 20 
 ) 
 ; 
 if 
 ( 
bt == 
 '2' 
 ) 
 { 
Serial . 
 println 
 ( 
sensorValue ) 
 ; 
 } 
 else 
 if 
 ( 
bt == 
 '1' 
 ) 
 { 
 digitalWrite 
 ( 
motor , 
HIGH ) 
 ; 
 } 
 else 
 if 
 ( 
bt == 
 '0' 
 ) 
 { 
 digitalWrite 
 ( 
motor , 
LOW ) 
 ; 
 } 
 } 
 } 
  
 
A person is using a laptop computer next to a robot.
By Siddhartha Kumar January 5, 2022
Robotics: Blessing and Curse? Robots have improved healthcare , surveillance, delivery of goods (drones), spacecraft, travel, logistics, etc.
A man is wearing a virtual reality headset and touching a screen.
By Tahreem Jamadar December 28, 2021
Is it time for 3D Printing to Adopt Blockchain Technology? Research has already shown 3D printing has a growing need for cybersecurity.
A group of children are sitting at a table making a robot.
By Dr. Heath Kirby-Miller December 25, 2021
Why STEM Education in Australia The Australian industries to be benefited from STEM include advanced information and communication technology
A red rc truck is sitting on top of a remote control.
December 12, 2021
Arduino IR remote controlled Car The project is arduino based project. the Links pf the projects are given below
A laptop computer is on a tripod on a table.
November 30, 2021
Animation Studios Mechatron Robotics project uses an Arduino uno R3 a LCD and push buttons. It is based on the concept of arduino and LCD
A young boy wearing headphones is using a laptop computer.
By Kiran Gupta November 30, 2021
Machine Learning for Disables can help those disabled people to improve their lives. With the marvel of machine learning doctors
A man wearing a virtual reality headset is working on a robotic arm.
By Kiran Gupta November 7, 2021
What are the Consequences of Not Embracing Robotics & AI? We won’t be able to go ahead as these are the next big things.
A person is holding a remote control in a living room.
November 4, 2021
Home Automation System is made because today's light bulbs tend to heat and this can cause blast in the house.
A close up of a bottle of vaccine with a virus in the background.
By Rajesh Sharma November 1, 2021
Robotics and the Pandemic 2020. This is where Robotics can come in, robots can help reduce the human contact.
A person is playing with a robotic head on a table.
By Siddhartha Kumar November 1, 2021
Key Elements Most of the Schools are Missing. Everyone has different criteria but one key element remains the same:” The quality of teaching
Show More
A person is using a laptop computer next to a robot.
By Siddhartha Kumar January 5, 2022
Robotics: Blessing and Curse? Robots have improved healthcare , surveillance, delivery of goods (drones), spacecraft, travel, logistics, etc.
A man is wearing a virtual reality headset and touching a screen.
By Tahreem Jamadar December 28, 2021
Is it time for 3D Printing to Adopt Blockchain Technology? Research has already shown 3D printing has a growing need for cybersecurity.
A group of children are sitting at a table making a robot.
By Dr. Heath Kirby-Miller December 25, 2021
Why STEM Education in Australia The Australian industries to be benefited from STEM include advanced information and communication technology
A red rc truck is sitting on top of a remote control.
December 12, 2021
Arduino IR remote controlled Car The project is arduino based project. the Links pf the projects are given below
A laptop computer is on a tripod on a table.
November 30, 2021
Animation Studios Mechatron Robotics project uses an Arduino uno R3 a LCD and push buttons. It is based on the concept of arduino and LCD
A young boy wearing headphones is using a laptop computer.
By Kiran Gupta November 30, 2021
Machine Learning for Disables can help those disabled people to improve their lives. With the marvel of machine learning doctors
A man wearing a virtual reality headset is working on a robotic arm.
By Kiran Gupta November 7, 2021
What are the Consequences of Not Embracing Robotics & AI? We won’t be able to go ahead as these are the next big things.
A person is holding a remote control in a living room.
November 4, 2021
Home Automation System is made because today's light bulbs tend to heat and this can cause blast in the house.
A close up of a bottle of vaccine with a virus in the background.
By Rajesh Sharma November 1, 2021
Robotics and the Pandemic 2020. This is where Robotics can come in, robots can help reduce the human contact.
Show More