Вы находитесь на странице: 1из 5

2017 IEEE 3rd International Conference on Sensing, Signal Processing and Security (ICSSS)

IoT Enabled Plant Soil Moisture Monitoring


Using Wireless Sensor Networks
A.M.Ezhilazhahi1 and P.T.V.Bhuvaneswari2
Department of Electronics Engineering
Madras Institute of Technology
ezhil51093@gmail.com1 and ptvbmit@gmail.com2

Abstract:In recent years, the increasing demand on organic farming performance of the monitoring system is discussed in
necessitates continuous monitoring of plant health. In order to Section IV. Finally, Section V concludes the paper with
ensure the quality and quantity this becomes more essential. Hence, future directions.
the objective of this research is to develop a remote monitoring
system that continuously monitors the soil moisture of the plant. II. LITERATURE SURVEY
The Wireless Sensor Network (WSN) is integrated with Internet of
Things (IoT) to achieve the above objective. Further, to enhance In [2], the authors have developed a greenhouse
the network lifetime, Exponential Weighted Moving Average automatic control system based on WSN to monitor the
(EWMA) event detection algorithm is adopted in the proposed indoor environment. Based on the information received, the
research. indoor environment is controlled and monitoring the crops is
carried out which prevent the plant from blight and harmful
Keywords: Organic farming, Plant health, soil moisture, Wireless
insects. The data collected is stored either in a database or
Sensor Networks, Internet of Things, Exponential Weighted
Moving Average
in a server which is controlled by the user remotely.

I. INTRODUCTION In [3], the authors have analyzed the growth of


sweet potatoes under controlled and exposed environment.
Wireless Sensor Network (WSN) is the technology, The miniature greenhouse setup is built that monitors
in which the data collected from the field of interest is various parameters namely temperature and humidity of
transmitted through wireless link. WSN can be used in green house, and temperature of soil. According to
various fields such as monitoring, wireless measurements, restrictions in parameter value, green house setup is
controlling, etc. In the field of precision agriculture and controlled via relay switches connected to Aurdino based
organic farming, it is important to continuously monitor the embedded unit.
fields as they are site specific. Monitoring plant health is
essential which enriches the productivity of food grains. Soil In [4] the authors have developed a temperature and
moisture is one of the primitive factor for plant health. The humidity monitoring system of soil based on WSN that uses
water that remains in soil as a thin film aid in supplying GPRS as a gateway platform. The temperature and humidity
nutrients to the plant growth[1]. sensor are placed on plant species. The data from these
sensors are collected continuously and stored in atos pc
The main objective of this paper, is to establish a software which is open source. Then it is uploaded to server
plant soil moisture monitoring system which enables the through atos pc server for remote monitoring.
user to monitor the plant health remotely. For wireless
communication, Zigbee technology is used to collect data From the literature survey made, most of the
which is then transferred to the server. In order to increase monitoring system has been developed for controlled
the lifetime of WSN, Event Detection Algorithm (EDA) is environment, i.e for green house rather than exposed
adopted. environment. In this paper soil moisture monitoring system
using WSN is developed for an open environment. Further,
The rest of the paper is organized as follows : Section in order to enhance lifetime of WSN, Exponential Weighted
II deals with the literature related to plant health monitoring Moving Average (EWMA) EDA is used.
system. Section III describes the proposed research. The

978-1-5090-4929-5©2017 IEEE

345
2017 IEEE 3rd International Conference on Sensing, Signal Processing and Security (ICSSS)

IV. PROPOSED WORK


This section enumerates the proposed research, which
involves
a) Sensing and Transmitter Module
b) Receiver Module
c) IoT enablement
d) Event detection algorithm

Fig.1 depicts the proposed soil moisture monitoring system.

Figure 2. Soil Moisture sensor


Figure 3. Sensor interfaced with PIC microcontroller and Zigbee

