SlideShare a Scribd company logo
1 of 8
Download to read offline
http://www.iaeme.com/IJARET/index.asp 65 editor@iaeme.com
International Journal of Advanced Research in Engineering and Technology (IJARET)
Volume 10, Issue 2, March-April 2019, pp. 65-72, Article ID: IJARET_10_02_007
Available online at http://www.iaeme.com/IJARET/issues.asp?JType=IJARET&VType=10&IType=02
ISSN Print: 0976-6480 and ISSN Online: 0976-6499
© IAEME Publication
DESIGNING THE IOT BASESTATION FOR
GREENHOUSE MONITORING
Syeda Gauhar Fatima
Professor ECE dept, Deccan College of Engineering and Technology,
Darussalam, Hyderebad.
Syeda Kausar Fatima
Associate Professor ECE dept., Shadan College of Engineering and Technology, Hyderabad
Mohd. Mehrajuddin
Assistant Professor EIE dept., Deccan College of Engineering and Technology,
Darussalam, Hyderabad,
ABTRACT
This article put forward a technique to realize the communication between wireless
sensor network and the Internet. The IOT (Internet of Things) gateway is used as part
of the greenhouse checking system. The design well-matched multiple access method
such as LAN, Wifi, GPRS, EDGE, 3G and so on, also the data can be deposited locally.
The IOT gateway uses STM32 as the MCU, μC/OS-III as the embedded operating
system. The application demonstrates the gateway is trustworthy, compatible, and
extendible. Because of this gateway the greenhouse monitoring system realized the real-
time detection and control of the greenhouse, and enhance the ability of the automation
and the smartness of the greenhouse monitoring.
Key words: Internet of things, LAN, GPRS, Embedded operating system, STM32
Cite this Article: Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin,
Designing the Iot Basestation for Greenhouse Monitoring, International Journal of
Advanced Research in Engineering and Technology, 10(2), 2019, pp.65-72.
http://www.iaeme.com/IJARET/issues.asp?JType=IJARET&VType=10&IType=2
1. OVERVIEW
With the expansion of society, traditional forms of agriculture can't satisfy people's needs, so
agriculture must be change to satisfy people's needs. The development of Internet technology
has brought light to the development of agricultural modernization, agricultural Internet of
things has become the inevitable trend of agricultural informatization. Through the remote
monitoring and control of greenhouse, the greenhouse monitoring system realized the precise
measurement and real time control of the greenhouse. Also the greenhouse monitoring system
can implement the scientific management methods, improve crop disaster prevention ability
and increase production [1]. The greenhouse monitoring system is intended to satisfy the need
Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin
http://www.iaeme.com/IJARET/index.asp 66 editor@iaeme.com
of the remote monitoring and control of greenhouse. In this paper the design of the gateway
will be introduced and the gateway is the core of the system. The IOT gateway is a join point
of public network and wireless sensor network in greenhouse monitoring and control system.
And the function of the gateway is realized data gathering, upload and processing remote user
control information. The gateway is founded on modularization method and the using of the
scheme
Improved the compatibility and better meets the needs of complex agricultural
environments. Because of the electrical networks are instable, the design can realize the cable
and wireless communication between the gateway and the upper computer, if all the network
lose connection, the data will be stored in the SD card, and send to the upper computer when
established network connection.
2. ORGANIZATION OF THE GREENHOUSE MONITORING SYSTEM
This greenhouse monitoring and control system is designed to solve the problem when there
are lots of greenhouses in agricultural production base. If each greenhouse links with the remote
server independently, the construction is big and the cost is high. So, we need gateway to
gettogether data and send to the remote server combiningly.
As is shown on the Fig. 1 the greenhouse monitoring and control system is made up of the
acquisition and control system in the greenhouses, the gateway and the upper computer, and
the ZigBee coordinator is a part of the gateway [2].
In terms of function, the greenhouse monitoring and control system comprises of acquisition
and control two parts. The function of acquisition is to transfer data from ZigBee coordinator
to MCU, and then the MCU encapsulate data into the appropriate format and transfer to the
Designing the Iot Basestation for Greenhouse Monitoring
http://www.iaeme.com/IJARET/index.asp 67 editor@iaeme.com
upper computer. The function of control is to transfer data from upper computer to MCU, and
then the MCU encapsulate data into the suitable format and handover to the acquisition and
control system through ZigBee coordinator.
3. THE HARDWARE DESIGN OF THE IOT GATEWAY
3.1. The System Design of the IOT Gateway
As is shown on the Fig. 2 the hardware design of the IOT gateway is made up of Ethernet PHY,
ZigBee module, GPRS module (replaceable) [3]. And the MCU by means of STM32F107,
which is based on Cortex-M3 [4], DP83848 is using as the Ethernet PHY and connects the
Ethernet MAC of the MCU through MII.
Figure 2 Hardware design of the IOT gateway.
3.2. The Design of ZigBee Coordinator
ZigBee node devices hav evarious advantages viz, low energy consumption, simple network
flexible, low cost and low equipment complexity, so they are suitable tobe in the greenhouse
IOT. The ZigBee module in the gateway implements CC2530 of TI Company, and play the role
of coordinator, and connected with STM32 through serial interface. This coordinator has the
responsible to launch and configuration the network, collect data and transfer the realtime data
to STM32 [5].
3.3. The Design of GPRS Module
The communication of GPRS is coved widely, transmission efficiency is high, easy to use and
flexible, and the TCP/IP data transmission reliability is high [6]. This design use MG323 as an
example to introduce the GPRS module. MG323 module is prepared up of GSM base band
control, RF transceiver, power module, MCP storage, 26 MHz reference clock, RF front-end
module, receiving filter. The serial port interface level of MG323 is TTL, so MG323 can attach
with the serial port interface of STM32. The consumption of MG323 is low, so if the
transmission speed is not requested MG323 is suited to the greenhouse monitoring system.
For the greenhouse monitoring system which requests the transmission speed MG323 can be
replaced with SIM5216E, which is 3G module and the transmission speed may be 7.2 Mbps
[7].
Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin
http://www.iaeme.com/IJARET/index.asp 68 editor@iaeme.com
4. THE DESIGN OF SOFTWARE
4.1. The System Design of Software
As is shown on the Fig. 3, this scheme adopted a development mode of layering [8]. The
hardware layer is largely to complete the hardware driver development of each module.
Operating system layer is primarily to complete the transplantation of μC/OS-III embedded
operating system. Application layer mainly finalizes the development of the application. The
job of the system is made up of the task of Ethernet communication, GPRS communication, SD
storage and ZigBee communication.
4.2. Transplant of μC/OS-III
This design selects STM32 as the MCU, so the design adopts μC/OS-III as the embedded
operating system, because of the embedded operating system the application related with the
code of the upper only and has nothing to do with the processor. When creating software
transplant it only needs to modify the underlying function related to hardware. And it increases
the portability and reserves the ability of the system.
Transplant of μC/OS-III [9] largely contains OS, CPU and BSP, as follows:
1) OS_CPU.H, OS_CPU_A.ASM, OS_CPU_C.C three files about core need to be modify.
OS_CPU.H contains processor- and implementation-specificlly defines constants, macros,
and typedefs.
OS_CPU_C.C comprises of nine hook function and OSTaskStkInit().
OS_CPU_A.ASM contains five fairly simple assembly language functions.
2) CPU.H, CPU_A.ASM, CPU_C.C three files about CPU needed to be modified.
CPU c. defines many data types.
CPU_A.ASM contains the assembly code, such as the interrupt function to open the
interrupt function, count the reset function to wait.
CPU_C.C is an optional file, and keeps the CPU timer interrupt controller code.
3) Create BSP adapted to the target board of board supports package level.
BSP.C and BSP.H help achieve the board of peripherals logically.
BSP_INT.C and BSP_INT.H holds function related with the interrupt controller.
4.3. Protocol Conversion
The gateway handovers the data to acquisition and control system via ZigBee protocol, and
transfer data to upper computer via GPRS or Ethernet. So protocol conversion is needed when
transferring data. Fig. 4 is the protocol conversion diagram [10].
Designing the Iot Basestation for Greenhouse Monitoring
http://www.iaeme.com/IJARET/index.asp 69 editor@iaeme.com
Figure 4 Protocol conversion architecture.
We know that in TCP/IP protocol, the transfer of Ethernet data is acknowledged by MAC,
and ARP complete the conversion between IP and the MAC of DLL. So ZigBee nodes also
need a way to acknowledgement when transfer data, just like the transfer of Ethernet data. Then
the mapping relation is build between MAC of ZigBee and IP to understand the conversion of
IP, and is completed in the address adaptation layer. Then data format convert is completed by
using combined application protocol in the application protocol layer. And application program
layer realized the specific purpose of the gateway, and running as the form of the task of
μC/OS-III.
4.4. Ethernet communication
This design recognizes Ethernet communication via LwIP protocol. LwIP protocol links with
underlying hardware and top applications via interface. LwIP contains 4 layers; physical layer
is to complete driver of Ethernet controller. Interface layer is to complete the acknowledgement
of MAC by ARP protocol. Network layer is to complete basic network transport protocol,
contains IP, ICMP protocol and so on. Network transport layer ensures network data transfer
according to certain format. LwIP initial should do first before the TCP_task start, the program
of LwIP initial shows below. And Fig. 5 shows the flow chart of how the Ethernet sends the
data.
Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin
http://www.iaeme.com/IJARET/index.asp 70 editor@iaeme.com
Figure 5 Ethernet sends data work flow. Figure 6 GPRS sends data work flow.
4.5. GPRS Communication
STM32 sets the parameters of MG323 via AT instructs. As the way to transfer data is via IP
address, several steps is needed to set:
1. AT+CSQ This statement is to query network signal quality, and you may receive +CSQ
29, 99 as answer, 29 is the parameter we need.
2. AT+CREG? This statement is to query network register, and you may receive + CREG
0, 1 as answer. Set the connection protocol via at^sics=0,conType,GPRS0;
at^sics=0,passwd,gprs; at^sics=0,user,cm and at^sics=0,apn,cmnet. This is four
statements, and each will get return of OK.
3. Set TCP/IP socket, at^siss=1, srvType,socket; at^siss=1,conId,0;
at^siss=1,address,"socktcp:// 60.10.130.168:7777". This is three statements, and each
will get return of OK, and 60.10.130.168 is the internet IP, 7777 is the intranet port.
4. AT^SISO=1 to open connection, if you receive the answer of ^SISW: 1, 1 then success
to open TCP/IP connection, and the transfer of data are OK.
5. The flow chart of GPRS directs data to upper computer is shown Fig. 6. In order to
circumvent the operators to cut off the connection when GPRS communication in spare
time, heat beat packets are desired.
Designing the Iot Basestation for Greenhouse Monitoring
http://www.iaeme.com/IJARET/index.asp 71 editor@iaeme.com
4.6. The Software Design of ZigBee Module
ZigBee protocol is running in ZigBee coordinator, and the protocol is based on 802.15.4
protocol, and is made up of application layer, network layer, data link layer and medium access
layer [11].
The gateway is responsible for the establishment of the ZigBee network and to monitor the
ZigBee nodes, the flow chart of ZigBee coordinator is shown on Fig. 7. After μC/OS-III startup,
initialize ZigBee will be the first, and the upper computer manage the MAC and network
address unified.
5. APPLICATION RESULTS
The software of the upper computer is designed by LabVIEW. LabVIEW is a virtual instrument
platform developed by NI Company, which adopts powerful graphic language instead of
procedure code. The program behavior of LabVIEW is labelled by graphic symbols, and
eradicates the complicated grammar rules, so the development circle is short just need
Interactive graphics front panel to show the control and result of the system [12]. And for
LabVIEW it is easy to solve the problem of data collection, data analyze, file processing,
waveform processing and arithmetic operations [13].
Figure 7 ZigBee coordinator sends data work flow.
Figure 8 The interface of upper computer
The upper computer works as is shown on Fig. 8.
In this software, users can select manual or auto mode. Manual mode desires users to send
control instruct by toggle switch on the interface. When choosen the mode of auto, software
will send control instruct automatic, but we should collect the suitable value for crop growth
first.
Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin
http://www.iaeme.com/IJARET/index.asp 72 editor@iaeme.com
In the analysis of the Fig. 8, the humidity in the greenhouse is low, so the irrigation instruct
is sent. This kind of fine management ensures that the greenhouse crops grown up in the
most proper atmosphere.
6. CONCLUSIONS
The IOT gateway connect wireless sensor network with the Internet, guarantee the operation of
the greenhouse monitoring system, and make it convenient to remote monitoring large-scale
greenhouse, also make it easy to fine planting. The practical application approved that the
gateway run fine in the greenhouse monitoring system, the environment data of the greenhouse
can transfer reliably, and the control instruction sent timely. This design realizes remote
intelligent checking and control of greenhouse, and is helpful to farms to scientific and rational
planting crops. So this design has assured value to popularize.
REFERENCES
[1] Burrell J., Brooke T., Beckwith R., Vineyard computing: Sensor networks in agriculture
production, IEEE Pervasive Computing, Vol. 3, Issue 1, 2004, pp. 38-45.
[2] Zheng Qiang, Peng Lin, Zou Qiuxia, Gao Lutao, The Design of Remote Greenhouse
Monitoring System Based on the Embedded Web Server, Agricultural Mechanization
Research, Vol. 11, Issue 11, 2013, pp. 84-87.
[3] Zhong Ke, Chen Xiangdong, Design on Smart Home Service Gateway based on IOT,
Communications Technology, Vol. 45, Issue 8, 2012, pp. 65-67.
[4] Yin Jiting, Yuan Jia, Jiao Zhiman, Wu Bin, Research and Development of Smart Home
Control System Based on ARM and ZigBee, Computer Measurement & Control, Vol. 21,
Issue 9, 2013, pp. 2451-2454.
[5] Li Wen, Design of a Chicken House Environment Control System Based on ZigBee and
Ethernet Technology, Agricultural Mechanization Research, Vol. 11, Issue 11, 2010, pp.
126-129.
[6] Jia Kejin, Han Yu, Qian Chunyang, Du Taihang, STM32-based Data Transfer Module in
Monitoring System for Cold Chain Transportation, Control and Instruments in Chemical
Industry, Vol. 2, Issue 40, 2013, pp. 136-141.
[7] Wang Yonggang, Jia Kejin, Zhou Meng, Low-power Intelligent Irrigation System Based
on LIN Bus, Water Saving Irrigation, Vol. 10, 2013, pp. 77-80.
[8] Li Meng, Yang Bin, Chen Weikun, Liu Meng, Design of Embedded Industrial Wireless
Gateway Based on ARM, Automation & Instrumentation, Vol. 9, 2013, pp. 29-32, 57.
[9] Micrium_uC-Eval-STM32F107_uCOS-III.[201302-08]
http://micrium.com/downloadcenter/downloadresults/?searchterm=mp-uc-os-iii-
1&supported=true.
[10] Xu Songsong, Zhou Xifeng, Guo Qian’Gang, Design of ZigBee gateway system based on
ARM, Network and Communication, Vol. 32, Issue 16, 2013, pp. 51-53.
[11] Jang Feng, Zhao Wei, ZigBee Technology Application in Green House Wireless
Monitoring System, Agricultural Mechanization Research, Vol. 9, Issue 9, 2013, pp. 218-
222. [12]. Rick Bitter, Taqi Mohiuddin, Matt Nawrocki, LabVIEW Advanced Programming
Techniques, CRC Press, 2001.
[12] Zhu Fengwu, Zou Lina, Tu Chuanchuan, Yu Fenghua, Shen Xiao, The research of the
pigpen temperature monitoring and control system based on LabVIEW, Journal of Chinese
Agricultural Mechanization, Vol. 34, Issue 2, 2013, pp. 127-130.

