SlideShare a Scribd company logo
1 of 22
PLANT MONITORING SYSTEM
By
M.H.SAIKUMAR
This project deals about the plant monitering mechanism which gives
information about the temperature ,pressure , humidity.
This can be done by using various sensors like temperature ,pressure and
humidity sensing sensors.
This will be enhancing the growth of plant.
The two modes of operating system :
a)When it detects if the plant need some water it will be watering the plants.
b)A manual mode where you can control the servos and relays manually.
INTRODUCTION
 Arduino UNO
 BMP180 Barometric Pressure/Temperature/Altitude Sensor
 Soil Moisture Sensor
 Servo Motor SG90
 Relay
 Display
Arduino IDE Software
 DC Motors
COMPONENTS
Specifications:
Vin: 3 to 5V DC.
Pressure sensing range: 300-1100 h Pa (9000m to -500m
above sea level).
-40 to +85°C operational range, +/-2°C temperature
accuracy.
This board/chip uses I2C 7-bit address .
BMP180 SENSOR
The BMP 180 sensor has four important internal peripherals
a)Sensor Element.
b)ADC (analog to digital converter).
c) Control unit .
d) EEPROM.
BMP 180 INTERNAL DIAGRAM
Specifications:
• Operating voltage: 4.8 V (~5V).
• Dead band width: 10 µs.
•Temperature range: 0 ºC – 55 ºC.
SERVO SG90
 It is very Tiny and lightweight which will give high output power.
 Servo can rotate approximately 180 degrees (90 in each direction), and works just like
the standard kinds but smaller.
 You can use any servo code, hardware or library to control these servos.
 Good for beginners who want to make stuff move without building a motor controller
with feedback & gear box, especially since it will fit in small places.
 It comes with a 3 horns (arms) and hardware.
 Soil moisture measure the volumetric water content in soil .
 Since the direct gravimetric measurement of free soil moisture requires
removing, drying, and weighting of a sample, soil moisture sensors measure
the volumetric water content indirectly by using some other property of the
soil, such as electrical resistance, dielectric constant, or interaction
with neutrons, as a proxy for the moisture content.
 The relation between the measured property and soil moisture must be
calibrated and may vary depending on environmental factors such as soil
type, temperature, or electric conductivity.
SOIL MOISTURE SENSOR
 Reflected microwave radiation is affected by the soil
moisture and is used for remote sensing in hydrology
and agriculture.
 Portable probe instruments can be used by farmers
or gardeners.
 The relay is an automatic protective and switching
device which is capable of sensing abnormal conditions
in electrical circuits.
 These are operated to open or close the load contacts in
response to one or more electrical quantities like voltage
and current.
 Relays are used to realize logic functions. They play a
very important role in providing safety critical logic.
RELAY
 Relays are used to provide time delay functions. They are used to time the delay open
and delay close of contacts.
 Relays are used to control high voltage circuits with the help of low voltage signals.
Similarly they are used to control high current circuits with the help of low current
signals.
 They are also used as protective relays. By this function all the faults during
transmission and reception can be detected and isolated.
A display device is an output device for presentation
of information in visual.
 When the input information is supplied has an
electrical signal, the display is called electronic display.
LCD DISPLAY
The main principle behind liquid crystal molecules is that when an electric current is
applied to them, they tend to untwist.
 This causes a change in the light angle passing through them. This causes a change in
the angle of the top polarizing filter with respect to it.
So little light is allowed to pass through that particular area of LCD. Thus that area
becomes darker comparing to others.
DC Motors
DC Motors are used in preparing water pumping motors
and it require basically two 200RPM motors.
 These motors require a DC supply of 12V.
