WIRELESS DATA ACQUISITION SYSTEM FOR PHARMACEUTICAL AND CHEMICAL INDUSTRIES USING LOAD-CELL

Size: px
Start display at page:

Download "WIRELESS DATA ACQUISITION SYSTEM FOR PHARMACEUTICAL AND CHEMICAL INDUSTRIES USING LOAD-CELL"

Transcription

1 International Journal of Computer Networking, Wireless and Mobile Communications (JCNWMC) ISSN Vol.3, Issue 1, Mar 2013, TJPRC Pvt. Ltd. WIRELESS DATA ACQUISITION SYSTEM FOR PHARMACEUTICAL AND CHEMICAL INDUSTRIES USING LOAD-CELL NAYEEM MUDDIN KHAN D 1, GNL RAVI TEJA 2, R BHARGAVA KRISHNA 3 & RAJESH SINGH 4 1,2,3 Robotics Engineering, University of Petroleum and Energy Studies, Dehradun, India 4 Electronics Electrical and Instrumentation Engineering,University of Petroleum and Energy Studies, Dehradun, India ABSTRACT Data acquisition system possesses various applications in numerous fields. Pharmaceuticals companies and chemical industries find importance of data acquisition system while acquiring and storing data related to weights and quantities of different chemicals and compounds. Such a system uses a load cell to measure the weights/volume of the chemicals and stores the data in a computer for later reference. These modules are also used in condiment stores where the weight/quantity of the commodity is found using the load cell, data is sent to the computer which then decides the cost of it. Use of such system reduces the need of manually creating a database which may lead to errors. This paper describes a similar system with an additional feature of wireless communication using ZigBee protocol. The weight measured, can be monitored from long distance by sending it to another module through wireless system which is then sent to the database. Low power consumption, low cost, accurate measurement and the flexible structure are the characteristics of this module. KEYWORDS: Load Cell Sensor, Central Computing Unit, ZigBee Transceiver, Strain Gauge WSN Algorithm INTRODUCTION Wireless Sensor networks are at a high demand in the industries with hazardous working environments. A combination of embedded and wireless system allows data transmission among different sensor nodes. This setup does not require any communication medium like WLAN or cellular network for communication. The computing unit at each node is a microcontroller which processes and transmits the data from one node to the other creating a personal network. The network thus developed helps in data monitoring and controlling the physical quantities of remote locations in accurate and safe way [1]. This technology has been exploited by different industries where monitoring the process is a difficult but important task. One such application has been illustrated in this paper. The data acquired from load cell is transmitted to various stations inside the network where this data can be analyzed and even stored Most of the industries such as chemical and pharmaceutical, steel plants and many more require storing and creating a database of features of their product. Load cells are the sensors used to measure the weight of the products. Sometimes it becomes difficult to monitor the weight in hazardous conditions. In cases such as monitoring the mass of a radioactive material used in the reactor it s not feasible for every person to do so, whereas one person can check the mass (at a station) and send it to other stations wirelessly through the module described in this paper. HARDWARE DEVELOPMENT Each module has an independent transmitting and a receiving development board. The transmitting board displays and sends the data from the load cell which is displayed and the receiving end. Hardware used in each of the development board are Atmel micro controller, LCD and a Zigbee module. The transmitter has a load cell sensor module attached to it.

2 112 Nayeem Muddin Khan D, Gnl Ravi Teja, R Bhargava Krishna & Rajesh Singh Transmitter The block diagram gives the representation of transmitter circuit. It consists of a Load Cell trainer module, on board power supply, Atmega 32, LCD, ZigBee transmitter. On board power supply converts the applied voltage to 5V which is required for the microcontroller, MAX 232, LCD and ZigBee to operate. The Load cell trainer module has inbuilt power supply. The micro controller receives the data from the sensor with the help of DB9 connected to the module. The weight is acquired by the controller using UART protocol via MAX232. Once the weight in analog is received it is converted into digital signal using the inbuilt Analog to Digital Converter (ADC) in the micro controller. The converted digital signal is transmitted to the receiving board via ZigBee transceiver. Figure 1: Block Diagram of Transmitter Circuit Figure 2: Transmitter Circuit Receiver The figure below shows the block diagram of the receiver module which is really is the same circuit. An on board power supply is developed which supplies 5V to microcontroller and LCD. Transmitted data is received through this circuit and displayed on the screen. Thus the observer would be able to get the data from the plant area to the control room. Figure 3: Block Diagram of Receiving Circuit

3 Wireless Data Acquisition System for Pharmaceutical and Chemical Industries using Load-Cell 113 Figure 4: Receiving Circuit Load Cell Sensor Measurement of weight/load can be done with many sensors with a proper signal conditioning. The load is measured using a strain gauge bridge circuit having four arms. Strain gauge works on the principle that when a conductor is subjected to strain due to the applied load the resistance varies. The strain gauges are attached at places where the beam is stressed the most. When load is applied the change in dimension which is essentially strain is measure by these gauges and corresponding change in the resistance of the bridge circuit gives out a voltage. In this project the load cell module (Model No: ITB - 04CE) developed by VI Microsystems Pvt. Ltd, was used. The module consists of cantilever beam, LED display, power supply. This module can measure weight up to 5kg which can be displayed on the LCD Screen. Power Supply An on board power supply unit supplies electrical signal for the devices to run. This unit converts the AC supply to DC supply that is required to drive the components on the board. All the ICs generally work on 5V supply. For this a power supply was developed using a bridge rectifier for the conversion of AC signal to DC to get the output DC voltage of 12V which is further reduced using a voltage regulator to 5V. The unit gives an output of 5V and 500 ma current for the components on nodes to work. Both the transmitter and receiver have on board power supply. Figure 5: Load Cell Setup