More Related Content

What's hot

Fpga implementation of wireless data logger system
Fpga implementation of wireless data logger systemFpga implementation of wireless data logger system
Fpga implementation of wireless data logger systemeSAT Journals
 
IRJET-5G Mobile Technology
IRJET-5G Mobile TechnologyIRJET-5G Mobile Technology
IRJET-5G Mobile TechnologyIRJET Journal
 
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNETSOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNETcseij
 
Smart Storage for Home Application
Smart Storage for Home ApplicationSmart Storage for Home Application
Smart Storage for Home ApplicationIRJET Journal
 
IRJET- Wifi based Smart Electric Meter using IoT
IRJET-  	  Wifi based Smart Electric Meter using IoTIRJET-  	  Wifi based Smart Electric Meter using IoT
IRJET- Wifi based Smart Electric Meter using IoTIRJET Journal
 
B03504008012
B03504008012B03504008012
B03504008012theijes
 
Iirdem implementation of smart homes and industrial automation system with se...
Iirdem implementation of smart homes and industrial automation system with se...Iirdem implementation of smart homes and industrial automation system with se...
Iirdem implementation of smart homes and industrial automation system with se...Iaetsd Iaetsd
 
Implementation of an Efficient Smart Home System using MQTT
Implementation of an Efficient Smart Home System using MQTTImplementation of an Efficient Smart Home System using MQTT
Implementation of an Efficient Smart Home System using MQTTIRJET Journal
 
Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...
Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...
Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...IOSR Journals
 