FLOW CHART FOR MAINTAINING CONSTANT
TEMPERATURE
FLOWCHART FOR MOTOR ON AND OFF
PROGRAM
#include<LiquidCrystal.h>
#include<Adafruit_BMP085_U.h>
#include<Servo.h>
Adafruit_BMP085_Unified bmp=Adafruit_BMP085_Unified(10085);
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
#define RELAY2 6
#define RELAY1 7
#define RELAY3 8
Servo e;
Servo f;
int p=0;
int q=0;
int S1=A0;
int S2=A1;
int S3=A2;
int S4=A3;
void setup()
{
Serial.begin(9600);
lcd.begin(16,2);
pinMode(S1,INPUT);
pinMode(S2,INPUT);
pinMode(S3,INPUT);
pinMode(S4,INPUT);
pinMode(RELAY1,OUTPUT);
pinMode(RELAY2,OUTPUT);
pinMode(RELAY3,OUTPUT);
e.attach(9);
f.attach(10);
bmp.begin();
}
void loop()
{
int a=analogRead(S1);
int b=analogRead(S2);
int c=analogRead(S3);
int d=analogRead(S4);
Serial.println(a);
Serial.println(b);
Serial.println(c);
Serial.println(d);
sensors_event_t event;
bmp.getEvent(&event);
if((a>800)||(b>800)&&(c>800)||(d>800))
{
digitalWrite(RELAY2,LOW);
digitalWrite(RELAY1,LOW);
for (p=0,q=0; p<=180,q<=180 ; p=p+1,q=q+1)
{
e.write(p);
f.write(q);
delayMicroseconds(10);
}
for(p=180,q=180; p>=0,q>=0 ; p=p-1,q=q-1)
{
e.write(p);
f.write(q);
delayMicroseconds(10);
}
delay(2000);
}
if((a<800)||(b<800)&&(c>800)||(d>800))
{
digitalWrite(RELAY1,HIGH);
digitalWrite(RELAY2,LOW);
if(c<800)
{
for (q=0; q<=90 ; q=q+1)
{
f.write(q);
delayMicroseconds(10);
}
for(q=90; q>=0 ; q=q-1)
{
f.write(q);
delayMicroseconds(10);
}
}
if(d<800)
{
for (q=90; q<=180 ; q=q+1)
{
f.write(q);
delayMicroseconds(10);
}
for(q=180; q>=90 ; q=q-1)
{
f.write(q);
delayMicroseconds(10);
}
}
delay(2000);
}
if((a>800)||(b>800)&&(c<800)||(d<800))
{
digitalWrite(RELAY1,LOW);
digitalWrite(RELAY2,HIGH);
if(a>800)
{
for (p=0; p<=90 ; p=p+1)
{
e.write(q);
delayMicroseconds(10);
}
for(p=90; p>=0 ; p=p-1)
{
e.write(p);
delayMicroseconds(10);
}
}
if(b>800)
{
for (p=90; p<=180 ; p=p+1)
{
e.write(p);
delayMicroseconds(10);
}
for(p=180; p>=90 ; p=p-1)
{
e.write(p);
delayMicroseconds(10);
}
}
delay(2000);
}
if((a<1000)||(b<1000)&&(c<1000)||(d<1000))
{
digitalWrite(RELAY1,HIGH);
digitalWrite(RELAY2,HIGH);
delay(2000);
}
if (event.pressure)
{
Serial.print("Pressure: ");
Serial.print(event.pressure);
Serial.println(" hPa");
lcd.setCursor(0,0);
lcd.print("PRES=");
lcd.print(event.pressure);
lcd.print("hpa ");
float temperature;
bmp.getTemperature(&temperature);
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println(" C");
lcd.setCursor(0,1);
lcd.print("TEMP=");
lcd.print(temperature);
lcd.print("C ");
if(temperature>=30)
{
digitalWrite(RELAY3,LOW);
delay(2000);
}
else
{
digitalWrite(RELAY3,HIGH);
delay(2000);
}
float seaLevelPressure = SENSORS_PRESSURE_SEALEVELHPA;
Serial.print("Altitude: ");
Serial.print(bmp.pressureToAltitude(seaLevelPressure,
event.pressure));
Serial.println(" m");
Serial.println("");
}
delay(1000);
}
RESULTS
Figure 9.4 Prototype
PROTOTYPE OF PLANT MONITORING SYSTEM:
There has been proposed a new automatic monitoring of plants by creating
algorithm for farms at indoor scenarios that is based for restricted crops. It can
effectively used for a particular area and controlled by electronic gadgets. The
present approach learns the optimum usage for combining several feature
descriptors, as well as the many numbers of engineering works to be used in the
designing. The algorithm also shows the improvement of crop according to the
working is to be able to use realistic. The algorithm is divided into two different
modules. The motor module is running according to soil moisture sensor modules
and will operate. The approach achieving barometric pressure sensor which similar
to above will operate like above sensor apart from that shows the temperature and
heater will be going to work.
In future we can add a camera at the field which helps in capturing image and the
image can be transmitted to the farmer by connecting the entire system to IOT the
image can be observed from anywhere by connecting to the internet. The farmer can
control the operation of motors and heater by considering the soil moisture sensor
output.
CONCLUSION & FUTURE
SCOPE
Plant monitoring system