4 114 Nayeem Muddin Khan D, Gnl Ravi Teja, R Bhargava Krishna & Rajesh Singh ATmega 32 The ATmega32 is a low-power CMOS 8-bit microcontroller based on the AVR RISC architecture. By executing powerful instructions in a single clock cycle, the ATmega32 achieves throughputs approaching 1 MIPS per MHz, allowing the system designed to optimize power consumption versus processing speed. ZigBee Transceiver This is the radio frequency receiver module, which can facilitate the OEM designers to design as per their application in the quickest ways. The circuit is designed with SMD components and the module size is small enough to be able to be fitted in almost any application. These modules are based on IC CC2500 by Texas Instrument. It works at frequency of 2.4GHz. LCD The LCD unit receives character codes (8 bits per character) from a microprocessor or microcomputer, latches the codes to its display data RAM (80-byte DD RAM for storing 80 characters) transforms each character code into a 5*7 dotmatrix character patterns, and displays the characters on its LCD screen. MAX 232 Max 232 (level converter): The MAX232 is a dual driver/receiver that includes a capacitive voltage generator to supply EIA-232 voltage levels from a single 5-V supply. Each receiver converts EIA-232 inputs to 5-V TTL/CMOS levels. These receivers have a typical threshold of 1.3 V and a typical hysteresis of 0.5 V, and can accept ±30V inputs. Software Development The required coding was done in AVR Studio4 using embedded C programming language. Transmitting end coding included reading and converting the analog signals from the load cell, displaying and then transmitting them. At the receiving end an embedded code is developed for the microcontroller to receive the data and display it. For the whole process to run a software development procedure has been followed. The following steps are involved in the software development: Coding/debugging Compiling Burning Coding / Debugging The process of designing a problem using a high level programming language such as C, Java or assembly language is known as coding. Coding is done to create a set of instructions or an algorithm for the microcontroller to perform the specific task. In this case the task was to read the data from the sensor and transmit them wirelessly to a displaying device for the observer to acquire or monitor it. For this project Load-Cell WSN algorithm was coded in AVR studio4 using embedded C programming language. Compiling A microcontroller understands only the machine level language. Therefore a C code must always be converted into machine level language for the controller to understand. A compiler converts the C program into machine level language. Apart from the main code there are source codes developed for supporting the protocol to run and are merged

5 Wireless Data Acquisition System for Pharmaceutical and Chemical Industries using Load-Cell 115 with the main code (algorithm). In this project a source code for UART, LCD, ADC and ZigBee was developed and used along with the main load-cell WSN algorithm. To program the microcontroller WINAVR was used. Although inline assembly was possible, the programming was done strictly in C. Burning After coding and compiling the program must be burnt into the microcontroller. Here burning the machine language file into the microcontroller s program memory is called burning which is achieved with the dedicated programmer attached to the PC peripheral. PC s serial port has been used for this purpose. Robokits Programmer was been used for burning process. LOAD-CELL WSN ALGORITHM A proper step by step algorithm was developed and written in AVRStudio4 in embedded C and compiled successfully using WINAVR. The compiled code was burnt into Atmega 32 micro controller using ISP programmer. The Load-Cell WSN algorithm can be summarized in the following way using Embedded C platform. The algorithm can be summarized as shown below in a flowchart The received data V a is converted into digital value by Figure 6: Load WSN Algorithm The digital data V d is then converted into actual weight by (1) (2) RESULTS The module was successfully developed and tested in the laboratory assuming the required environmental conditions. The transmitter was able to transmit the data up to 200mts distance. The following table shows the applied weight, measured, voltage and the weight of the object obtained. The results are accurate with minor errors in reading. These can be said to be due to variable environmental conditions and equipment. The following figure shows the transmitter and the receiver of the module.

6 116 Nayeem Muddin Khan D, Gnl Ravi Teja, R Bhargava Krishna & Rajesh Singh Figure 7: Transmitter and Receiver Circuit CONCLUSIONS AND FUTURE SCOPE The module designed in this paper was tested for different loads and it was concluded that the output acquired was in compliance with the input with few errors which were due to the poor condition of the load cell sensor. The output of the module was verified with the output of the load cell trainer kit (Model No: ITB - 04CE) and found to be accurate. Such a module, built successfully can be used for many applications. The same technology can be used to monitor pressure, temperature, flow, level and different parameters which used in industries. The range can be increased from 200mts to 20km. REFERENCES 1. H. Karl and A. Willig, Protocols and Architectures for Wireless Sensor Networks, John Wiley and Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex, England, Using Wireless Sensor Network on Real-Time Remote Monitoring of the Load Cell for Landslide Yao-Ming Hone': Hsueh-Chun Lin2, and Yao-Chiang Kan3 1Department of Design for Sustainable Environment, MingDao University, Peetow, Changhua 52345, Taiwan 2Department of Health Risk Management, ChinaMedicalUniversity, Taichung 40402, Taiwan 3Department of Communications Engineering, Yuan' Ze University, Chung-Li, Taoyuan 32003, Taiwan. 3. J. F. Akyildiz, W. Su, Y. Sankarasubramaniam, and E. Cayirci, Computer Networks. 4. Pressure monitoring in wireless sensor network using Zigbee transceiver module Singh, R.; Mishra, S.; Joshi, P. Computer and Communication Technology (ICCCT), Kavi K. Khedo, Rajiv Perseedoss and Avinash Mungur. Department of Computer Science and Engineering, University of Mauritius,Reduit,Mauritius. 6. Fei Lu, Guo-Hui Tian, ZigBee Based Wireless Sensor and Actor Network in Intelligent Space Oriented to Home Service Robot, School of Control Science and Engineering, Shandong University, Jinan, China, 2012

The Development of Vibration Frequency Measurement Equipment for Bridge Pier

The Development of Vibration Frequency Measurement Equipment for Bridge Pier , pp.36-40 http://dx.doi.org/10.14257/astl.2014.63.08 The Development of Vibration Frequency Measurement Equipment for Bridge Pier Yao-Ming Hong 1, Jian-Rong Zeng 1, Yao-Chiang Kan 2, Hsueh-Chun Lin 3

More information

Design and Implementation of AT Mega 328 microcontroller based firing control for a tri-phase thyristor control rectifier

Design and Implementation of AT Mega 328 microcontroller based firing control for a tri-phase thyristor control rectifier Design and Implementation of AT Mega 328 microcontroller based firing control for a tri-phase thyristor control rectifier 1 Mr. Gangul M.R PG Student WIT, Solapur 2 Mr. G.P Jain Assistant Professor WIT,