Energy Meters using Internet of Things Platform
Energy Meters using Internet of Things PlatformEnergy Meters using Internet of Things Platform
Energy Meters using Internet of Things PlatformIRJET Journal
 
Ethernet based home appliances control
Ethernet based home appliances controlEthernet based home appliances control
Ethernet based home appliances controlIAEME Publication
 
IRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for AirportIRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for AirportIRJET Journal
 
Design and Implementation of a Contactless Smart House Network System
Design and Implementation of a Contactless Smart House Network System Design and Implementation of a Contactless Smart House Network System
Design and Implementation of a Contactless Smart House Network System IJECEIAES
 
IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...
IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...
IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...IRJET Journal
 
Casp report
Casp reportCasp report
Casp reportqudhuqdh
 
Tracking limb motion using inertial measurement units (IMU)
Tracking limb motion using inertial measurement units (IMU)Tracking limb motion using inertial measurement units (IMU)
Tracking limb motion using inertial measurement units (IMU)IRJET Journal
 
Report on Enviorment Panel Monitoring
Report on Enviorment Panel MonitoringReport on Enviorment Panel Monitoring
Report on Enviorment Panel MonitoringMohammed Irshad S K
 
Low cost energy-efficient smart monitoring system using open-source microcont...
Low cost energy-efficient smart monitoring system using open-source microcont...Low cost energy-efficient smart monitoring system using open-source microcont...
Low cost energy-efficient smart monitoring system using open-source microcont...zaidinvisible
 