More Related Content

What's hot

IOT BASED AIR POLLUTION MONITORING
IOT BASED AIR POLLUTION MONITORINGIOT BASED AIR POLLUTION MONITORING
IOT BASED AIR POLLUTION MONITORINGkantkamal2291
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSaipandu143
 
IOT based air quality and monitoring by using arduino
IOT based air quality and monitoring by using arduinoIOT based air quality and monitoring by using arduino
IOT based air quality and monitoring by using arduinoGopikrishnateja Goli
 
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-gInternet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-gMohan Kumar G
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino AMIT SANPUI
 
automatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture contentautomatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture contentPAMULA MURALI
 
IoT home automation project
IoT home automation projectIoT home automation project
IoT home automation projectShohin Aheleroff
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingJagannath Dutta
 
Artificial intelligence in power plants
Artificial intelligence in power plantsArtificial intelligence in power plants
Artificial intelligence in power plantsvivekprajapatiankur
 
Microelectronic pill
Microelectronic pillMicroelectronic pill
Microelectronic pillnirmalk1503
 
Arduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorArduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorAmarjeetsingh Thakur
 
Automated irrigation system
Automated irrigation systemAutomated irrigation system
Automated irrigation systemnarendra019
 
Electronics seminar topics
Electronics seminar topicsElectronics seminar topics
Electronics seminar topics123seminarsonly
 

What's hot (20)

Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
 
IOT BASED AIR POLLUTION MONITORING
IOT BASED AIR POLLUTION MONITORINGIOT BASED AIR POLLUTION MONITORING
IOT BASED AIR POLLUTION MONITORING
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOT
 
IOT based air quality and monitoring by using arduino
IOT based air quality and monitoring by using arduinoIOT based air quality and monitoring by using arduino
IOT based air quality and monitoring by using arduino
 
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-gInternet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino
 
automatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture contentautomatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture content
 
IoT home automation project
IoT home automation projectIoT home automation project
IoT home automation project
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring using
 
Automatic irrigation system ppt
Automatic irrigation system pptAutomatic irrigation system ppt
Automatic irrigation system ppt
 
Artificial intelligence in power plants
Artificial intelligence in power plantsArtificial intelligence in power plants
Artificial intelligence in power plants
 
Introduction to Node MCU
Introduction to Node MCUIntroduction to Node MCU
Introduction to Node MCU
 
Touchless touch screen
Touchless touch screenTouchless touch screen
Touchless touch screen
 
Microelectronic pill
Microelectronic pillMicroelectronic pill
Microelectronic pill
 
Wi-Fi Esp8266 nodemcu
Wi-Fi Esp8266 nodemcu Wi-Fi Esp8266 nodemcu
Wi-Fi Esp8266 nodemcu
 
ARM CORTEX M3 PPT
ARM CORTEX M3 PPTARM CORTEX M3 PPT
ARM CORTEX M3 PPT
 
Arduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motorArduino Interfacing with different sensors and motor
Arduino Interfacing with different sensors and motor
 
Presentation on home automation
Presentation on home automationPresentation on home automation
Presentation on home automation
 
Automated irrigation system
Automated irrigation systemAutomated irrigation system
Automated irrigation system
 
Electronics seminar topics
Electronics seminar topicsElectronics seminar topics
Electronics seminar topics
 

Similar to Plant monitoring system

Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2Puja Singh
 
Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...EG TECHNOLOGIES
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingJagannath Dutta
 
automatic water level controlling using gsm system
automatic water level controlling using gsm systemautomatic water level controlling using gsm system
automatic water level controlling using gsm systempavan kumar
 
Irrigation system
Irrigation systemIrrigation system
Irrigation systemAnand Azad
 
Monitoring and data logging system for a generator
Monitoring and data logging system for a generatorMonitoring and data logging system for a generator
Monitoring and data logging system for a generatorMoon Shahzad
 
Grid synchronisation
Grid synchronisationGrid synchronisation
Grid synchronisationmanogna gwen
 
Instrumentation Interview Q&A EMERSON EDUARDO RODRIGUES
Instrumentation Interview Q&A EMERSON EDUARDO RODRIGUESInstrumentation Interview Q&A EMERSON EDUARDO RODRIGUES
Instrumentation Interview Q&A EMERSON EDUARDO RODRIGUESEMERSON EDUARDO RODRIGUES
 
Ls catalog thiet bi tu dong imc iii-e
Ls catalog thiet bi tu dong imc iii-eLs catalog thiet bi tu dong imc iii-e
Ls catalog thiet bi tu dong imc iii-eDien Ha The
 
Ls catalog thiet bi tu dong imc iii-e_dienhathe.vn
Ls catalog thiet bi tu dong imc iii-e_dienhathe.vnLs catalog thiet bi tu dong imc iii-e_dienhathe.vn
Ls catalog thiet bi tu dong imc iii-e_dienhathe.vnDien Ha The
 
Smart under and over voltage protection system for
Smart under and over voltage protection system forSmart under and over voltage protection system for
Smart under and over voltage protection system forShuvadip das
 
RBEFB Battery Operated Magnetic Flow Meter Catalog
RBEFB Battery Operated Magnetic Flow Meter  CatalogRBEFB Battery Operated Magnetic Flow Meter  Catalog
RBEFB Battery Operated Magnetic Flow Meter Catalogjessy Lee RB Flowmeter
 
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...IRJET Journal
 
A project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and ArduinoA project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and ArduinoJawwad Sadiq Ayon
 
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-8thsemkaushikbandopadhyay
 
DOC-20230916-WA0003..pptx
DOC-20230916-WA0003..pptxDOC-20230916-WA0003..pptx
DOC-20230916-WA0003..pptxsurabhimalviya1
 

Similar to Plant monitoring system (20)

Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2Soil moisture sensor byauto irrigation system2
Soil moisture sensor byauto irrigation system2
 
Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...
 
Moisture controller report total
Moisture controller report totalMoisture controller report total
Moisture controller report total
 
K010316571
K010316571K010316571
K010316571
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring using
 
automatic water level controlling using gsm system
automatic water level controlling using gsm systemautomatic water level controlling using gsm system
automatic water level controlling using gsm system
 
Irrigation system
Irrigation systemIrrigation system
Irrigation system
 
Monitoring and data logging system for a generator
Monitoring and data logging system for a generatorMonitoring and data logging system for a generator
Monitoring and data logging system for a generator
 
Grid synchronisation
Grid synchronisationGrid synchronisation
Grid synchronisation
 
Instrumentation Interview Q&A EMERSON EDUARDO RODRIGUES
Instrumentation Interview Q&A EMERSON EDUARDO RODRIGUESInstrumentation Interview Q&A EMERSON EDUARDO RODRIGUES
Instrumentation Interview Q&A EMERSON EDUARDO RODRIGUES
 