More information

Training Schedule. Robotic System Design using Arduino Platform

Training Schedule. Robotic System Design using Arduino Platform Training Schedule Robotic System Design using Arduino Platform Session - 1 Embedded System Design Basics : Scope : To introduce Embedded Systems hardware design fundamentals to students. Processor Selection

More information

Soldier Tracking and Health Indication System Using ARM7 LPC-2148

Soldier Tracking and Health Indication System Using ARM7 LPC-2148 Soldier Tracking and Health Indication System Using ARM7 LPC-2148 Shraddha Mahale, Ekta Bari, Kajal Jha Mechanism under Guidance of Prof. Elahi Shaikh (HOD) Electronics Engineering, Mumbai University Email:

More information

Design of WSN for Environmental Monitoring Using IoT Application

Design of WSN for Environmental Monitoring Using IoT Application Design of WSN for Environmental Monitoring Using IoT Application Sarika Shinde 1, Prof. Venkat N. Ghodke 2 P.G. Student, Department of E and TC Engineering, DPCOE Engineering College, Pune, Maharashtra,

More information

LABORATORY AND FIELD INVESTIGATIONS ON XBEE MODULE AND ITS EFFECTIVENESS FOR TRANSMISSION OF SLOPE MONITORING DATA IN MINES

LABORATORY AND FIELD INVESTIGATIONS ON XBEE MODULE AND ITS EFFECTIVENESS FOR TRANSMISSION OF SLOPE MONITORING DATA IN MINES LABORATORY AND FIELD INVESTIGATIONS ON XBEE MODULE AND ITS EFFECTIVENESS FOR TRANSMISSION OF SLOPE MONITORING DATA IN MINES 1 Guntha Karthik, 2 Prof.Singam Jayanthu, 3 Bhushan N Patil, and 4 R.Prashanth

More information

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING 1 HARSHUL BALANI, 2 CHARU GUPTA, 3 KRATIKA SUKHWAL 1,2,3 B.TECH (ECE), Poornima College Of Engineering, RTU E-mail; 1 harshul.balani@gmail.com, 2 charu95g@gmail.com,

More information

Car Over-Speed Detection with Remote Alerting

Car Over-Speed Detection with Remote Alerting IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Car Over-Speed Detection with Remote Alerting Amey Sawant Jyoti Khandale

More information

Zigbee based Land Slide Detection and Monitoring System

Zigbee based Land Slide Detection and Monitoring System IJIRST International Journal for Innovative Research in Science & Technology Volume 3 Issue 02 July 2016 ISSN (online): 2349-6010 Zigbee based Land Slide Detection and Monitoring System Vrushali G. Hadole

More information

[Ahmed, 3(1): January, 2014] ISSN: Impact Factor: 1.852

[Ahmed, 3(1): January, 2014] ISSN: Impact Factor: 1.852 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Microcontroller Based Advanced Triggering Circuit for Converters/Inverters Zameer Ahmad *1, S.N. Singh 2 *1,2 M.Tech Student,

More information

CSE237d: Embedded System Design Junjie Su May 8, 2008

CSE237d: Embedded System Design Junjie Su May 8, 2008 Jamie Steck CSE237d: Embedded System Design Junjie Su May 8, 2008 Project Progress Report: Efficient Energy Management and Task Scheduling of a Solar-Powered System Background Every two years, a team of

More information

Design of LVDT Based Digital Weighing System

Design of LVDT Based Digital Weighing System International Journal of Electronics and Computer Science Engineering 2100 Available Online at www.ijecse.org ISSN- 2277-1956 Pratiksha Sarma 1, P. K. Bordoloi 2 1,2 Department of Applied Electronics and

More information

AMI (ADVANCED METERING INFRASTRUCTURE) MESH WITHOUT SWITCHES IN THE KIT SECTION

AMI (ADVANCED METERING INFRASTRUCTURE) MESH WITHOUT SWITCHES IN THE KIT SECTION AMI (ADVANCED METERING INFRASTRUCTURE) MESH WITHOUT SWITCHES IN THE KIT SECTION *M.Raga Divya, ** Y.Ratna Babu *Department of Electronics and Communication VIGNAN S Lara Institute of Technology and Sciences,

More information

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz

Preliminary GHz Transceiver-µController-Module. Applications PRODUCT SPECIFICATION FEATURES MICROCONTROLLER MHz PRODUCT SPECIFICATION 2.4 2.5 GHz e Applications 6 : 2 " 2! 2 2 + 2 7 + + Alarm and Security Systems Video Automotive Home Automation Keyless entry Wireless Handsfree Remote Control Surveillance Wireless

More information

III. MATERIAL AND COMPONENTS USED

III. MATERIAL AND COMPONENTS USED Prototype Development of a Smartphone- Controlled Robotic Vehicle with Pick- Place Capability Dheeraj Sharma Electronics and communication department Gian Jyoti Institute Of Engineering And Technology,

More information

WIRELESS RF TRANSCEIVER FOR ENERGY METER READING SYSTEM

WIRELESS RF TRANSCEIVER FOR ENERGY METER READING SYSTEM International Journal of Advanced Research in Engineering ISSN: 2394-2819 Technology & Sciences Email:editor@ijarets.org May-2016 Volume 3, Issue-5 www.ijarets.org WIRELESS RF TRANSCEIVER FOR ENERGY METER

More information

Polyhouse Monitoring And Controlling Using Wireless Sensor Network

Polyhouse Monitoring And Controlling Using Wireless Sensor Network Polyhouse Monitoring And Controlling Using Wireless Sensor Network 1 Rohini N. Deokar, 2 Prof. P. R. THORAT 1 PG Research fellow, SPWEC-Aurangabad 2 Asso. Professor & PG Teacher Embedded System & VLSI

More information

A Solar-Powered Wireless Data Acquisition Network

A Solar-Powered Wireless Data Acquisition Network A Solar-Powered Wireless Data Acquisition Network E90: Senior Design Project Proposal Authors: Brian Park Simeon Realov Advisor: Prof. Erik Cheever Abstract We are proposing to design and implement a solar-powered