Implementation smart home using internet of things
Implementation smart home using internet of thingsImplementation smart home using internet of things
Implementation smart home using internet of thingsTELKOMNIKA JOURNAL
 

What's hot (20)

Ijecet 06 07_004
Ijecet 06 07_004Ijecet 06 07_004
Ijecet 06 07_004
 
Fpga implementation of wireless data logger system
Fpga implementation of wireless data logger systemFpga implementation of wireless data logger system
Fpga implementation of wireless data logger system
 
IRJET-5G Mobile Technology
IRJET-5G Mobile TechnologyIRJET-5G Mobile Technology
IRJET-5G Mobile Technology
 
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNETSOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
SOCIAL NETWORK FOR SMART DEVICES USING EMBEDDED ETHERNET
 
Smart Storage for Home Application
Smart Storage for Home ApplicationSmart Storage for Home Application
Smart Storage for Home Application
 
IRJET- Wifi based Smart Electric Meter using IoT
IRJET-  	  Wifi based Smart Electric Meter using IoTIRJET-  	  Wifi based Smart Electric Meter using IoT
IRJET- Wifi based Smart Electric Meter using IoT
 
B03504008012
B03504008012B03504008012
B03504008012
 
Iirdem implementation of smart homes and industrial automation system with se...
Iirdem implementation of smart homes and industrial automation system with se...Iirdem implementation of smart homes and industrial automation system with se...
Iirdem implementation of smart homes and industrial automation system with se...
 
Implementation of an Efficient Smart Home System using MQTT
Implementation of an Efficient Smart Home System using MQTTImplementation of an Efficient Smart Home System using MQTT
Implementation of an Efficient Smart Home System using MQTT
 
Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...
Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...
Design And Development of A Plug-In Type Wireless Data Logger for Energy Meas...
 
Energy Meters using Internet of Things Platform
Energy Meters using Internet of Things PlatformEnergy Meters using Internet of Things Platform
Energy Meters using Internet of Things Platform
 
Ethernet based home appliances control
Ethernet based home appliances controlEthernet based home appliances control
Ethernet based home appliances control
 
IRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for AirportIRJET- Smart Authentication System for Airport
IRJET- Smart Authentication System for Airport
 
Design and Implementation of a Contactless Smart House Network System
Design and Implementation of a Contactless Smart House Network System Design and Implementation of a Contactless Smart House Network System
Design and Implementation of a Contactless Smart House Network System
 
IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...
IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...
IRJET- Real Time Analysis of Patient Health Monitoring and Home Automation us...
 
Casp report
Casp reportCasp report
Casp report
 
Tracking limb motion using inertial measurement units (IMU)
Tracking limb motion using inertial measurement units (IMU)Tracking limb motion using inertial measurement units (IMU)
Tracking limb motion using inertial measurement units (IMU)
 