WATER LEVEL CONTROL AND NO LOAD PROTECTION
 WATER LEVEL CONTROL AND NO LOAD PROTECTION WATER LEVEL CONTROL AND NO LOAD PROTECTION
WATER LEVEL CONTROL AND NO LOAD PROTECTION
 
Ls catalog thiet bi tu dong imc iii-e
Ls catalog thiet bi tu dong imc iii-eLs catalog thiet bi tu dong imc iii-e
Ls catalog thiet bi tu dong imc iii-e
 
Ls catalog thiet bi tu dong imc iii-e_dienhathe.vn
Ls catalog thiet bi tu dong imc iii-e_dienhathe.vnLs catalog thiet bi tu dong imc iii-e_dienhathe.vn
Ls catalog thiet bi tu dong imc iii-e_dienhathe.vn
 
Smart under and over voltage protection system for
Smart under and over voltage protection system forSmart under and over voltage protection system for
Smart under and over voltage protection system for
 
Automatic irrigation system
Automatic irrigation systemAutomatic irrigation system
Automatic irrigation system
 
RBEFB Battery Operated Magnetic Flow Meter Catalog
RBEFB Battery Operated Magnetic Flow Meter  CatalogRBEFB Battery Operated Magnetic Flow Meter  Catalog
RBEFB Battery Operated Magnetic Flow Meter Catalog
 
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
 
A project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and ArduinoA project report on Remote Monitoring of a Power Station using GSM and Arduino
A project report on Remote Monitoring of a Power Station using GSM and Arduino
 
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
 
DOC-20230916-WA0003..pptx
DOC-20230916-WA0003..pptxDOC-20230916-WA0003..pptx
DOC-20230916-WA0003..pptx
 

Recently uploaded

Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Narsimha murthy
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
WAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsWAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsCharles Obaleagbon
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiSuhani Kapoor
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceanilsa9823
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...ankitnayak356677
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...Suhani Kapoor
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Yantram Animation Studio Corporation
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Servicejennyeacort
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdfSwaraliBorhade
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...Suhani Kapoor
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...Suhani Kapoor
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130Suhani Kapoor
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptxVanshNarang19
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentationamedia6
 

Recently uploaded (20)

Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...Revit Understanding Reference Planes and Reference lines in Revit for Family ...
Revit Understanding Reference Planes and Reference lines in Revit for Family ...
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
WAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past QuestionsWAEC Carpentry and Joinery Past Questions
WAEC Carpentry and Joinery Past Questions
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
Raj Nagar Extension Call Girls 9711199012 WhatsApp No, Delhi Escorts in Raj N...
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
VIP College Call Girls Gorakhpur Bhavna 8250192130 Independent Escort Service...
 
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
Captivating Charm: Exploring Marseille's Hillside Villas with Our 3D Architec...
 
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
young call girls in Vivek Vihar🔝 9953056974 🔝 Delhi escort Service
 
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts ServiceCall Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
Call Girls In Safdarjung Enclave 24/7✡️9711147426✡️ Escorts Service
 
3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf
 
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
VIP Russian Call Girls in Saharanpur Deepika 8250192130 Independent Escort Se...
 
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
VIP Russian Call Girls in Gorakhpur Deepika 8250192130 Independent Escort Ser...
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptx
 
The history of music videos a level presentation
The history of music videos a level presentationThe history of music videos a level presentation
The history of music videos a level presentation
 