More information

A Wireless Smart Sensor Network for Flood Management Optimization

A Wireless Smart Sensor Network for Flood Management Optimization A Wireless Smart Sensor Network for Flood Management Optimization 1 Hossam Adden Alfarra, 2 Mohammed Hayyan Alsibai Faculty of Engineering Technology, University Malaysia Pahang, 26300, Kuantan, Pahang,

More information

MSP430 and nrf24l01 based Wireless Sensor Network Design with Adaptive Power Control

MSP430 and nrf24l01 based Wireless Sensor Network Design with Adaptive Power Control MSP430 and nrf24l01 based Wireless Sensor Network Design with Adaptive Power Control S. S. Sonavane 1, V. Kumar 1, B. P. Patil 2 1 Department of Electronics & Instrumentation Indian School of Mines University,

More information

Keyword: - GSM kit, Transformer, sensors, rectifier, microcontroller, power supply, LCD.. Vol-3 Issue INTRODUCTION

Keyword: - GSM kit, Transformer, sensors, rectifier, microcontroller, power supply, LCD.. Vol-3 Issue INTRODUCTION GSM BASED DISTRIBUTION TRANSFORMER MONITORING SYSTEM Bhakare Govind A. 1, Dabe Nilesh P. 2,Pawar S. D. 3. 1 UG Student, Electrical Engineering, ATCFOE, Ahmednagar, Maharashtra, India 2UG Student, Electrical

More information

HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS

HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS HUMAN BODY MONITORING SYSTEM USING WSN WITH GSM AND GPS Mr. Sunil L. Rahane Department of E & TC Amrutvahini College of Engineering Sangmaner, India Prof. Ramesh S. Pawase Department of E & TC Amrutvahini

More information

Monitoring the Transformer Oil Temperature and Load Sharing Using Gsm

Monitoring the Transformer Oil Temperature and Load Sharing Using Gsm Monitoring the Transformer Oil Temperature and Load Sharing Using Gsm Ramadas.K 1, Madasamy.P 2 1, 2 Assistant Professor, Department of Electrical and Electronics Engineering, Aliquippa Chettiar College

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller

Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller Rahul Baranwal 1, Omama Aftab 2, Mrs. Deepti Ojha 3 1,2, B.Tech Final Year (Electronics and Communication Engineering),

More information

Monitoring System for Wind Power Generation Based on Wireless Sensor Network Bhagyashree Mendhule 1, Swati Kantode 2, Deepali Kadu 3

Monitoring System for Wind Power Generation Based on Wireless Sensor Network Bhagyashree Mendhule 1, Swati Kantode 2, Deepali Kadu 3 Monitoring System for Wind Power Generation Based on Wireless Sensor Network Bhagyashree Mendhule 1, Swati Kantode 2, Deepali Kadu 3 1 B.C.Y.R.C s Umrer College of Engineering /Electronics Engineering,

More information

JEPPIAAR SRR Engineering College Padur, Ch

JEPPIAAR SRR Engineering College Padur, Ch An Automated Non-Invasive Blood Glucose Estimator and Infiltrator M. Florence Silvia 1, K. Saran 2, G. Venkata Prasad 3, John Fermin 4 1 Asst. Prof, 2, 3, 4 Student, Department of Electronics and Communication

More information

2.0 Discussion: 2.1 Approach:

2.0 Discussion: 2.1 Approach: 2.0 Discussion: 2.1 Approach: The design for a Power Monitor and Data Logging System is comprised of two major components: the Power Meter and the Data Logger. The Power Meter is the package that plugs

More information

EFFICIENT POWER FACTOR MEASUREMENT SYSTEM WITH LABVIEW INTERFACING FOR HOUSEHOLD APPLICATIONS

EFFICIENT POWER FACTOR MEASUREMENT SYSTEM WITH LABVIEW INTERFACING FOR HOUSEHOLD APPLICATIONS Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 8, August 2014,

More information

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Abstract Wireless sensor networks use small, low-cost embedded devices for a wide range of applications such as industrial data

More information

Vishal S. Deshmukh Student, Department of Electronics Datta Meghe Institute of Engineering Technology and Research, Wardha, India

Vishal S. Deshmukh Student, Department of Electronics Datta Meghe Institute of Engineering Technology and Research, Wardha, India DESIGN AND IMPLEMENTATION OF MULTIPLE LED NOTICE BOARD BY USING ZIGBEE TECHNOLOGY Authors: Pro. Shyam D. Bawankar Assistant professor, Electronics department, Datta Meghe Institute of Engineering Technology

More information

Design and implementation of a programmable remote controlled and monitored irrigation system

Design and implementation of a programmable remote controlled and monitored irrigation system IOSR Journal of Engineering (IOSRJEN) ISSN (e): 2250-3021, ISSN (p): 2278-8719 Vol. 04, Issue 12 (December 2014), V1 PP 25-29 www.iosrjen.org Design and implementation of a programmable remote controlled

More information

Embedded & Robotics Training

Embedded & Robotics Training Embedded & Robotics Training WebTek Labs creates and delivers high-impact solutions, enabling our clients to achieve their business goals and enhance their competitiveness. With over 13+ years of experience,

More information

SNIOT702 Specification. Version number:v 1.0.1

SNIOT702 Specification. Version number:v 1.0.1 Version number:v 1.0.1 Catelog 1 Product introduction... 1 1.1 Product introduction... 1 1.2 Product application... 1 1.3 Main characteristics... 2 1.4 Product advantage... 3 2 Technical specifications...

More information

Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani

Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani Management of Home Appliances with Variation in Environment Aisha Jilani, Sahar Sultan, Intesar Ahmed and Sajjad Rabbani Abstract Aim of this research is to help a remote user to remain in touch with what

More information

Embedded & Robotics Training

Embedded & Robotics Training Embedded & Robotics Training WebTek Labs creates and delivers high-impact solutions, enabling our clients to achieve their business goals and enhance their competitiveness. With over 13+ years of experience,

More information