Figure 1. Proposed Soil Moisture Monitoring System In the proposed research, CC2500 Zigbee pair is
used whose transceiver is highly sensitivity and cost
A) SENSING AND TRANSMITTER MODULE effective. It consist of three Light emitting Diode (LED)
which represent indication for power supply, transmission,
Fig.2 shows the sensing module that consists of a soil
and reception. The frequency ranges from 2400MHz -
moisture detection probe and sensor board with LM393. The
2483.5MHz. The entire sensing and transmitter module is
detection probe is dipped into plant for moisture
battery powered.
detection.The sensor board is connected to PIC
microcontroller via 3 pins such as VCC, GND, analog
output.
Fig.3 shows the interface between soil moisture
B) RECEIVER MODULE
sensor and PIC microcontroller. PIC micro controller is used
in the proposed research as it is reconfigurable easily. PIC Fig.4 shows the receiver module containing a
16F877A is cheaper when compared to other Zigbee receiver and a processor. Raspberry Pi 3 is used and
microcontroller. It has an inbuilt Analog to Digital Converter it has various features such as ethernet port, Xbee socket,
(ADC) which converts the analog values of sensors to program memory (RAM), CPU, power source connector.
digital.The digitized data is transmitted by the Zigbee Tx. Then, the data is transferred to cloud using wired link.

978-1-5090-4929-5©2017 IEEE

346
2017 IEEE 3rd International Conference on Sensing, Signal Processing and Security (ICSSS)

In order to increase lifetime of WSN, EWMA


algorithm is adopted. The data sent to the cloud periodically
whenever the value falls below or above the two predefined
thresholds.

D)EVENT DETECTION ALGORITHM

Major disadvantage of WSN is energy depletion


due to the communication among sensor nodes. EDA is
adopted to overcome the above issue. EWMA is one of the
threshold based EDA which is used in this research, in order
to set the control limits of soil moisture. EWMA chart
methodology is a more and appropriate tool for detecting
small shifts of location [5] &[6]. The mathematical model of
EWMA is defined as below:

Figure 4. Receiver Module EWMAt = Zt = λxt + (1− λ) Zt −1 (1)

for t=1,2,3,4……,n
C) IoT ENABLEMENT
Where,
Internet of Things (IoT) is a inter-networking which t= no of observation at periodic intervals
enables to connect number of physical objects or devices to
Ȝ= weighted average based on the previous values and
internet. These devices can collect, exchange and store data.
ranges between 0 and 1
IoT cloud provides a data storage in which the data from
these devices can be stored and viewed at remote access. x= obtained value
Dropbox is the cloud storage utilized in this research which Zt-1= previous value of Zt
is shown in Fig.5. Dropbox offers free cloud storage service
upto 2GB. A file is created that shows the occurrence of Upper Control Limit (UCL) and Lower Control Limit (LCL)
daily event. are computed using equation (2) and (3),

λ (2)
UCL = μ0 + Lσ
(2 − λ)[1 − (1 − λ ) ]2t

λ
LCL = μ0 − Lσ (3)
(2 − λ )[1 − (1− λ ) 2t ]
Where,
μ0=Mean;L=width of the control limits ;ı = standard
deviation from the moving range chart

V. RESULTS AND DISCUSSION

IoT enabled soil moisture monitoring system using


WSN have been implemented in real time. Fig.7 and 8
shows soil moisture sensor immersed into soil, it displays
percentage of water present in the soil on LCD. The data
received from the sensors is then transmitted through Zigbee
transceiver to the Raspberry Pi, from which the data are
uploaded to the cloud. When a soil moisture sensor is
Figure 5. Cloud enablement immersed in dry soil, it gives 0% reading. As the water is
978-1-5090-4929-5©2017 IEEE

347
2017 IEEE 3rd International Conference on Sensing, Signal Processing and Security (ICSSS)

poured to soil increases, the reading is found to be increased. From Fig.9, the three LEDs present in Zigbee Rx blinks that
indicate the reception of data.

Figure 7. Soil moisture sensor embedded into plant soil

Figure 10. Files created in Dropbox

Fig.10 represent the daily created files. Each file


consists of four reading of soil moisture content taken at
regular intervals. The data from the file is extracted and
shown in Table 1.
TABLE 1

Date 6am 10am 2pm 6pm