Plant monitoring system

  • 2. This project deals about the plant monitering mechanism which gives information about the temperature ,pressure , humidity. This can be done by using various sensors like temperature ,pressure and humidity sensing sensors. This will be enhancing the growth of plant. The two modes of operating system : a)When it detects if the plant need some water it will be watering the plants. b)A manual mode where you can control the servos and relays manually. INTRODUCTION
  • 3.  Arduino UNO  BMP180 Barometric Pressure/Temperature/Altitude Sensor  Soil Moisture Sensor  Servo Motor SG90  Relay  Display Arduino IDE Software  DC Motors COMPONENTS
  • 4.
  • 5. Specifications: Vin: 3 to 5V DC. Pressure sensing range: 300-1100 h Pa (9000m to -500m above sea level). -40 to +85°C operational range, +/-2°C temperature accuracy. This board/chip uses I2C 7-bit address . BMP180 SENSOR The BMP 180 sensor has four important internal peripherals a)Sensor Element. b)ADC (analog to digital converter). c) Control unit . d) EEPROM.
  • 7. Specifications: • Operating voltage: 4.8 V (~5V). • Dead band width: 10 µs. •Temperature range: 0 ºC – 55 ºC. SERVO SG90
  • 8.  It is very Tiny and lightweight which will give high output power.  Servo can rotate approximately 180 degrees (90 in each direction), and works just like the standard kinds but smaller.  You can use any servo code, hardware or library to control these servos.  Good for beginners who want to make stuff move without building a motor controller with feedback & gear box, especially since it will fit in small places.  It comes with a 3 horns (arms) and hardware.
  • 9.  Soil moisture measure the volumetric water content in soil .  Since the direct gravimetric measurement of free soil moisture requires removing, drying, and weighting of a sample, soil moisture sensors measure the volumetric water content indirectly by using some other property of the soil, such as electrical resistance, dielectric constant, or interaction with neutrons, as a proxy for the moisture content.  The relation between the measured property and soil moisture must be calibrated and may vary depending on environmental factors such as soil type, temperature, or electric conductivity. SOIL MOISTURE SENSOR
  • 10.  Reflected microwave radiation is affected by the soil moisture and is used for remote sensing in hydrology and agriculture.  Portable probe instruments can be used by farmers or gardeners.
  • 11.  The relay is an automatic protective and switching device which is capable of sensing abnormal conditions in electrical circuits.  These are operated to open or close the load contacts in response to one or more electrical quantities like voltage and current.  Relays are used to realize logic functions. They play a very important role in providing safety critical logic. RELAY
  • 12.  Relays are used to provide time delay functions. They are used to time the delay open and delay close of contacts.  Relays are used to control high voltage circuits with the help of low voltage signals. Similarly they are used to control high current circuits with the help of low current signals.  They are also used as protective relays. By this function all the faults during transmission and reception can be detected and isolated.
  • 13. A display device is an output device for presentation of information in visual.  When the input information is supplied has an electrical signal, the display is called electronic display. LCD DISPLAY
  • 14. The main principle behind liquid crystal molecules is that when an electric current is applied to them, they tend to untwist.  This causes a change in the light angle passing through them. This causes a change in the angle of the top polarizing filter with respect to it. So little light is allowed to pass through that particular area of LCD. Thus that area becomes darker comparing to others.
  • 15. DC Motors DC Motors are used in preparing water pumping motors and it require basically two 200RPM motors.  These motors require a DC supply of 12V.
  • 16. FLOW CHART FOR MAINTAINING CONSTANT TEMPERATURE
  • 17. FLOWCHART FOR MOTOR ON AND OFF
  • 18. PROGRAM #include<LiquidCrystal.h> #include<Adafruit_BMP085_U.h> #include<Servo.h> Adafruit_BMP085_Unified bmp=Adafruit_BMP085_Unified(10085); LiquidCrystal lcd(12, 11, 5, 4, 3, 2); #define RELAY2 6 #define RELAY1 7 #define RELAY3 8 Servo e; Servo f; int p=0; int q=0; int S1=A0; int S2=A1; int S3=A2; int S4=A3; void setup() { Serial.begin(9600); lcd.begin(16,2); pinMode(S1,INPUT); pinMode(S2,INPUT); pinMode(S3,INPUT); pinMode(S4,INPUT); pinMode(RELAY1,OUTPUT); pinMode(RELAY2,OUTPUT); pinMode(RELAY3,OUTPUT); e.attach(9); f.attach(10); bmp.begin(); } void loop() { int a=analogRead(S1); int b=analogRead(S2); int c=analogRead(S3); int d=analogRead(S4); Serial.println(a); Serial.println(b); Serial.println(c); Serial.println(d); sensors_event_t event; bmp.getEvent(&event); if((a>800)||(b>800)&&(c>800)||(d>800)) { digitalWrite(RELAY2,LOW); digitalWrite(RELAY1,LOW); for (p=0,q=0; p<=180,q<=180 ; p=p+1,q=q+1) { e.write(p); f.write(q); delayMicroseconds(10); } for(p=180,q=180; p>=0,q>=0 ; p=p-1,q=q-1) { e.write(p); f.write(q); delayMicroseconds(10); } delay(2000); } if((a<800)||(b<800)&&(c>800)||(d>800)) { digitalWrite(RELAY1,HIGH); digitalWrite(RELAY2,LOW); if(c<800) { for (q=0; q<=90 ; q=q+1) { f.write(q); delayMicroseconds(10); } for(q=90; q>=0 ; q=q-1) { f.write(q); delayMicroseconds(10); } } if(d<800) { for (q=90; q<=180 ; q=q+1) { f.write(q); delayMicroseconds(10); } for(q=180; q>=90 ; q=q-1) { f.write(q); delayMicroseconds(10); } } delay(2000); }
  • 19. if((a>800)||(b>800)&&(c<800)||(d<800)) { digitalWrite(RELAY1,LOW); digitalWrite(RELAY2,HIGH); if(a>800) { for (p=0; p<=90 ; p=p+1) { e.write(q); delayMicroseconds(10); } for(p=90; p>=0 ; p=p-1) { e.write(p); delayMicroseconds(10); } } if(b>800) { for (p=90; p<=180 ; p=p+1) { e.write(p); delayMicroseconds(10); } for(p=180; p>=90 ; p=p-1) { e.write(p); delayMicroseconds(10); } } delay(2000); } if((a<1000)||(b<1000)&&(c<1000)||(d<1000)) { digitalWrite(RELAY1,HIGH); digitalWrite(RELAY2,HIGH); delay(2000); } if (event.pressure) { Serial.print("Pressure: "); Serial.print(event.pressure); Serial.println(" hPa"); lcd.setCursor(0,0); lcd.print("PRES="); lcd.print(event.pressure); lcd.print("hpa "); float temperature; bmp.getTemperature(&temperature); Serial.print("Temperature: "); Serial.print(temperature); Serial.println(" C"); lcd.setCursor(0,1); lcd.print("TEMP="); lcd.print(temperature); lcd.print("C "); if(temperature>=30) { digitalWrite(RELAY3,LOW); delay(2000); } else { digitalWrite(RELAY3,HIGH); delay(2000); } float seaLevelPressure = SENSORS_PRESSURE_SEALEVELHPA; Serial.print("Altitude: "); Serial.print(bmp.pressureToAltitude(seaLevelPressure, event.pressure)); Serial.println(" m"); Serial.println(""); } delay(1000); }
  • 20. RESULTS Figure 9.4 Prototype PROTOTYPE OF PLANT MONITORING SYSTEM:
  • 21. There has been proposed a new automatic monitoring of plants by creating algorithm for farms at indoor scenarios that is based for restricted crops. It can effectively used for a particular area and controlled by electronic gadgets. The present approach learns the optimum usage for combining several feature descriptors, as well as the many numbers of engineering works to be used in the designing. The algorithm also shows the improvement of crop according to the working is to be able to use realistic. The algorithm is divided into two different modules. The motor module is running according to soil moisture sensor modules and will operate. The approach achieving barometric pressure sensor which similar to above will operate like above sensor apart from that shows the temperature and heater will be going to work. In future we can add a camera at the field which helps in capturing image and the image can be transmitted to the farmer by connecting the entire system to IOT the image can be observed from anywhere by connecting to the internet. The farmer can control the operation of motors and heater by considering the soil moisture sensor output. CONCLUSION & FUTURE SCOPE