METHODS FOR ENERGY CONSUMPTION MANAGEMENT IN WIRELESS SENSOR NETWORKS

METHODS FOR ENERGY CONSUMPTION MANAGEMENT IN WIRELESS SENSOR NETWORKS 10 th International Scientific Conference on Production Engineering DEVELOPMENT AND MODERNIZATION OF PRODUCTION METHODS FOR ENERGY CONSUMPTION MANAGEMENT IN WIRELESS SENSOR NETWORKS Dražen Pašalić 1, Zlatko

More information

A Novel Water Quality Monitoring System Based on Solar Power Supply & Wireless Sensor Network

A Novel Water Quality Monitoring System Based on Solar Power Supply & Wireless Sensor Network Available online at www.sciencedirect.com Procedia Environmental Sciences 12 (2012 ) 265 272 2011 International Conference on Environmental Science and Engineering (ICESE 2011) A vel Water Quality Monitoring

More information

Intelligent and passive RFID tag for Identification and Sensing

Intelligent and passive RFID tag for Identification and Sensing Zürich University Of Applied Sciences Institute of Embedded Systems InES Intelligent and passive RFID tag for Identification and Sensing (Presented at Embedded World, Nürnberg, 3 rd March 2009) Dipl. Ing.

More information

Team Description Paper: HuroEvolution Humanoid Robot for Robocup 2014 Humanoid League

Team Description Paper: HuroEvolution Humanoid Robot for Robocup 2014 Humanoid League Team Description Paper: HuroEvolution Humanoid Robot for Robocup 2014 Humanoid League Chung-Hsien Kuo, Yu-Cheng Kuo, Yu-Ping Shen, Chen-Yun Kuo, Yi-Tseng Lin 1 Department of Electrical Egineering, National

More information

INTELLIGENT SELF-PARKING CHAIR

INTELLIGENT SELF-PARKING CHAIR INTELLIGENT SELF-PARKING CHAIR Siddharth Gauda 1, Ashish Panchal 2, Yograj Kadam 3, Prof. Ruchika Singh 4 1, 2, 3 Students, Electronics & Telecommunication, G.S. Moze College of Engineering, Balewadi,

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 2, February -2016 e-issn (O): 2348-4470 p-issn (P): 2348-6406 SIMULATION

More information

Keyword: AVR Microcontroller, GSM, LCD, remote monitoring, Sensors, ZigBee.

Keyword: AVR Microcontroller, GSM, LCD, remote monitoring, Sensors, ZigBee. Volume 3, Issue 7, July 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Design & Implementation

More information

Sensor Network Platforms and Tools

Sensor Network Platforms and Tools Sensor Network Platforms and Tools 1 AN OVERVIEW OF SENSOR NODES AND THEIR COMPONENTS References 2 Sensor Node Architecture 3 1 Main components of a sensor node 4 A controller Communication device(s) Sensor(s)/actuator(s)

More information

An Application of Wireless Standards for Remote Monitoring of Electric Drive Systems

An Application of Wireless Standards for Remote Monitoring of Electric Drive Systems International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 2, Issue 12 (August 2012), PP. 30-36 An Application of Wireless Standards for Remote

More information

THE PERFORMANCE TEST OF THE AD CONVERTERS EMBEDDED ON SOME MICROCONTROLLERS

THE PERFORMANCE TEST OF THE AD CONVERTERS EMBEDDED ON SOME MICROCONTROLLERS THE PERFORMANCE TEST OF THE AD CONVERTERS EMBEDDED ON SOME MICROCONTROLLERS R. Holcer Department of Electronics and Telecommunications, Technical University of Košice, Park Komenského 13, SK-04120 Košice,

More information

II. MAIN BLOCKS OF ROBOT

II. MAIN BLOCKS OF ROBOT AVR Microcontroller Based Wireless Robot For Uneven Surface Prof. S.A.Mishra 1, Mr. S.V.Chinchole 2, Ms. S.R.Bhagat 3 1 Department of EXTC J.D.I.E.T Yavatmal, Maharashtra, India. 2 Final year EXTC J.D.I.E.T

More information

RASPBERRY Pi BASED IRRIGATION SYSTEM BY USING WIRELESS SENSOR NETWORK AND ZIGBEE PROTOCOL

RASPBERRY Pi BASED IRRIGATION SYSTEM BY USING WIRELESS SENSOR NETWORK AND ZIGBEE PROTOCOL RASPBERRY Pi BASED IRRIGATION SYSTEM BY USING WIRELESS SENSOR NETWORK AND ZIGBEE PROTOCOL K.Nireesha, A.Venkateswara Rao M.Tech, Department Of Electronics Communication and Engineering Sri Sivani Institute

More information

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot*

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot* EEL5666C IMDL Spring 2006 Student: Andrew Joseph *Alarm-o-bot* TAs: Adam Barnett, Sara Keen Instructor: A.A. Arroyo Final Report April 25, 2006 Table of Contents Abstract 3 Executive Summary 3 Introduction

More information

Simulation Of Radar With Ultrasonic Sensors

Simulation Of Radar With Ultrasonic Sensors Simulation Of Radar With Ultrasonic Sensors Mr.R.S.AGARWAL Associate Professor Dept. Of Electronics & Ms.V.THIRUMALA Btech Final Year Student Dept. Of Electronics & Mr.D.VINOD KUMAR B.Tech Final Year Student

More information

MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS

MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS MICROCONTROLLER BASED SPEED SYNCHRONIZATION OF MULTIPLE DC MOTORS IN TEXTILE APPLICATIONS 1 RAKSHA A R, 2 KAVYA B, 3 PRAVEENA ANAJI, 4 NANDESH K N 1,2 UG student, 3,4 Assistant Professor Department of

More information

Using Z8 Encore! XP MCU for RMS Calculation

Using Z8 Encore! XP MCU for RMS Calculation Application te Using Z8 Encore! XP MCU for RMS Calculation Abstract This application note discusses an algorithm for computing the Root Mean Square (RMS) value of a sinusoidal AC input signal using the

More information

Advanced menu ordering system in restaurants