Report on Enviorment Panel Monitoring
Report on Enviorment Panel MonitoringReport on Enviorment Panel Monitoring
Report on Enviorment Panel Monitoring
 
Low cost energy-efficient smart monitoring system using open-source microcont...
Low cost energy-efficient smart monitoring system using open-source microcont...Low cost energy-efficient smart monitoring system using open-source microcont...
Low cost energy-efficient smart monitoring system using open-source microcont...
 
Implementation smart home using internet of things
Implementation smart home using internet of thingsImplementation smart home using internet of things
Implementation smart home using internet of things
 

Similar to IOT BASESTATION MONITORS GREENHOUSE

Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...
Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...
Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...IJTET Journal
 
The pattern and realization of zigbee wi-fi
The pattern and realization of zigbee  wi-fiThe pattern and realization of zigbee  wi-fi
The pattern and realization of zigbee wi-fieSAT Publishing House
 
The pattern and realization of zigbee wi-fi wireless pathway
The pattern and realization of zigbee  wi-fi wireless pathwayThe pattern and realization of zigbee  wi-fi wireless pathway
The pattern and realization of zigbee wi-fi wireless pathwayeSAT Journals
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoTIRJET Journal
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoTIRJET Journal
 
Development of A web and GSM Based Monitoring and Controlling System for PLC ...
Development of A web and GSM Based Monitoring and Controlling System for PLC ...Development of A web and GSM Based Monitoring and Controlling System for PLC ...
Development of A web and GSM Based Monitoring and Controlling System for PLC ...ijsrd.com
 
Ethernet Enabled Digital I/O Control in Embedded Systems
Ethernet Enabled Digital I/O Control in Embedded SystemsEthernet Enabled Digital I/O Control in Embedded Systems
Ethernet Enabled Digital I/O Control in Embedded SystemsIOSR Journals
 
IRJET- IoT Based Swachch Bharat Abhiyan
IRJET-	 IoT Based Swachch Bharat AbhiyanIRJET-	 IoT Based Swachch Bharat Abhiyan
IRJET- IoT Based Swachch Bharat AbhiyanIRJET Journal
 
IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)IRJET Journal
 
Implementation of IoT in Agriculture: A Scientific Approach for Smart Irriga...
Implementation of IoT in Agriculture: A Scientific  Approach for Smart Irriga...Implementation of IoT in Agriculture: A Scientific  Approach for Smart Irriga...
Implementation of IoT in Agriculture: A Scientific Approach for Smart Irriga...Springer
 
Ethernet based home appliances control
Ethernet based home appliances controlEthernet based home appliances control
Ethernet based home appliances controlIAEME Publication
 
IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...
IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...
IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...IRJET Journal
 
IRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation SystemIRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation SystemIRJET Journal
 
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET Journal
 
IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...
IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...
IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...IRJET Journal
 
Agriculture Sensing using IoT
Agriculture Sensing using IoTAgriculture Sensing using IoT
Agriculture Sensing using IoTIRJET Journal
 

Similar to IOT BASESTATION MONITORS GREENHOUSE (20)

Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...
Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...
Arm Based Real Time Monitoring and Controlling of Industrial Parameters Using...
 
IJATIR3848-288
IJATIR3848-288IJATIR3848-288
IJATIR3848-288
 
C010221015
C010221015C010221015
C010221015
 
The pattern and realization of zigbee wi-fi
The pattern and realization of zigbee  wi-fiThe pattern and realization of zigbee  wi-fi
The pattern and realization of zigbee wi-fi
 
The pattern and realization of zigbee wi-fi wireless pathway
The pattern and realization of zigbee  wi-fi wireless pathwayThe pattern and realization of zigbee  wi-fi wireless pathway
The pattern and realization of zigbee wi-fi wireless pathway
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoT
 
Office Automation & Attendance System using IoT
Office Automation & Attendance System using IoTOffice Automation & Attendance System using IoT
Office Automation & Attendance System using IoT
 
E010113235
E010113235E010113235
E010113235
 
Development of A web and GSM Based Monitoring and Controlling System for PLC ...
Development of A web and GSM Based Monitoring and Controlling System for PLC ...Development of A web and GSM Based Monitoring and Controlling System for PLC ...
Development of A web and GSM Based Monitoring and Controlling System for PLC ...
 
Ethernet Enabled Digital I/O Control in Embedded Systems
Ethernet Enabled Digital I/O Control in Embedded SystemsEthernet Enabled Digital I/O Control in Embedded Systems
Ethernet Enabled Digital I/O Control in Embedded Systems
 
IRJET- IoT Based Swachch Bharat Abhiyan
IRJET-	 IoT Based Swachch Bharat AbhiyanIRJET-	 IoT Based Swachch Bharat Abhiyan
IRJET- IoT Based Swachch Bharat Abhiyan
 
IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)
 
Implementation of IoT in Agriculture: A Scientific Approach for Smart Irriga...
Implementation of IoT in Agriculture: A Scientific  Approach for Smart Irriga...Implementation of IoT in Agriculture: A Scientific  Approach for Smart Irriga...
Implementation of IoT in Agriculture: A Scientific Approach for Smart Irriga...
 
Ethernet based home appliances control
Ethernet based home appliances controlEthernet based home appliances control
Ethernet based home appliances control
 
IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...
IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...
IRJET- Artificial Intelligence Based Iot Automation: Controlling Devices with...
 
IRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation SystemIRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation System
 
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
 
Beagle board
Beagle boardBeagle board
Beagle board
 
IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...
IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...
IRJET-Design of ARM Based Data Acquisition and Control System for Engine Asse...
 
Agriculture Sensing using IoT
Agriculture Sensing using IoTAgriculture Sensing using IoT
Agriculture Sensing using IoT
 

More from IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

More from IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Recently uploaded

MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 

Recently uploaded (20)

MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 

IOT BASESTATION MONITORS GREENHOUSE

  • 1. http://www.iaeme.com/IJARET/index.asp 65 editor@iaeme.com International Journal of Advanced Research in Engineering and Technology (IJARET) Volume 10, Issue 2, March-April 2019, pp. 65-72, Article ID: IJARET_10_02_007 Available online at http://www.iaeme.com/IJARET/issues.asp?JType=IJARET&VType=10&IType=02 ISSN Print: 0976-6480 and ISSN Online: 0976-6499 © IAEME Publication DESIGNING THE IOT BASESTATION FOR GREENHOUSE MONITORING Syeda Gauhar Fatima Professor ECE dept, Deccan College of Engineering and Technology, Darussalam, Hyderebad. Syeda Kausar Fatima Associate Professor ECE dept., Shadan College of Engineering and Technology, Hyderabad Mohd. Mehrajuddin Assistant Professor EIE dept., Deccan College of Engineering and Technology, Darussalam, Hyderabad, ABTRACT This article put forward a technique to realize the communication between wireless sensor network and the Internet. The IOT (Internet of Things) gateway is used as part of the greenhouse checking system. The design well-matched multiple access method such as LAN, Wifi, GPRS, EDGE, 3G and so on, also the data can be deposited locally. The IOT gateway uses STM32 as the MCU, μC/OS-III as the embedded operating system. The application demonstrates the gateway is trustworthy, compatible, and extendible. Because of this gateway the greenhouse monitoring system realized the real- time detection and control of the greenhouse, and enhance the ability of the automation and the smartness of the greenhouse monitoring. Key words: Internet of things, LAN, GPRS, Embedded operating system, STM32 Cite this Article: Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin, Designing the Iot Basestation for Greenhouse Monitoring, International Journal of Advanced Research in Engineering and Technology, 10(2), 2019, pp.65-72. http://www.iaeme.com/IJARET/issues.asp?JType=IJARET&VType=10&IType=2 1. OVERVIEW With the expansion of society, traditional forms of agriculture can't satisfy people's needs, so agriculture must be change to satisfy people's needs. The development of Internet technology has brought light to the development of agricultural modernization, agricultural Internet of things has become the inevitable trend of agricultural informatization. Through the remote monitoring and control of greenhouse, the greenhouse monitoring system realized the precise measurement and real time control of the greenhouse. Also the greenhouse monitoring system can implement the scientific management methods, improve crop disaster prevention ability and increase production [1]. The greenhouse monitoring system is intended to satisfy the need
  • 2. Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin http://www.iaeme.com/IJARET/index.asp 66 editor@iaeme.com of the remote monitoring and control of greenhouse. In this paper the design of the gateway will be introduced and the gateway is the core of the system. The IOT gateway is a join point of public network and wireless sensor network in greenhouse monitoring and control system. And the function of the gateway is realized data gathering, upload and processing remote user control information. The gateway is founded on modularization method and the using of the scheme Improved the compatibility and better meets the needs of complex agricultural environments. Because of the electrical networks are instable, the design can realize the cable and wireless communication between the gateway and the upper computer, if all the network lose connection, the data will be stored in the SD card, and send to the upper computer when established network connection. 2. ORGANIZATION OF THE GREENHOUSE MONITORING SYSTEM This greenhouse monitoring and control system is designed to solve the problem when there are lots of greenhouses in agricultural production base. If each greenhouse links with the remote server independently, the construction is big and the cost is high. So, we need gateway to gettogether data and send to the remote server combiningly. As is shown on the Fig. 1 the greenhouse monitoring and control system is made up of the acquisition and control system in the greenhouses, the gateway and the upper computer, and the ZigBee coordinator is a part of the gateway [2]. In terms of function, the greenhouse monitoring and control system comprises of acquisition and control two parts. The function of acquisition is to transfer data from ZigBee coordinator to MCU, and then the MCU encapsulate data into the appropriate format and transfer to the
  • 3. Designing the Iot Basestation for Greenhouse Monitoring http://www.iaeme.com/IJARET/index.asp 67 editor@iaeme.com upper computer. The function of control is to transfer data from upper computer to MCU, and then the MCU encapsulate data into the suitable format and handover to the acquisition and control system through ZigBee coordinator. 3. THE HARDWARE DESIGN OF THE IOT GATEWAY 3.1. The System Design of the IOT Gateway As is shown on the Fig. 2 the hardware design of the IOT gateway is made up of Ethernet PHY, ZigBee module, GPRS module (replaceable) [3]. And the MCU by means of STM32F107, which is based on Cortex-M3 [4], DP83848 is using as the Ethernet PHY and connects the Ethernet MAC of the MCU through MII. Figure 2 Hardware design of the IOT gateway. 3.2. The Design of ZigBee Coordinator ZigBee node devices hav evarious advantages viz, low energy consumption, simple network flexible, low cost and low equipment complexity, so they are suitable tobe in the greenhouse IOT. The ZigBee module in the gateway implements CC2530 of TI Company, and play the role of coordinator, and connected with STM32 through serial interface. This coordinator has the responsible to launch and configuration the network, collect data and transfer the realtime data to STM32 [5]. 3.3. The Design of GPRS Module The communication of GPRS is coved widely, transmission efficiency is high, easy to use and flexible, and the TCP/IP data transmission reliability is high [6]. This design use MG323 as an example to introduce the GPRS module. MG323 module is prepared up of GSM base band control, RF transceiver, power module, MCP storage, 26 MHz reference clock, RF front-end module, receiving filter. The serial port interface level of MG323 is TTL, so MG323 can attach with the serial port interface of STM32. The consumption of MG323 is low, so if the transmission speed is not requested MG323 is suited to the greenhouse monitoring system. For the greenhouse monitoring system which requests the transmission speed MG323 can be replaced with SIM5216E, which is 3G module and the transmission speed may be 7.2 Mbps [7].
  • 4. Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin http://www.iaeme.com/IJARET/index.asp 68 editor@iaeme.com 4. THE DESIGN OF SOFTWARE 4.1. The System Design of Software As is shown on the Fig. 3, this scheme adopted a development mode of layering [8]. The hardware layer is largely to complete the hardware driver development of each module. Operating system layer is primarily to complete the transplantation of μC/OS-III embedded operating system. Application layer mainly finalizes the development of the application. The job of the system is made up of the task of Ethernet communication, GPRS communication, SD storage and ZigBee communication. 4.2. Transplant of μC/OS-III This design selects STM32 as the MCU, so the design adopts μC/OS-III as the embedded operating system, because of the embedded operating system the application related with the code of the upper only and has nothing to do with the processor. When creating software transplant it only needs to modify the underlying function related to hardware. And it increases the portability and reserves the ability of the system. Transplant of μC/OS-III [9] largely contains OS, CPU and BSP, as follows: 1) OS_CPU.H, OS_CPU_A.ASM, OS_CPU_C.C three files about core need to be modify. OS_CPU.H contains processor- and implementation-specificlly defines constants, macros, and typedefs. OS_CPU_C.C comprises of nine hook function and OSTaskStkInit(). OS_CPU_A.ASM contains five fairly simple assembly language functions. 2) CPU.H, CPU_A.ASM, CPU_C.C three files about CPU needed to be modified. CPU c. defines many data types. CPU_A.ASM contains the assembly code, such as the interrupt function to open the interrupt function, count the reset function to wait. CPU_C.C is an optional file, and keeps the CPU timer interrupt controller code. 3) Create BSP adapted to the target board of board supports package level. BSP.C and BSP.H help achieve the board of peripherals logically. BSP_INT.C and BSP_INT.H holds function related with the interrupt controller. 4.3. Protocol Conversion The gateway handovers the data to acquisition and control system via ZigBee protocol, and transfer data to upper computer via GPRS or Ethernet. So protocol conversion is needed when transferring data. Fig. 4 is the protocol conversion diagram [10].
  • 5. Designing the Iot Basestation for Greenhouse Monitoring http://www.iaeme.com/IJARET/index.asp 69 editor@iaeme.com Figure 4 Protocol conversion architecture. We know that in TCP/IP protocol, the transfer of Ethernet data is acknowledged by MAC, and ARP complete the conversion between IP and the MAC of DLL. So ZigBee nodes also need a way to acknowledgement when transfer data, just like the transfer of Ethernet data. Then the mapping relation is build between MAC of ZigBee and IP to understand the conversion of IP, and is completed in the address adaptation layer. Then data format convert is completed by using combined application protocol in the application protocol layer. And application program layer realized the specific purpose of the gateway, and running as the form of the task of μC/OS-III. 4.4. Ethernet communication This design recognizes Ethernet communication via LwIP protocol. LwIP protocol links with underlying hardware and top applications via interface. LwIP contains 4 layers; physical layer is to complete driver of Ethernet controller. Interface layer is to complete the acknowledgement of MAC by ARP protocol. Network layer is to complete basic network transport protocol, contains IP, ICMP protocol and so on. Network transport layer ensures network data transfer according to certain format. LwIP initial should do first before the TCP_task start, the program of LwIP initial shows below. And Fig. 5 shows the flow chart of how the Ethernet sends the data.
  • 6. Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin http://www.iaeme.com/IJARET/index.asp 70 editor@iaeme.com Figure 5 Ethernet sends data work flow. Figure 6 GPRS sends data work flow. 4.5. GPRS Communication STM32 sets the parameters of MG323 via AT instructs. As the way to transfer data is via IP address, several steps is needed to set: 1. AT+CSQ This statement is to query network signal quality, and you may receive +CSQ 29, 99 as answer, 29 is the parameter we need. 2. AT+CREG? This statement is to query network register, and you may receive + CREG 0, 1 as answer. Set the connection protocol via at^sics=0,conType,GPRS0; at^sics=0,passwd,gprs; at^sics=0,user,cm and at^sics=0,apn,cmnet. This is four statements, and each will get return of OK. 3. Set TCP/IP socket, at^siss=1, srvType,socket; at^siss=1,conId,0; at^siss=1,address,"socktcp:// 60.10.130.168:7777". This is three statements, and each will get return of OK, and 60.10.130.168 is the internet IP, 7777 is the intranet port. 4. AT^SISO=1 to open connection, if you receive the answer of ^SISW: 1, 1 then success to open TCP/IP connection, and the transfer of data are OK. 5. The flow chart of GPRS directs data to upper computer is shown Fig. 6. In order to circumvent the operators to cut off the connection when GPRS communication in spare time, heat beat packets are desired.
  • 7. Designing the Iot Basestation for Greenhouse Monitoring http://www.iaeme.com/IJARET/index.asp 71 editor@iaeme.com 4.6. The Software Design of ZigBee Module ZigBee protocol is running in ZigBee coordinator, and the protocol is based on 802.15.4 protocol, and is made up of application layer, network layer, data link layer and medium access layer [11]. The gateway is responsible for the establishment of the ZigBee network and to monitor the ZigBee nodes, the flow chart of ZigBee coordinator is shown on Fig. 7. After μC/OS-III startup, initialize ZigBee will be the first, and the upper computer manage the MAC and network address unified. 5. APPLICATION RESULTS The software of the upper computer is designed by LabVIEW. LabVIEW is a virtual instrument platform developed by NI Company, which adopts powerful graphic language instead of procedure code. The program behavior of LabVIEW is labelled by graphic symbols, and eradicates the complicated grammar rules, so the development circle is short just need Interactive graphics front panel to show the control and result of the system [12]. And for LabVIEW it is easy to solve the problem of data collection, data analyze, file processing, waveform processing and arithmetic operations [13]. Figure 7 ZigBee coordinator sends data work flow. Figure 8 The interface of upper computer The upper computer works as is shown on Fig. 8. In this software, users can select manual or auto mode. Manual mode desires users to send control instruct by toggle switch on the interface. When choosen the mode of auto, software will send control instruct automatic, but we should collect the suitable value for crop growth first.
  • 8. Syeda Gauhar Fatima, Syeda Kausar Fatima and Mohd. Mehrajuddin http://www.iaeme.com/IJARET/index.asp 72 editor@iaeme.com In the analysis of the Fig. 8, the humidity in the greenhouse is low, so the irrigation instruct is sent. This kind of fine management ensures that the greenhouse crops grown up in the most proper atmosphere. 6. CONCLUSIONS The IOT gateway connect wireless sensor network with the Internet, guarantee the operation of the greenhouse monitoring system, and make it convenient to remote monitoring large-scale greenhouse, also make it easy to fine planting. The practical application approved that the gateway run fine in the greenhouse monitoring system, the environment data of the greenhouse can transfer reliably, and the control instruction sent timely. This design realizes remote intelligent checking and control of greenhouse, and is helpful to farms to scientific and rational planting crops. So this design has assured value to popularize. REFERENCES [1] Burrell J., Brooke T., Beckwith R., Vineyard computing: Sensor networks in agriculture production, IEEE Pervasive Computing, Vol. 3, Issue 1, 2004, pp. 38-45. [2] Zheng Qiang, Peng Lin, Zou Qiuxia, Gao Lutao, The Design of Remote Greenhouse Monitoring System Based on the Embedded Web Server, Agricultural Mechanization Research, Vol. 11, Issue 11, 2013, pp. 84-87. [3] Zhong Ke, Chen Xiangdong, Design on Smart Home Service Gateway based on IOT, Communications Technology, Vol. 45, Issue 8, 2012, pp. 65-67. [4] Yin Jiting, Yuan Jia, Jiao Zhiman, Wu Bin, Research and Development of Smart Home Control System Based on ARM and ZigBee, Computer Measurement & Control, Vol. 21, Issue 9, 2013, pp. 2451-2454. [5] Li Wen, Design of a Chicken House Environment Control System Based on ZigBee and Ethernet Technology, Agricultural Mechanization Research, Vol. 11, Issue 11, 2010, pp. 126-129. [6] Jia Kejin, Han Yu, Qian Chunyang, Du Taihang, STM32-based Data Transfer Module in Monitoring System for Cold Chain Transportation, Control and Instruments in Chemical Industry, Vol. 2, Issue 40, 2013, pp. 136-141. [7] Wang Yonggang, Jia Kejin, Zhou Meng, Low-power Intelligent Irrigation System Based on LIN Bus, Water Saving Irrigation, Vol. 10, 2013, pp. 77-80. [8] Li Meng, Yang Bin, Chen Weikun, Liu Meng, Design of Embedded Industrial Wireless Gateway Based on ARM, Automation & Instrumentation, Vol. 9, 2013, pp. 29-32, 57. [9] Micrium_uC-Eval-STM32F107_uCOS-III.[201302-08] http://micrium.com/downloadcenter/downloadresults/?searchterm=mp-uc-os-iii- 1&supported=true. [10] Xu Songsong, Zhou Xifeng, Guo Qian’Gang, Design of ZigBee gateway system based on ARM, Network and Communication, Vol. 32, Issue 16, 2013, pp. 51-53. [11] Jang Feng, Zhao Wei, ZigBee Technology Application in Green House Wireless Monitoring System, Agricultural Mechanization Research, Vol. 9, Issue 9, 2013, pp. 218- 222. [12]. Rick Bitter, Taqi Mohiuddin, Matt Nawrocki, LabVIEW Advanced Programming Techniques, CRC Press, 2001. [12] Zhu Fengwu, Zou Lina, Tu Chuanchuan, Yu Fenghua, Shen Xiao, The research of the pigpen temperature monitoring and control system based on LabVIEW, Journal of Chinese Agricultural Mechanization, Vol. 34, Issue 2, 2013, pp. 127-130.