03/04/2017 86 72 58 52
04/04/2017 46 76 54 47
05/04/2017 42 38 22 16
Figure 8. Moisture content displayed on LCD 06/04/2017 11 78 63 48
07/04/2017 41 84 67 51
Fig.8, shows the value of moisture content present in 08/04/2017 47 41 33 24
the soil which is displayed on the LCD. When the data is 09/04/2017 19 13 6 2
transmitted by the Zigbee it is indicated by LED. 10/04/2017 84 71 64 49

Figure 9. Image of data receiving at the receiver module


Figure 11. Control chart of EWMA

978-1-5090-4929-5©2017 IEEE

348
2017 IEEE 3rd International Conference on Sensing, Signal Processing and Security (ICSSS)

Fig.11 represent the control chart of EWMA event Of Environmental Research And Development, Vol. 7,PP.No
detection algorithm. The data obtained from the sensor is 780-786, 2012.
given as input to the EWMA algorithm. This algorithm
[6] Romeo Mawonike And Vinscent Nkomo. “Univariate
specifies the limit which is considered as threshold values
Statistical Process Control Of Super Saver Beans: A Case Of
for WSN. From the plot UCL and LCL can be 55 and 35
Rmv Supermarket, Zimbabwe”. Journal Of Management
respectively.
And Science , Vol.5,PP.No 48-58, 2015.
VI. CONCLUSION AND FUTURE WORK [7] Haider Raza N, Girijeshprasad,Yuhuali . “Ewma Model
Based Shift-Detection Methods For Detecting Covariate
Indian farmers are facing a lot of problems, but the Shifts In Non-Stationary Environments”.Patternrecognition,
advancement of wireless sensor networks in agriculture Science Direct ,Vol.48, PP.No659–669, 2015.
would be promising in the present scenario of water scarcity
and unpredictable weather conditions. This paper provides [8] Neha Khanna, Gurmohan Singh , D.K. Jain, 4manjit
implementation of WSN based soil moisture monitoring Kaur . “Design And Development Of Soilmoisture Sensor
system. As WSN is battery operated to enhance the lifetime. And Response Monitoring System”. International Journal
EWMA event detection algorithm is used which generate Of Latest Research In Science And Technology Vol. 3, PP
events only when threshold conditions is met.Rest of the No.142-145, 2014.
time, the nodes are in sleep state which can save their [9] Zigbee Cc2500 Data Sheet:
energy.This work can also be further extended by www.Ti.Com/Lit/Ds/Swrs040c/Swrs040c.Pdf
considering more than one sensor module.
[10] Jeonghwan Hwang, Changsun Shin And Hyun Yoe .
REFERENCES “Study On An Agricultural Environment Monitoring Server
System Using Wireless Sensor Network”, IEEE Sensors
[1] www.Agriinfo.In
2010 Vol.10, PP.No11189-11211, 2010.
[2] Dae-Heon Park,Beom-Jin Kang,Kyung-Ryong Cho
,Chang-Sun Shin ,Sung-Eon Cho,Jang-Woo Park ,Won-Mo
Yang. “A Study On Greenhouse Automatic Control System
Based Onwireless Sensor Network”, Wireless Personal
Communication Springer journal , Vol 56, PP.No 117–130,
2011.
[3] Romeo Lazaro Pascual, Don Michael R. Sanchez, Diego
Lloyd E. Naces, Warren A. Nunez, M.Eng . “A Wireless
Sensor Network Using Xbee For Precision Agriculture Of
Sweet Potatoes (Ipomoea Batatas)”, 8th Ieee International
Conference Humanoid, Nanotechnology, Information
Technology Communication And Control, Environment And
Management (Hnicem),PP.No 9-12, 2015.
[4] Liu Yumei, Zhang Changli , Zhu Ping. “The
Temperature Humidity Monitoring System Of Soil Based
On Wireless Sensor Networks” Electric Information and
control engineering (ICEICE), PP. No 1-4, 2011.
[5] Chirima Justin, Chinofunga Peter Tinashe, Zvobgo
Rungano Jonas ,Mufandaedza,Jonathan And Dambaza
Marx. “Application Of Statistical Control Charts To Climate
Change Detection In Masvingo City, Zimbabwe”. Journal

978-1-5090-4929-5©2017 IEEE

349

Вам также может понравиться