Advanced menu ordering system in restaurants Advanced menu ordering system in restaurants 1 Ragila VV, 2 Rosmi Varghese, 3 Soorya Rajeev K, 4 Shimna PK 1,2,3 UG Student, Dept. of ECE, Vimal Jyothi Engineering College, Kannur, Kerala, India 4 Assistant

More information

2 Intelligent meter reading mode

2 Intelligent meter reading mode 3rd International Conference on Multimedia Technology(ICMT 2013) Intelligent water meter with low power consumption based on ZigBee technology Zhe Xie Rangding Wang 1 Abstract. A design of intelligent

More information

EEL4914 Senior Design. Final Design Report

EEL4914 Senior Design. Final Design Report EEL4914 Senior Design Final Design Report Electric Super Bike The Best Team in the World Matt Fisher madfish@ufl.edu Richard Orr gautama@ufl.edu 21 April 2008 1 Contents Contents...2 Abstract...3 Project

More information

WIRELESS ROBOT FOR COAL MINES BASED ON MIXED SIGNAL PROCESSOR (MSP430)

WIRELESS ROBOT FOR COAL MINES BASED ON MIXED SIGNAL PROCESSOR (MSP430) WIRELESS ROBOT FOR COAL MINES BASED ON MIXED SIGNAL PROCESSOR (MSP430) Mr. M. Prashanth UG Student, Electronics and Communication Engineering, Knowledge Institute of Technology, Salem, Tamilnadu, India

More information

Wireless Data Acquisition and Transmission System Design Using Arduino (for Military Jawan alive Detection Network)

Wireless Data Acquisition and Transmission System Design Using Arduino (for Military Jawan alive Detection Network) Wireless Data Acquisition and Transmission System Design Using Arduino (for Military Jawan alive Detection Network) Radhika S. Mundhada (M.tech) Dept. of Electronics & Communication Engg, VIT College of

More information

BULLET SPOT DIMENSION ANALYZER USING IMAGE PROCESSING

BULLET SPOT DIMENSION ANALYZER USING IMAGE PROCESSING BULLET SPOT DIMENSION ANALYZER USING IMAGE PROCESSING Hitesh Pahuja 1, Gurpreet singh 2 1,2 Assistant Professor, Department of ECE, RIMT, Mandi Gobindgarh, India ABSTRACT In this paper, we proposed the

More information

Trains Collision Avoidance System by Using RFID and GSM Technology

Trains Collision Avoidance System by Using RFID and GSM Technology Trains Collision Avoidance System by Using RFID and GSM Technology Smita S. Bhavsar 1, A. N. Kulkarni 2 Student, Electronics and Telecommunication Department, Zeal College of Engineering &Research Pune,

More information

DTMF Controlled Robot

DTMF Controlled Robot DTMF Controlled Robot Devesh Waingankar 1, Aaditya Agarwal 2, Yash Murudkar 3, Himanshu Jain 4, Sonali Pakhmode 5 ¹Information Technology-University of Mumbai, India Abstract- Wireless-controlled robots

More information

UTILIZATION OF ROBOTICS AS CONTEMPORARY TECHNOLOGY AND AN EFFECTIVE TOOL IN TEACHING COMPUTER PROGRAMMING

UTILIZATION OF ROBOTICS AS CONTEMPORARY TECHNOLOGY AND AN EFFECTIVE TOOL IN TEACHING COMPUTER PROGRAMMING UTILIZATION OF ROBOTICS AS CONTEMPORARY TECHNOLOGY AND AN EFFECTIVE TOOL IN TEACHING COMPUTER PROGRAMMING Aaron R. Rababaah* 1, Ahmad A. Rabaa i 2 1 arababaah@auk.edu.kw 2 arabaai@auk.edu.kw Abstract Traditional

More information

Wireless Sensor Network Based Precision Green House Management System

Wireless Sensor Network Based Precision Green House Management System Wireless Sensor Network Based Precision Green House Management System G.Gnanavel 1, G.Ezhilarasan 2, N.Pavithra 3 Assistant professor 12, PG scholar 3 Department of EEE V.R.S. College of engineering, Villupuram

More information

Design and Implementation of Integrated Smart Township

Design and Implementation of Integrated Smart Township IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 11, Issue 2 Ver. I (Mar. Apr. 2016), PP 18-24 www.iosrjournals.org Design and Implementation

More information

Design and Development of Train Tracking System in South Central Railways

Design and Development of Train Tracking System in South Central Railways International Journal of Science and Modern Engineering (IJISME) Design and Development of Train Tracking System in South Central Railways Shaik Nahid,Srinivas Padala,V.Samson Deva Kumar Abstract Rail

More information

A Crop Monitoring System Based on Wireless Sensor Network

A Crop Monitoring System Based on Wireless Sensor Network Available online at www.sciencedirect.com Procedia Environmental Sciences (20) 558 565 A Crop Monitoring System Based on Wireless Sensor Network Zhao Liqiang, Yin Shouyi, Liu Leibo, Zhang Zhen, Wei Shaojun.

More information

Intelligent Traffic Light Controller

Intelligent Traffic Light Controller International Journal of Emerging Engineering Research and Technology Volume 3, Issue 3, March 2015, PP 38-50 ISSN 2349-4395 (Print) & ISSN 2349-4409 (Online) ABSTRACT Intelligent Traffic Light Controller

More information

Preliminary Design Report. Project Title: Search and Destroy

Preliminary Design Report. Project Title: Search and Destroy EEL 494 Electrical Engineering Design (Senior Design) Preliminary Design Report 9 April 0 Project Title: Search and Destroy Team Member: Name: Robert Bethea Email: bbethea88@ufl.edu Project Abstract Name:

More information

DISTRIBUTION TRANSFORMER MONITORING AND CONTROL SYSTEM FOR REMOTE ELECTRIC POWER GRIDS THROUGH GSM

DISTRIBUTION TRANSFORMER MONITORING AND CONTROL SYSTEM FOR REMOTE ELECTRIC POWER GRIDS THROUGH GSM DISTRIBUTION TRANSFORMER MONITORING AND CONTROL SYSTEM FOR REMOTE ELECTRIC POWER GRIDS THROUGH GSM KIRAN DILIP DESAI 1, RAMCHANDRA P.HASABE 2 Electrical Engg.Department, Walchand College of Engg., Sangli.

More information

Simulation & Realization of Feeder Protection with Micro Controller

Simulation & Realization of Feeder Protection with Micro Controller International Journal of Electrical Engineering. ISSN 0974-2158 Volume 9, Number 1 (2016), pp. 57-65 International Research Publication House http://www.irphouse.com Simulation & Realization of Feeder

More information

Wireless ID Verification and Updation Using RF-ID Tag in Vehicle

Wireless ID Verification and Updation Using RF-ID Tag in Vehicle Wireless ID Verification and Updation Using RF-ID Tag in Vehicle R. Balasubramaniyan, T.K. Sethuramalingam PG Scholar, Department of ECE, Karpagam College of Engineering, Coimbatore, India Associate Professor,

More information

Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance)

Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance) Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance) Supriya Bhuran 1, Rohit V. Agrawal 2, Kiran D. Bombe 2, Somiran T. Karmakar 2, Ninad V. Bapat 2 1 Assistant Professor, Dept. Instrumentation,

More information

Wireless Health Monitoring System for Vibration Detection of Induction Motors

Wireless Health Monitoring System for Vibration Detection of Induction Motors Page 1 of 6 Wireless Health Monitoring System for Vibration Detection of Induction Motors Suratsavadee Korkua 1 Himanshu Jain 1 Wei-Jen Lee 1 Chiman Kwan 2 Student Member, IEEE Fellow, IEEE Member, IEEE

More information

Intelligent Balanced Device and its Sensing System for Beam Pumping Units

Intelligent Balanced Device and its Sensing System for Beam Pumping Units Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Intelligent Balanced Device and its Sensing System for Beam Pumping Units Hangxin WEI, Wenfang WANG School of mechanical

More information

SIMULATION OF TRANSFORMER PROTECTION USING MICROCONTROLLER BASED RELAY & MONITORING USING GSM

SIMULATION OF TRANSFORMER PROTECTION USING MICROCONTROLLER BASED RELAY & MONITORING USING GSM SIMULATION OF TRANSFORMER PROTECTION USING MICROCONTROLLER BASED RELAY & MONITORING USING GSM 1 Shweta Mate, 2 Shital Jagtap, 3 B.S. Kunure Department of Electrical Engineering, ZCOER, Pune, India Abstract

More information

RFID- GSM- GPS Imparted School Bus Transportation Management System

RFID- GSM- GPS Imparted School Bus Transportation Management System International Journal of Research Studies in Science, Engineering and Technology Volume 3, Issue 8, August 2016, PP 12-16 ISSN 2349-4751 (Print) & ISSN 2349-476X (Online) RFID- GSM- GPS Imparted School

More information

Index Terms IR communication; MSP430; TFDU4101; Pre setter

Index Terms IR communication; MSP430; TFDU4101; Pre setter Design and Development of Contactless Communication Module for Pre setter of Underwater Vehicles J.Lavanyambhika, **D.Madhavi *Digital Systems and Signal Processing in Electronics and Communication Engineering,

More information

Hardware Platforms and Sensors

Hardware Platforms and Sensors Hardware Platforms and Sensors Tom Spink Including material adapted from Bjoern Franke and Michael O Boyle Hardware Platform A hardware platform describes the physical components that go to make up a particular

More information

Automatic Gas Cooking Control System based on Microcontroller

Automatic Gas Cooking Control System based on Microcontroller Automatic Gas Cooking Control System based on Microcontroller Mohammed Khalafalla Prof. Zhang Jun Department of Electronic Engineering Department of Electronic Engineering Tianjin University of Technology

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 5.71 e-issn (O): 2348-4470 p-issn (P): 2348-6406 International Journal of Advance Engineering and Research Development A National Conference On Spectrum Of Opportunities

More information

GREEN RADIO: ENERGY EFFICIENT MOBILE TOWER NETWORK COMMUNICATION

GREEN RADIO: ENERGY EFFICIENT MOBILE TOWER NETWORK COMMUNICATION Volume 115 No. 7 2017, 555-560 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu GREEN RADIO: ENERGY EFFICIENT MOBILE TOWER NETWORK COMMUNICATION R.Vignesh

More information

DATA ACQUISITION SYSTEM & VISUAL SURVEILLANCE AT REMOTE LOCATIONS USING QUAD COPTER

DATA ACQUISITION SYSTEM & VISUAL SURVEILLANCE AT REMOTE LOCATIONS USING QUAD COPTER DATA ACQUISITION SYSTEM & VISUAL SURVEILLANCE AT REMOTE LOCATIONS USING QUAD COPTER Aniruddha S. Joshi 1, Iliyas A. Shaikh 2, Dattatray M. Paul 3, Nikhil R. Patil 4, D. K. Shedge 5 1 Department of Electronics

More information

SLOPE MONITORING BY TDR A LOW COST SYSTEM

SLOPE MONITORING BY TDR A LOW COST SYSTEM SLOPE MONITORING BY TDR A LOW COST SYSTEM 1 Prof.S.jaynathu, 2 Guntha Karthik, 3 G.Manekar, Professor,Phd.Scholar, Mining Engg Dept.,NIT Rourkela,Odisha 3 Dy.G M (Mines),,MOIL Limited. sjayanthu@yahoo.com,

More information

Design and Implementation of Digital Trigger Circuit for Converter

Design and Implementation of Digital Trigger Circuit for Converter Design and Implementation of Digital Trigger Circuit for Converter Shashikant V. Lahade Student of M.Tech., Department of Electronics and Tele-communication, Government College of Engineering, Amravati,

More information

The Design Of Multiple Nodes Wireless Temperature Transmission System Based On STC15W1K24S And CC1101

The Design Of Multiple Nodes Wireless Temperature Transmission System Based On STC15W1K24S And CC1101 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) The Design Of Multiple Nodes Wireless Temperature Transmission System Based On STC15W1K24S And CC1101 Zhijian

More information

Development of Laser-powered Wireless Sensing System for Aircraft Structures

Development of Laser-powered Wireless Sensing System for Aircraft Structures Development of Laser-powered Wireless Sensing System for Aircraft Structures Mijin Choi 1), Jason Bossert 2), *Jung-Ryul Lee 3) and *Chan-Yik Park 4) 1) LANL-CBNU Engineering Institute- Korea, Chonbuk

More information

Development of Tsunami early warning embedded system with GSM alert

Development of Tsunami early warning embedded system with GSM alert 2 nd International Conference on Current Research Trends in Engineering and Technology 2018 IJSRSET Volume 4 Issue 5 Print ISSN: 2395-1990 Online ISSN : 2394-4099 Themed Section: Engineering and Technology

More information

K-RLE : A new Data Compression Algorithm for Wireless Sensor Network

K-RLE : A new Data Compression Algorithm for Wireless Sensor Network K-RLE : A new Data Compression Algorithm for Wireless Sensor Network Eugène Pamba Capo-Chichi, Hervé Guyennet Laboratory of Computer Science - LIFC University of Franche Comté Besançon, France {mpamba,

More information

Land Slide Detection and Monitoring System using Wireless Sensor Networks (WSN)

Land Slide Detection and Monitoring System using Wireless Sensor Networks (WSN) Land Slide Detection and Monitoring System using Wireless Sensor Networks (WSN) G. N. L. Ravi Teja 1, V. K. R. Harish 2, Nayeem Muddin Khan D 3, R. Bhargava Krishna 4, Rajesh Singh 5, S Chaudhary 6 1,2,3,4

More information

Journal of Engineering Science and Technology Review 9 (5) (2016) Research Article. L. Pyrgas, A. Kalantzopoulos* and E. Zigouris.

Journal of Engineering Science and Technology Review 9 (5) (2016) Research Article. L. Pyrgas, A. Kalantzopoulos* and E. Zigouris. Jestr Journal of Engineering Science and Technology Review 9 (5) (2016) 51-55 Research Article Design and Implementation of an Open Image Processing System based on NIOS II and Altera DE2-70 Board L. Pyrgas,

More information

Live Human Detection Robot

Live Human Detection Robot IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 6 November 2014 ISSN (online): 2349-6010 Live Human Detection Robot Asha Gupta Dhruti Desai Nidhee Panchal Divya

More information

Landslide Pre-Warning System for Railway Track in Hill Station using WSN

Landslide Pre-Warning System for Railway Track in Hill Station using WSN Landslide Pre-Warning System for Railway Track in Hill Station using WSN Anisha Begum.B Harshini.S Shobana.N Bildass Santhosam.I / Asst.Prof Abstract The down sliding of rock, soil and organic material

More information

Design of intelligent vehicle control system based on machine visual

Design of intelligent vehicle control system based on machine visual Advances in Engineering Research (AER), volume 117 2nd Annual International Conference on Electronics, Electrical Engineering and Information Science (EEEIS 2016) Design of intelligent vehicle control

More information

International Journal of Advance Engineering and Research Development. UART implementation using FPGA with configurable baudrate

International Journal of Advance Engineering and Research Development. UART implementation using FPGA with configurable baudrate Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 3, March -2016 UART implementation using FPGA with configurable baudrate

More information

Lecture 14 Interface Electronics (Part 2) ECE 5900/6900 Fundamentals of Sensor Design

Lecture 14 Interface Electronics (Part 2) ECE 5900/6900 Fundamentals of Sensor Design EE 4900: Fundamentals of Sensor Design 1 Lecture 14 Interface Electronics (Part 2) Interface Electronics (Part 2) 2 Linearizing Bridge Circuits (Sensor Tech Hand book) Precision Op amps, Auto Zero Op amps,

More information

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers

Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers Chapter 4 Development of a MATLAB Data Acquisition and Control Toolbox for BASIC Stamp Microcontrollers 4.1. Introduction Data acquisition and control boards, also known as DAC boards, are used in virtually

More information

International Journal of Advances in Science and Technology (IJAST)

International Journal of Advances in Science and Technology (IJAST) Signal detection and FFT calculation using ATmega644 microcontroller D. Sarkar 1, A.Chowdhury 2 1,2 Department of Electronics & Communication Engineering, NIT Agartala, India ABSTRACT: Detection of a signal

More information

Auto-Fact Security System

Auto-Fact Security System IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Auto-Fact Security System Rasika Hedaoo Department of Electronics Engineering

More information

Wireless Ad hoc and Sensor Network Underground with Sensor Data in Real-Time

Wireless Ad hoc and Sensor Network Underground with Sensor Data in Real-Time Wireless Ad hoc and Sensor Network Underground with Sensor Data in Real-Time Emmanuel Odei-Lartey, Klaus Hartmann Center for Sensor Systems, University of Siegen Paul-Bonatz-Str. 9-11, 57068 Siegen, Germany

More information

THE DEVELOPMENT OF A LOW-COST NAVIGATION SYSTEM USING GPS/RDS TECHNOLOGY

THE DEVELOPMENT OF A LOW-COST NAVIGATION SYSTEM USING GPS/RDS TECHNOLOGY ICAS 2 CONGRESS THE DEVELOPMENT OF A LOW-COST NAVIGATION SYSTEM USING /RDS TECHNOLOGY Yung-Ren Lin, Wen-Chi Lu, Ming-Hao Yang and Fei-Bin Hsiao Institute of Aeronautics and Astronautics, National Cheng

More information

AN EFFICIENT ALGORITHM FOR THE REMOVAL OF IMPULSE NOISE IN IMAGES USING BLACKFIN PROCESSOR

AN EFFICIENT ALGORITHM FOR THE REMOVAL OF IMPULSE NOISE IN IMAGES USING BLACKFIN PROCESSOR AN EFFICIENT ALGORITHM FOR THE REMOVAL OF IMPULSE NOISE IN IMAGES USING BLACKFIN PROCESSOR S. Preethi 1, Ms. K. Subhashini 2 1 M.E/Embedded System Technologies, 2 Assistant professor Sri Sai Ram Engineering

More information