Design and Implementation of Home Monitoring System Using RF Technology

Size: px
Start display at page:

Download "Design and Implementation of Home Monitoring System Using RF Technology"

Transcription

1 International Journal of Advances in Electrical and Electronics Engineering 59 Available online at & ISSN: Design and Implementation of Home Monitoring System Using RF Technology Nidhi Gaur 1, Shabarinath B.B Department of Electronics and Communication Engineering 1 Assistant Professor, Amity University 2 Mtech-Embedded Systems Technology, Amity University 1 - ngaur@amity.edu Abstract- Home monitoring system uses the RF technology to monitor the status and control the electric device. The system has been developed to save energy. The system is implemented using modules which are capable of communicating with each other. In the existing method we can control the device like ON/OFF of the device remotely but we cannot know the status of the device whether the device is working or not. In the proposed method we overcome this disadvantage by providing good solution for monitoring and controlling of the LED s from the remote locations. The modules are designed using ARMLPC148 and AT89S52 microcontrollers, comparator-lm324 IC, CC2500 RF transceivers which are powered by a battery source. LED is used as device which is interfaced with AT89S52 and status of the LED can be monitored on LCD interfaced with LPC2148.This paper focuses on the software aspects of the design. Keywords CC2500, LPC2148, Home Monitoring System, RF Technology I. INTRODUCTION With the development of new electronic technologies and their integration with older, traditional building technologies, smart house is at last becoming a real possibility. Smart home is a house that uses information technology to monitor the environment, control the electric appliance and communicates with the outer world. Smart home is a complex technology, at the same time it is developing. A smart home automation system has been developed to automatically achieve some activities performed frequently in daily life to obtain more comfortable and easier life environment [1]. In wireless communication data is broad casted by radio frequencies [2]. As a result data may be captured when it is broadcasted. There are many wireless communication technologies such as WIFI, Cellular, Blue tooth etc. Different wireless technology has different communication range from centimeters to several hundred meters [3]. RF transceiver CC2500 consumes very less power between 2v to 3.6v. CC2500 can be directly interfaced to the micro controller it doesn t require any serial communication cable to transfer the data serially through wireless communication. Smart home appliances are typically controlled locally and can be monitored remotely [4] but the control of the device remotely is the new aspect. This can be achieved by incorporating ARM7 controller which has powerful features like multiple UART, quad package, in system programming, in application programming, PLL which acts as clock multiplier and 45 general purpose input/output pins. The on/off of the device can be achieved through serial communication programming of AT89S52 and LPC2148 micro controllers and the failed status of the device can be monitored by incorporating comparator circuit in the hardware. There are many technologies like GSM/GPRS, Bluetooth etc [5, 6] for monitoring the devices remotely. The purpose of choosing RF transceiver is to increase the distance of monitoring and also CC2500 IC was readily available in market for low cost. The status of the device can be monitored in LCD and also by blinking LED s on the monitoring device. CC2500 RF transceiver is specifically used at lower power levels in a frequency range of MHz. The initial processing of the system with getting started and initialization of the registers of CC2500 requires some time [7]. AT89S52 is chosen because of its full duplex serial port. Three LED s are integrated in the system whose status is monitored and controlled remotely. The rest of the paper is organized as follows. Hardware architecture is explained in section II. Working principle is explained in section III. Software development is presented in section IV. Result is presented in section V. Concluding remarks are given in section VI. ISSN: /V1N2:59-68 IJAEEE

2 IJAEEE,Volume1,Number 2 Nidhi Gaur and Shabarinath B.B II. HARDWARE ARCHTECTURE The system consist two microcontroller modules which are communicated through RF wireless communication as shown in figure 1. Fig. 1 Block Diagram First module consists of LPC2148 micro controller to which LCD, switches and CC2500 are connected to monitor and control the devices. The LCD, switches are connected to the port pins which are configured as INPUT/OUTPUT. RF transceiver is connected to the TXD and RXD pins of UART0. The system has a provision for in system programming (ISP). Second module consists of AT89S52 controller to which CC2500, Relays, comparator and Devices are connected. The RF transceiver is connected to the TXD and RXD pins of UART and devices (LED s) are connected to the controller through relays as shown in figure 2. Fig. 2 LED connected via Relay A relay is a electrical switch that opens and closes under the control of another electric circuit. The CC2500 RF transceiver is configured for obtaining optimum register settings and to meet the design aspects of the communication channel. Microcontrollers are able to: 1. Read and write buffered data to and from CC2500 for loss less communication. 2. Program CC2500 in different modes to meet the requirements of the communication channel. In transmit mode, the packet handler adds all fields to the packet stored in TX, and in the receive mode it deconstructed the data packet. The packet transfer depends on modes. When TX is activated, the chip will remain in transmit mode until the signal is successfully transmitted and when RX is activated, the chip will remain in receive mode until the signal is successfully received. AT89S52 requires 5v power supply which can be provided through transformer, bridge rectifier, capacitor and voltage regulator and LPC2148 need 3.3v.AT89S52 is operated at 33MHz clock frequency provide through crystal oscillator and

3 Design and Implementation of Home Monitoring System Using RF Technology 61 LPC2148 is operated at 60 MHz clock frequency which is provided through in built phase locked loop (PLL) circuit. The input frequency given to PLL circuit is multiplied by a factor to obtain required frequency. III. WORKING AND PRINCIPLE Initially all the devices are in OFF state, then the switches as initialized as input by placing one s through coding. Suppose to turn ON device1, it can be done by pressing particular switch present on the board. When switch is pressed it becomes high and the high state of switch gives indication to controller and that data is sent to another controller where devices are connected through RF transceiver. The data is send through the TXD pin of UART0 to the RXD pin of CC2500 and then send to CC2500 connected to the second controller wirelessly. The data received by the transceiver will transmit data to the controller through TXD pin to the RXD pin of UART of the controller and then it turns on the device connected to it. When device is turned ON the controller sends the acknowledge message to the controller through TXD pin of UART to RXD pin of transceiver, other transceiver receives the data through antenna and sends through TXD pin of transceiver to RXD pin of controller and status can be displayed on LCD connected to LPC2148 controller. On the other hand the status of the device is monitored continuously by comparing the device output voltage with a reference voltage fed to comparator circuit. When the device is shorted the microcontroller port pin is triggered as a result the failed message will be sent. IV.software development Embedded C language is used for coding. Embedded C is a mid-level language with high-level features (such as support for functions and modules) and low-level features (such as good access to hardware via pointers). It is very efficient. To create an embedded c program super loop (or) endless loop is required because there is no operating system to return to in our microcontroller i.e., our application will keep looping until the system power is removed. ARMLPC2148 Code Designing: LPC2148 port pins have multiple functions which are to be carefully defined for required function using PINSEL special function register. IOSET and IOCLR registers are used to produce a high level output and low level output at port pins configured as GPIO in an output mode.

4 IJAEEE,Volume1,Number 2 Nidhi Gaur and Shabarinath B.B Fig.4 Monitoring Device Flow Chart Explanation of flow chart: User Defined Functions related to serial communication 1. Initialize the Serial Communication This function is used to initialize the serial communication between UART0 of LPC2148 micro controller and CC Using PINSEL0 register the port pin functionalities of P0.0, P0.1, P0.8, P0.9 is selected as TXD, RXD (UART0) and TXD, RXD (UART1). This means that the CC2500 IC is interfaced with LPC2148 at these selected port pins. -U0DLL is initialized as 97. The U0DLL (Divisor latch register) is a part of UART0 fractional baud rate generator and holds the value used to divide the clock supplied by the fractional pre scalar in order to produce the baud rate clock. -U0LCR is initialized to 83H. LCR is the line control register which represent the format of the byte transmitted. 8-Bit character is selected 1 stop bit Parity generation and checking is disabled Odd parity. Number of 1 s in the transmitted character and the attached parity bit will be odd Disable break transmission Divisor latch access bit (DLAB) is disabled

5 Design and Implementation of Home Monitoring System Using RF Technology Character transmission This function is used to transmit a character from micro controller to CC2500 module. The function call initializes a required character to the variable defined in the argument of the function. Check whether transmit hold register is empty. The character is assigned to U0THR i.e., transmit hold register for serial communication. void Send_char_Uart0(unsigned char ch) while(!(u0lsr & 0x20)) ; U0THR = ch; 3. Character reception : This function is used to get a character from CC2500 to microcontroller which is received from another board. U0LSR is a read-only register that provides status information on the UART0 TX and RX blocks. Bit0 of U0LSR is receive data ready (RDR). Check whether receive buffer register contains valid data. If RBR contains valid data return that valid data to the called function. unsigned char getchar0(void) while (!(U0LSR & 0x01)); return (U0RBR); The LCD code is all about initializing LCD and defining functions for the printing the required message at correct position. The LCD is configured in 4 bit mode. void lcd_print(unsigned char *str) unsigned char ch; while(*str!='\0') ch=*str; lcd_putchar(ch); str++; Infinite loop: Phase1:--For checking the failed status of the device In this based on the port pin status of the devices in the 8052 board, if the pins are shorted which means the device is not working. If it happens we are transmitting characters c, d, e corresponding to the devices D1, D2, D3 to LPC2148 through UART0. So the received data is store in the buffer register if the devices are shorted. Check whether the receiver buffer register contains the valid data. Assign the contents of the buffer register to the character variable ch. If ch=c D1 is not working similarly if ch=d, e D2 and D3 are not working so the corresponding device message FL is displayed on the LCD. if((u0lsr & 0x01) == 1)

6 IJAEEE,Volume1,Number 2 Nidhi Gaur and Shabarinath B.B ch = U0RBR ; if(ch == c) lcd_write_control(0xc0); lcd_print("fl "); IO0SET = 0x ; for(i=0;i<2;i++) delay(); Phase2:--For switching on or off of the device Switches are connected to port pins. IO1PIN register contains the logical value of the corresponding port pins. On status of the switch is indicated by the logic0 in the PIN register. The corresponding logic0 of the three switches is checked. Suppose switch1 connected via relay1 is pressed the character 1 is transmitted to the 8052 board requesting to switch on the device controller sets the device on. The corresponding on or off status of the device is printed on the LCD screen. Similarly the characters 2 and 3 are transmitted for switches 2 and 3. The LED s are connected via port pins. The corresponding LED s are switched on and off by using PINCLR0 and PINSET0 registers. if(io1pin & 0x == 0x ) Send_char_Uart0(1); if(m==0) IO0CLR = 0x ; m = 1; lcd_write_control(0xc0); lcd_print("on "); else IO0SET = 0x ; m = 0; lcd_write_control(0xc0); lcd_print("off"); for(i=0;i<3;i++) delay(); AT89S52 Code designing: Control of the 8052 ports through software is carried out using special function registers (SFR s). Physically SFR is a area of memory in internal RAM. For 8052, in order to read from a pin, we need to ensure that the last thing written to the pin was one. Also software delay is used for generating delays which requires no hardware timers.

7 Design and Implementation of Home Monitoring System Using RF Technology 65 Explanation of flow chart: User defined functions: Initialization of serial communication This function is used to initialize the serial communication of 8052 micro controller. The serial port is full duplex, meaning it can transmit and receive simultaneously. It is also receive buffered, meaning it can commence reception of a second byte before a previously received byte has been read from the receive register. The serial port receive and transmit registers are both accessed at special function register SBUF. Writing SBUF leads the transmit register and reading SBUF accesses a physically separate receive register. Initialize timer1 in mode 2 to set baud rate. Timer1 operation is enabled whenever TR1 control bit in the TCON register is set. 8-bit UART mode. Disable the multiprocessor communication feature. Enable serial reception. void SerialInit(void) TMOD = 0x20; TH1 = 0xfd; SCON = 0x50; TR1 = 1; Character transmission: This function transmits the character from 8052 to CC2500 module serially. void serial_tx(unsigned char temp) unsigned int j; SBUF = temp; while(!ti); TI = 0;

8 IJAEEE,Volume1,Number 2 Nidhi Gaur and Shabarinath B.B Fig 5. Device Board Flow Chart Infinite loop Monitor RI flag of the SCON register. RI is the receive interrupt flag set by hardware at the half way through the stop bit time. Must be cleared by the software. If RI is set, check for the content of SBUF register. IF SBUF is 1 which means switch corresponding to device1 is pressed. So input logic high level to the device1 connected through relay. Similarly 2 and 3 for devices 2 and 3.

9 Design and Implementation of Home Monitoring System Using RF Technology 67 Clear RI flag. Suppose if the devices are shorted the characters c, d, e is sent to LPC2148 board which displays the fail status of the device. if(ri == 1) if(sbuf == 1) if(m==0) m = 1; LcdCmd(0xc0); LcdPuts("ON "); D1 = 1; else m = 0; LcdCmd(0xc0); LcdPuts("OFF"); D1 = 0; Monitor the comparator output connected to port pins. If the pin value is triggered then the device is said to be in failure. So transmit acknowledgement and switch off the device. if(i1 == 1) if(m==1) serial_tx(c); LcdCmd(0xc0); LcdPuts("FL "); D1 =0; for(i = 0; i< 3; i++) for(j = 0; j < 40000; j++); The system is implemented as shown in the figure V. RESULT

10 IJAEEE,Volume1,Number 2 Nidhi Gaur and Shabarinath B.B Fig 6. Designed modules Fig 7. LCD displaying output VI.CONCLUSION and FUTURE WORK The home monitoring system has been successfully designed and tested.presence of every module has beenreasoned out and placed carefully thus contributing to the best working of the unit. Secondly advance IC s has been used. By monitoring the status of the device the device can be switched off accordingly so that energy can be saved. Also by incorporating central server real time data like weather can be transmitted. REFERENCES [1] Design and implementation of smart house control using LABVIEW International Journal of soft computing and Engineering ISSN: , volume1, issue-6, January [2] Su, G., Tan, L., A trade off scheme in multi-user system with block diagonal geometric mean decomposition, The computing science and technology international journal, vol 1, no.1, pp.5.14, August [3] Li, F, Opportunistic Relaying in Cooperative OFDM Networks with limited feedback, The computing science and technology international journal, Vol.1, no.1, pp 15.19, December [4] A. R. Al-Ali, M. Al-Rousan, Java-based home automation system, IEEE Transactions on Consumer Electronics,vol. 50, no. 2, pp , May [5] A. Alheraish, Design and implementation of home automation system, IEEE Transactions on Consumer Electronics, vol. 50, no. 4, pp , Nov [6] A.R.Al-Ali, M.A. Rousan, M. Mohandes, GSM-based wireless home appliances monitoring & control system, 2004 International Conference on Information and Communication Technologies: From Theory to Applications, Proceedings. April 19-23, pp , [7] A. Z. Alkar, and U. Buhur, An Internet based wireless home automation system for multifunctional devices, IEEE Transactions on Consumer Electronics, vol. 51, no. 4, pp , Nov [8] G. Song, Z. Wei, W. Zhang, W. and A. Song, Design of a Networked Monitoring System for Home Automation IEEE Transactions on Consumer Electronics, vol. 53, no. 3, pp ,, Aug

Serial Communications

Serial Communications Serial Communications 1 Serial Communication Introduction Serial communication buses Asynchronous and synchronous communication UART block diagram UART clock requirements Programming the UARTs Operation

More information

8051 Serial Port. Crystal TXD. I/O Device RXD. Embedded Systems 1 5-1 8051 Peripherals

8051 Serial Port. Crystal TXD. I/O Device RXD. Embedded Systems 1 5-1 8051 Peripherals 8051 Serial Port The 8051 contains a UART Universal Asynchronous Receiver Transmitter The serial port is full-duplex It can transmit and receive simultaneously 2 Port 3 pins are used to provide the serial

More information

Using Xbee 802.15.4 in Serial Communication

Using Xbee 802.15.4 in Serial Communication Using Xbee 802.15.4 in Serial Communication Jason Grimes April 2, 2010 Abstract Instances where wireless serial communication is required to connect devices, Xbee RF modules are effective in linking Universal

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

Android based Secured Vehicle Key Finder System

Android based Secured Vehicle Key Finder System International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Android based Secured Vehicle Key Finder System Sindhoori S. 1, Dr. N. Sathish Kumar 2 *(M.E. Embedded System Technologies, Sri

More information

Flash Microcontroller. Memory Organization. Memory Organization

Flash Microcontroller. Memory Organization. Memory Organization The information presented in this chapter is collected from the Microcontroller Architectural Overview, AT89C51, AT89LV51, AT89C52, AT89LV52, AT89C2051, and AT89C1051 data sheets of this book. The material

More information

Remote PLC system using GSM network with application to home security system

Remote PLC system using GSM network with application to home security system PLC using GS with application to home security A. Alheraish, W. Alomar, and. Abu-Al-Ela Department of Electrical Engineering, King Saud University, Riyadh, Saudi Arabia PLC using GS Keywords Programmable

More information

Location-Aware and Safer Cards: Enhancing RFID Security and Privacy

Location-Aware and Safer Cards: Enhancing RFID Security and Privacy Location-Aware and Safer Cards: Enhancing RFID Security and Privacy 1 K.Anudeep, 2 Mrs. T.V.Anantha Lakshmi 1 Student, 2 Assistant Professor ECE Department, SRM University, Kattankulathur-603203 1 anudeepnike@gmail.com,

More information

ARM Thumb Microcontrollers. Application Note. Software ISO 7816 I/O Line Implementation. Features. Introduction

ARM Thumb Microcontrollers. Application Note. Software ISO 7816 I/O Line Implementation. Features. Introduction Software ISO 7816 I/O Line Implementation Features ISO 7816-3 compliant (direct convention) Byte reception and transmission with parity check Retransmission on error detection Automatic reception at the

More information

What is Easy-Radio? Devices Covered. Frequency Hopping Transceiver. Where x00 denotes frequency of operation. E.g. 400 = 433MHz

What is Easy-Radio? Devices Covered. Frequency Hopping Transceiver. Where x00 denotes frequency of operation. E.g. 400 = 433MHz What is Easy-Radio? Easy-Radio modules combine low power radio transmitters, receivers or transceivers with on-board microcontrollers to produce intelligent RF modules that provide simple to use wireless

More information

Serial Communications

Serial Communications April 2014 7 Serial Communications Objectives - To be familiar with the USART (RS-232) protocol. - To be able to transfer data from PIC-PC, PC-PIC and PIC-PIC. - To test serial communications with virtual

More information

ESP 8266: A BREAKTHROUGH IN WIRELESS SENSOR NETWORKS AND INTERNET OF THINGS

ESP 8266: A BREAKTHROUGH IN WIRELESS SENSOR NETWORKS AND INTERNET OF THINGS International Journal of Electronics and Communication Engineering & Technology (IJECET) Volume 6, Issue 8, Aug 2015, pp. 07-11, Article ID: IJECET_06_08_002 Available online at http://www.iaeme.com/ijecetissues.asp?jtypeijecet&vtype=6&itype=8

More information

Implementing MOD bus and CAN bus Protocol Conversion Interface

Implementing MOD bus and CAN bus Protocol Conversion Interface Implementing MOD bus and CAN bus Protocol Conversion Interface Umesh Goyal, Gaurav Khurana M.E., Electronics & Electrical Communications Department, PEC University of Technology, India M.E., Electronics

More information

Microtronics technologies Mobile: 99707 90092

Microtronics technologies Mobile: 99707 90092 For more Project details visit: http://www.projectsof8051.com/rfid-based-attendance-management-system/ Code Project Title 1500 RFid Based Attendance System Synopsis for RFid Based Attendance System 1.

More information

SIM300 GSM Module Controller For Smart Home

SIM300 GSM Module Controller For Smart Home www.ijecs.in International Journal Of Engineering And Computer Science ISSN: 2319-7242 Volume 4 Issue 9 Sep 2015, Page No. 14126-14138 SIM300 GSM Module Controller For Smart Home Nnakwuzie, Doris Nkechi,

More information

Design of Wireless Home automation and security system using PIC Microcontroller

Design of Wireless Home automation and security system using PIC Microcontroller IJCAES ISSN: 2231-4946 Volume III, Special Issue, August 2013 International Journal of Computer Applications in Engineering Sciences Special Issue on National Conference on Information and Communication

More information

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING Question Bank Subject Name: EC6504 - Microprocessor & Microcontroller Year/Sem : II/IV UNIT I THE 8086 MICROPROCESSOR 1. What is the purpose of segment registers

More information

Single channel data transceiver module WIZ2-434

Single channel data transceiver module WIZ2-434 Single channel data transceiver module WIZ2-434 Available models: WIZ2-434-RS: data input by RS232 (±12V) logic, 9-15V supply WIZ2-434-RSB: same as above, but in a plastic shell. The WIZ2-434-x modules

More information

Software User Guide UG-461

Software User Guide UG-461 Software User Guide UG-461 One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com ezlinx icoupler Isolated Interface Development Environment

More information

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester

Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Leonardo Journal of Sciences ISSN 1583-0233 Issue 20, January-June 2012 p. 31-36 Microcontroller Based Low Cost Portable PC Mouse and Keyboard Tester Ganesh Sunil NHIVEKAR *, and Ravidra Ramchandra MUDHOLKAR

More information

ANYTIME ANYPLACE-REMOTE MONITORING OF STUDENTS ATTENDANCE BASED ON RFID AND GSM NETWORK

ANYTIME ANYPLACE-REMOTE MONITORING OF STUDENTS ATTENDANCE BASED ON RFID AND GSM NETWORK ANYTIME ANYPLACE-REMOTE MONITORING OF STUDENTS ATTENDANCE BASED ON RFID AND GSM NETWORK Mr.C.S.Karthikeyan 1 S.Murugeswari 2 Assistant professor, Dept. of ECE, Kamaraj College of Engineering and Technology,

More information

Raghavendra Reddy D 1, G Kumara Swamy 2

Raghavendra Reddy D 1, G Kumara Swamy 2 Car Accident Detection, Communication And Tracking Using ARM7 Controller Raghavendra Reddy D 1, G Kumara Swamy 2 1 PG Scholar, Dept of ECE, Malla Reddy Engineering College (Autonomous), Hyderabad, India.

More information

MICROCONTROLLER BASED SMART HOME WITH SECURITY USING GSM TECHNOLOGY

MICROCONTROLLER BASED SMART HOME WITH SECURITY USING GSM TECHNOLOGY MICROCONTROLLER BASED SMART HOME WITH SECURITY USING GSM TECHNOLOGY F. Shawki 1,2, M. El-Shahat. Dessouki 1,3, A. I. Elbasiouny 4, A.N. Almazroui 5, F. M. R. Albeladi 5 1 Assistant Professor, Electrical

More information

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram

PC Base Adapter Daughter Card UART GPIO. Figure 1. ToolStick Development Platform Block Diagram TOOLSTICK VIRTUAL TOOLS USER S GUIDE RELEVANT DEVICES 1. Introduction The ToolStick development platform consists of a ToolStick Base Adapter and a ToolStick Daughter card. The ToolStick Virtual Tools

More information

Wireless power meter monitoring with power theft detection and intimation system using GSM and Zigbee networks

Wireless power meter monitoring with power theft detection and intimation system using GSM and Zigbee networks IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 6, Ver. I (Nov - Dec. 2014), PP 04-08 Wireless power meter monitoring with power

More information

Cell Phone Based Liquid Inventory Management Using Wireless System

Cell Phone Based Liquid Inventory Management Using Wireless System Sciknow Publications Ltd. JMIR 2013, 1(1):1-6 Journal of Mechanics & Industry Research DOI: 10.12966/JMIR.05.01.2013 Attribution 3.0 Unported (CC BY 3.0) Cell Phone Based Liquid Inventory Management Using

More information

USART and Asynchronous Communication

USART and Asynchronous Communication The USART is used for synchronous and asynchronous serial communication. USART = Universal Synchronous/Asynchronous Receiver Transmitter Our focus will be on asynchronous serial communication. Asynchronous

More information

Intelligent Home Automation and Security System

Intelligent Home Automation and Security System Intelligent Home Automation and Security System Ms. Radhamani N Department of Electronics and communication, VVIET, Mysore, India ABSTRACT: In todays scenario safer home security is required, As the technology

More information

Plc Based Monitoring and Controlling System Using Wi-Fi Device

Plc Based Monitoring and Controlling System Using Wi-Fi Device IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 4, Ver. II (Jul - Aug. 2014), PP 29-34 Plc Based Monitoring and Controlling System

More information

Wireless Sensor Network for Electric Meter Handling

Wireless Sensor Network for Electric Meter Handling Wireless Sensor Network for Electric Meter Handling Swapnil Magar 1, Prof.Deshpande L.M. 2 PG Student [E&TC], Dept. of ECE, College of Engineering, Osmanabad, Maharashtra, India 1 Assistant professor,

More information

RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards

RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards RN-131-PICTAIL & RN-171-PICTAIL Evaluation Boards 2012 Roving Networks. All rights reserved. Version 1.0 9/7/2012 USER MANUAL OVERVIEW The RN-131 and RN-171 WiFly radio modules are complete, standalone

More information

Wireless monitoring system for temperature and humidity based on ZigBee

Wireless monitoring system for temperature and humidity based on ZigBee Wireless monitoring system for temperature and humidity based on ZigBee Abstract Jianjun Chen* Shaoxing University uanpei College, Shaoxing, Zhejiang, 3000, China Received March 04, www.cmnt.lv Traditional

More information

Technical Data Sheet UM-005. UM005-doc-01.04 In reference to UM005-c-01.04

Technical Data Sheet UM-005. UM005-doc-01.04 In reference to UM005-c-01.04 Technical Data Sheet UM-005 UM005-doc-01.04 In reference to UM005-c-01.04 Contents Contents... 2 Introductions... 3 Specifications... 3 Pin description... 4 Connection diagram... 4 Module PCB dimensions...

More information

A RF18 Remote control receiver MODULE

A RF18 Remote control receiver MODULE A RF18 Remote control receiver MODULE User Guide No part of this document may be reproduced or transmitted (in electronic or paper version, photocopy) without Adeunis RF consent. This document is subject

More information

Embedded Systems on ARM Cortex-M3 (4weeks/45hrs)

Embedded Systems on ARM Cortex-M3 (4weeks/45hrs) Embedded Systems on ARM Cortex-M3 (4weeks/45hrs) Course & Kit Contents LEARN HOW TO: Use of Keil Real View for ARM Use ARM Cortex-M3 MCU for professional embedded application development Understanding

More information

Part Number Description Packages available

Part Number Description Packages available Features 3 digital I/O Serial Data output Connects directly to RF Modules Easy Enc / Dec Pairing Function Minimal External Components Required Performs all encoding/decoding of data for Reliable Operation.

More information

EMBEDDED GSM MONITOR AND CONTROL USING ANDROID APPLICATION

EMBEDDED GSM MONITOR AND CONTROL USING ANDROID APPLICATION http:// EMBEDDED GSM MONITOR AND CONTROL USING ANDROID APPLICATION J Ramya Ritika 1, K.V. Yateendranath 2 1 M.Tech Student [DSCE], Dept. of ECE, VITS, Kavali, Andhra Pradesh, (India) Associate Professor,

More information

4 Character 5x7 LED Matrix Display

4 Character 5x7 LED Matrix Display Mini project report on 4 Character 5x7 LED Matrix Display Submitted by Agarwal Vikas, MTech II, CEDT K.Sreenivasulu M.E (Micro) II, CEDT CENTRE FOR ELECTRONICS DESIGN AND TECHNOLOGY INDIAN INSTITUTE OF

More information

Figure 1.Block diagram of inventory management system using Proximity sensors.

Figure 1.Block diagram of inventory management system using Proximity sensors. Volume 1, Special Issue, March 2015 Impact Factor: 1036, Science Central Value: 2654 Inventory Management System Using Proximity ensors 1)Jyoti KMuluk 2)Pallavi H Shinde3) Shashank VShinde 4)Prof VRYadav

More information

Objectives. Basics of Serial Communication. Simplex vs Duplex. CMPE328 Microprocessors (Spring 2007-08) Serial Interfacing. By Dr.

Objectives. Basics of Serial Communication. Simplex vs Duplex. CMPE328 Microprocessors (Spring 2007-08) Serial Interfacing. By Dr. CMPE328 Microprocessors (Spring 27-8) Serial Interfacing By Dr. Mehmet Bodur Objectives Upon completion of this chapter, you will be able to: List the advantages of serial communication over parallel communication

More information

Intelligent Fleet Management System Using Active RFID

Intelligent Fleet Management System Using Active RFID Intelligent Fleet Management System Using Active RFID Ms. Rajeshri Prakash Mane 1 1 Student, Department of Electronics and Telecommunication Engineering, Rajarambapu Institute of Technology, Rajaramnagar,

More information

DESIGN OF SMS ENABLED CAR SECURITY SYSTEM

DESIGN OF SMS ENABLED CAR SECURITY SYSTEM DESIGN OF SMS ENABLED CAR SECURITY SYSTEM K. A. Amusa Federal University of Agriculture, Abeokuta, O. O. Nuga Federal University of Agriculture, Abeokuta, A. A. Adetomi Federal University of Agriculture,

More information

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,

More information

RN-XV-RD2 Evaluation Board

RN-XV-RD2 Evaluation Board RN-XV-RD2 Evaluation Board 2012 Roving Networks. All rights reserved. -1.01Version 1.0 9/28/2012 USER MANUAL OVERVIEW This document describes the hardware and software setup for Roving Networks RN-XV-RD2

More information

ARCHITECTURE AND IMPLEMENTATION OF REAL TIME VEHICLE TRACKING SYSTEM USING WIRELESS, SENSOR DEVICES AND GOOGLE MAPS API

ARCHITECTURE AND IMPLEMENTATION OF REAL TIME VEHICLE TRACKING SYSTEM USING WIRELESS, SENSOR DEVICES AND GOOGLE MAPS API ARCHITECTURE AND IMPLEMENTATION OF REAL TIME VEHICLE TRACKING SYSTEM USING WIRELESS, SENSOR DEVICES AND GOOGLE MAPS API Syed Khizar Ahmed 1, Kiran Kumar Sreenivasiah 2, S. M. Ahmed 3, Shiva Kumar A 4 Tracking

More information

Implementation of Wireless Gateway for Smart Home

Implementation of Wireless Gateway for Smart Home Communications and Network, 2013, 5, 16-20 doi:10.4236/cn.2013.51b005 Published Online February 2013 (http://www.scirp.org/journal/cn) Implementation of Wireless Gateway for Smart Home Yepeng Ni 1, Fang

More information

Bluetooth Based Home Automation and Security System Using ARM9

Bluetooth Based Home Automation and Security System Using ARM9 Bluetooth Based Home Automation and Security System Using ARM9 D.NARESH 1, B.CHAKRADHAR 2, S.KRISHNAVENI 3 1 M.Tech, Dept of ECE, CMR College of Engineering &Technology, Hyderabad, AP-India, 2 Assist Prof,

More information

A Cellular Phone Based Home / Office Controller & Alarm System

A Cellular Phone Based Home / Office Controller & Alarm System G.U. Journal of Science 9(): -6 (006) www.gujs.org A Cellular Phone Based Home / Office Controller & Alarm System H. Haldun GÖKTAŞ, ihat DALDAL Gazi University Technical Education Faculty, 06500, Besevler,

More information

http://www.atmel.com/dyn/products/product_card.asp?family_id=604&family_name=8051+architecture&part_id=2854

http://www.atmel.com/dyn/products/product_card.asp?family_id=604&family_name=8051+architecture&part_id=2854 ECEN 4613/5613 Embedded System Design Week #6 Spring 2010 Homework #6 2/17/2010 This assignment should be completed by Wednesday, February 24 th. Note: there is nothing to hand in for this assignment.

More information

Serial port interface for microcontroller embedded into integrated power meter

Serial port interface for microcontroller embedded into integrated power meter Serial port interface for microcontroller embedded into integrated power meter Mr. Borisav Jovanović, Prof. dr. Predrag Petković, Prof. dr. Milunka Damnjanović, Faculty of Electronic Engineering Nis, Serbia

More information

Automated Security System using ZigBee

Automated Security System using ZigBee IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 01 June 2015 ISSN (online): 2349-6010 Automated Security System using ZigBee Sneha Susan Abraham Saveetha School

More information

GPS & GSM BASED REAL-TIME VEHICLE TRACKING SYSTEM.

GPS & GSM BASED REAL-TIME VEHICLE TRACKING SYSTEM. GPS & GSM BASED REAL-TIME VEHICLE TRACKING SYSTEM. Introduction: The Proposed design is cost-effective, reliable and has the function of accurate tracking. When large object or vehicles were spread out

More information

How To Design A Code Lock System With A Status Display On A Cell Phone And A Password Code On A Smart Phone

How To Design A Code Lock System With A Status Display On A Cell Phone And A Password Code On A Smart Phone ISSN (e): 2250 3005 Vol, 04 Issue, 7 July 2014 International Journal of Computational Engineering Research (IJCER) Enhanced Wireless Security System With Digital code lock using RF &GSM Technology 1 E.Supraja,

More information

Keil C51 Cross Compiler

Keil C51 Cross Compiler Keil C51 Cross Compiler ANSI C Compiler Generates fast compact code for the 8051 and it s derivatives Advantages of C over Assembler Do not need to know the microcontroller instruction set Register allocation

More information

Design And Implementation Of Bank Locker Security System Based On Fingerprint Sensing Circuit And RFID Reader

Design And Implementation Of Bank Locker Security System Based On Fingerprint Sensing Circuit And RFID Reader Design And Implementation Of Bank Locker Security System Based On Sensing Circuit And RFID Reader Khaing Mar Htwe, Zaw Min Min Htun, Hla Myo Tun Abstract: The main goal of this system is to design a locker

More information

A PSTN Terminal for FSK Decoding and DTMF Dialing Applications

A PSTN Terminal for FSK Decoding and DTMF Dialing Applications , pp. 35-42 http://dx.doi.org/10.14257/ijsip.2015.8.5.04 A PST Terminal for FSK Decoding and DTMF Dialing Applications Liang Xin-Tao, Fan Qing-u and 1 Lin Wen-Chang Affiliation: College of Electrical and

More information

Process Control and Automation using Modbus Protocol

Process Control and Automation using Modbus Protocol Process Control and Automation using Modbus Protocol Modbus is the fundamental network protocol used in most industrial applications today. It is universal, open and an easy to use protocol. Modbus has

More information

Development of an Internet based Embedded System for Smart House Controlling and Monitoring

Development of an Internet based Embedded System for Smart House Controlling and Monitoring Development of an Internet based Embedded System for Smart House Controlling and Monitoring Ahmed Abd-Elkarim Abd- Ellatif Salih Maged Ali Mohammed Asa'ad Yousif Elhadi Elsideeg Ahmed Department of Computer

More information

Gsm Based Controlled Switching Circuit Between Supply Mains and Captive Power Plant

Gsm Based Controlled Switching Circuit Between Supply Mains and Captive Power Plant International Journal of Computational Engineering Research Vol, 03 Issue, 4 Gsm Based Controlled Switching Circuit Between Supply Mains and Captive Power Plant 1, Mr.S.Vimalraj, 2, Gausalya.R.B, 3, Samyuktha.V,

More information

Bus Data Acquisition and Remote Monitoring System Using Gsm & Can

Bus Data Acquisition and Remote Monitoring System Using Gsm & Can IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 8, Issue 3 (Nov. - Dec. 2013), PP 88-92 Bus Data Acquisition and Remote Monitoring System

More information

Wireless Security Camera

Wireless Security Camera Wireless Security Camera Technical Manual 12/14/2001 Table of Contents Page 1.Overview 3 2. Camera Side 4 1.Camera 5 2. Motion Sensor 5 3. PIC 5 4. Transmitter 5 5. Power 6 3. Computer Side 7 1.Receiver

More information

HAC-LM Series Low Power Data Radio Module

HAC-LM Series Low Power Data Radio Module HAC-LM Series Low Power Data Radio Module Version 3.0 SHENZHEN HAC TELECOM TECHNOLOGY CO., LTD Address : 3rd Area, 19 th Fl, Tower A, HaiSong Building, Tai Ran 9 th Rd, Futian, ShenZhen, China. Tel : +86-755-23981078

More information

International Journal of Research in Advent Technology Available Online at: http://www.ijrat.org

International Journal of Research in Advent Technology Available Online at: http://www.ijrat.org DESIGN AND IMPLEMENTATION OF A GPS RECEIVER USING 8051 MICROCONTROLLER Garima Jain 1, Nasreen Noorani 2, Vishal Badole 3 1 2 3 Electronics & Communication Department 1 2 3 Acropolis Technical Campus, Indore,

More information

Advanced Vehicle Tracking System Using ARM7

Advanced Vehicle Tracking System Using ARM7 Asian Journal of Electrical Sciences ISSN 2249-6297 Vol. 4 No. 1, 2015, pp.14-20 The Research Publication, www.trp.org.in Advanced Vehicle Tracking System Using ARM7 L. Kishore 1 and Arun Raja 2 1 M.E.

More information

Wireless Communication With Arduino

Wireless Communication With Arduino Wireless Communication With Arduino Using the RN-XV to communicate over WiFi Seth Hardy shardy@asymptotic.ca Last Updated: Nov 2012 Overview Radio: Roving Networks RN-XV XBee replacement : fits in the

More information

Bluetooth to Serial Adapter

Bluetooth to Serial Adapter Bluetooth to Serial Adapter Third Edition, Oct 2007 Version 3.0 771-BTS1009C3-001 Contents 1.0 Features....P.2 2.0 Package Content....P.2 3.0 Hard Drives Requirement.P.2 4.0 Specifications.P.3 5.0 Pin

More information

Pen Drive to Pen Drive and Mobile Data Transfer Using ARM

Pen Drive to Pen Drive and Mobile Data Transfer Using ARM IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) ISSN: 2278-2834, ISBN: 2278-8735, PP: 43-47 www.iosrjournals.org Pen Drive to Pen Drive and Mobile Data Transfer Using ARM 1 Mr.V.S.Gawali,

More information

MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual

MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual MCB3101 (Class I) WiRobot Serial Bluetooth Wireless Module User Manual Version: 1.0.1 Dec. 2005 Table of Contents I. Introduction 2 II. Operations 2 II.1. Theory of Operation 2 II.2. Configuration (PC-PC

More information

The design and implementation of the environment monitoring system of smart home based on EnOcean technology

The design and implementation of the environment monitoring system of smart home based on EnOcean technology International Conference on Manufacturing Science and Engineering (ICMSE 2015) The design and implementation of the environment monitoring system of smart home based on EnOcean technology Peng Dong1, a,

More information

Implementation of Wi-Ap; An IEEE 802.11b/g Based Electrical Switch Module With Web Enabled Interface for Electrical Appliances Control

Implementation of Wi-Ap; An IEEE 802.11b/g Based Electrical Switch Module With Web Enabled Interface for Electrical Appliances Control Research Journal of Applied Sciences, Engineering and Technology 3(12): 1335-1341, 2011 ISSN:2040-7467 Maxwell Scientific Organization, 2011 Submitted: February 20, 2011 Accepted: March 26, 2011 Published:

More information

TOSR0X-D. USB/Wireless Timer Relay Module. User Manual. Tinysine Electronics @ 2013 Version 1.0

TOSR0X-D. USB/Wireless Timer Relay Module. User Manual. Tinysine Electronics @ 2013 Version 1.0 TOSR0X-D USB/Wireless Timer Relay Module User Manual Tinysine Electronics @ 2013 Version 1.0 INTRODUCTION This USB/Wireless Timer Relay Module allows computer control switching of external devices by using

More information

2.0 System Description

2.0 System Description 2.0 System Description The wireless alarm system consists of two or more alarm units within a specified range of one another. Each alarm unit employs a radio transceiver, allowing it to communicate with

More information

Technical description MX-1 VB Edge

Technical description MX-1 VB Edge 1 (7) Technical description MX-1 VB Edge 2 (7) Table of Contents 1 General description...3 2 Connectors...4 3 ON/OFF operation...5 4 Power...5 5 LED indicators...6 6 Enclosure...6 7 Mounting...6 8 and

More information

Design and Implementation of a Reliable Wireless Real-Time Home Automation System Based on Arduino Uno Single-Board Microcontroller

Design and Implementation of a Reliable Wireless Real-Time Home Automation System Based on Arduino Uno Single-Board Microcontroller Design and Implementation of a Reliable Wireless Real-Time Home Automation System Based on Arduino Uno Single-Board Microcontroller Bader M. O. Al-thobaiti, Iman I. M. Abosolaiman, Mahdi H. M. Alzahrani,

More information

How To Use An Adh8012 Gsm Gprs Module With A Gsm 2.2.2 (Gsm) Gpros (Gsp) Gpls (Geo) Gsp (Gpl) Gs

How To Use An Adh8012 Gsm Gprs Module With A Gsm 2.2.2 (Gsm) Gpros (Gsp) Gpls (Geo) Gsp (Gpl) Gs ADH Technology Co. Ltd. ADH8012 GSM GPRS Modem User s Manual www.adh-tech.com.tw sales@adh-tech.com.tw Page 1 Content ADH8012 GSM GPRS Modem User s Manual... 1 1. Introduction... 3 2. Product concept...

More information

Open Access The Wireless Environment Monitoring Alarm System Based on Selforganizing

Open Access The Wireless Environment Monitoring Alarm System Based on Selforganizing Send Orders for Reprints to reprints@benthamscience.ae 390 The Open Electrical & Electronic Engineering Journal, 2014, 8, 390-396 Open Access The Wireless Environment Monitoring Alarm System Based on Selforganizing

More information

BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM

BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM BORDER ALERT AND SMART TRACKING SYSTEM WITH ALARM USING DGPS AND GSM NaveenKumar.M #1, Ranjith.R *2 #* Department of Electronics and Instrumentation Engineering, #* Sri Sairam Engineering College, Chennai,

More information

Computer Aided Design of Home Medical Alert System

Computer Aided Design of Home Medical Alert System Computer Aided Design of Home Medical Alert System Submitted to The Engineering Honors Committee 119 Hitchcock Hall College of Engineering The Ohio State University Columbus, Ohio 43210 By Pei Chen Kan

More information

8051 MICROCONTROLLER COURSE

8051 MICROCONTROLLER COURSE 8051 MICROCONTROLLER COURSE Objective: 1. Familiarization with different types of Microcontroller 2. To know 8051 microcontroller in detail 3. Programming and Interfacing 8051 microcontroller Prerequisites:

More information

GTS-4E Hardware User Manual. Version: V1.1.0 Date: 2013-12-04

GTS-4E Hardware User Manual. Version: V1.1.0 Date: 2013-12-04 GTS-4E Hardware User Manual Version: V1.1.0 Date: 2013-12-04 Confidential Material This document contains information highly confidential to Fibocom Wireless Inc. (Fibocom). Fibocom offers this information

More information

FaultAnalysisandElectricalProtectionofDistributionTransformers

FaultAnalysisandElectricalProtectionofDistributionTransformers Global Journal of Researches in Engineering: F Electrical and Electronics Engineering Volume 14 Issue 3 Version 1.0 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals

More information

Application of Wireless Sensor Network and GSM Technology: A Remote Home Security System

Application of Wireless Sensor Network and GSM Technology: A Remote Home Security System Application of Wireless Sensor Network and GSM Technology: A Remote Home Security System Atul Arora, Ankit Malik ABSTRACT In this paper, a low-power consumption remote home security alarm system developed

More information

Smart Home System Using Android Application

Smart Home System Using Android Application Smart Home System Using Android Application Karlapudi Siva Krishna Mr. Md Mohiddin Dr. M. Narendra Kumar, Dr. S. Sreenatha Reddy Student (M. Tech) Embedded Sys Asst. Prof, ECE Prof & Vice-Principal Prof

More information

VEHICLE TRACKING ALONG WITH THE ADVANCED RTO TECHNOLOGY

VEHICLE TRACKING ALONG WITH THE ADVANCED RTO TECHNOLOGY VEHICLE TRACKING ALONG WITH THE ADVANCED RTO TECHNOLOGY PROJECT REFERENCE NO. : 37S1335 COLLEGE : JAIN COLLEGE OF ENGINEERING, BELGAUM BRANCH : ELECTRONICS AND COMMUNICATION GUIDEs : PRAKASH B.B AND AKASH

More information

Chip Card & Security ICs Mifare NRG SLE 66R35

Chip Card & Security ICs Mifare NRG SLE 66R35 Chip Card & Security ICs Mifare NRG Intelligent 1 Kbyte Memory Chip with Interface for Contactless Transmission according to the Mifare -System Short Product Information April 2007 Short Product Information

More information

A ZIGBEE AND EMBEDDED BASED SECURITY MONITORING AND CONTROL SYSTEM

A ZIGBEE AND EMBEDDED BASED SECURITY MONITORING AND CONTROL SYSTEM A ZIGBEE AND EMBEDDED BASED SECURITY MONITORING AND CONTROL SYSTEM S. Kanagamalliga 1, Dr. S. Vasuki 2, A. Vishnu Priya 3, V. Viji 4 1 Assistant Professor, 2 Professor and Head, 3,4,5 U.G Student Department

More information

This idea could limit unnecessary visits and help developing countries to provide healthcare remotely as well.

This idea could limit unnecessary visits and help developing countries to provide healthcare remotely as well. I. The Healthcare Problem a. Explanation of why this solution is needed. b. How we can solve the problem. c. The components needed to solve the problem. II. Bluetooth Enabled Medical Device Architecture

More information

Fingerprint Based Biometric Attendance System

Fingerprint Based Biometric Attendance System Fingerprint Based Biometric Attendance System Team Members Vaibhav Shukla Ali Kazmi Amit Waghmare Ravi Ranka Email Id awaghmare194@gmail.com kazmiali786@gmail.com Contact Numbers 8097031667 9167689265

More information

Display Message on Notice Board using GSM

Display Message on Notice Board using GSM Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 3, Number 7 (2013), pp. 827-832 Research India Publications http://www.ripublication.com/aeee.htm Display Message on Notice Board

More information

GSM Interfacing Board

GSM Interfacing Board Campus Component Pvt. Ltd. DISCLAIMER Information furnished is believed to be accurate and reliable at the time of publication. However, Campus Component Pvt. Ltd. assumes no responsibility arising from

More information

International Journal of Engineering Research & Management Technology

International Journal of Engineering Research & Management Technology International Journal of Engineering Research & Management Technology March- 2015 Volume 2, Issue-2 Radio Frequency Identification Security System Mr. Shailendra Kumar Assistant Professor Department of

More information

ADVANCED VEHICLE TRACKING SYSTEM USING ARM7

ADVANCED VEHICLE TRACKING SYSTEM USING ARM7 ADVANCED VEHICLE TRACKING SYSTEM USING ARM7 L. Kishore 1, Arun Raja 2 1 M.E. Embedded Systems Technologies, Sri Ramakrishna Engineering College 2 Assistant Professor, Department of ECE, Sri Ramakrishna

More information

Bluetooth Serial Adapter

Bluetooth Serial Adapter RN-BT-SRL-UM Bluetooth Serial Adapter 0 Roving Networks. All rights reserved. RN-BT-SRL-UM-.0 Version.0 //0 USER MANUAL RN-BT-SRL-UM-.0 OVERVIEW Roving Networks offers a variety of Bluetooth serial adapters

More information

SAH2217 Enhanced ATHEROS GPS Module with ultra high sensitivity and antenna open/short detection/protection

SAH2217 Enhanced ATHEROS GPS Module with ultra high sensitivity and antenna open/short detection/protection SAH2217 Enhanced ATHEROS GPS Module with ultra high sensitivity and antenna open/short detection/protection 20F-8, No.107, Sec 1,Jhongshan Rd. Sinjhuang City, Taipei County 242, Taiwan Phone: +886-2-8522-7628

More information

Embedded Systems Design Course Applying the mbed microcontroller

Embedded Systems Design Course Applying the mbed microcontroller Embedded Systems Design Course Applying the mbed microcontroller Serial communications with SPI These course notes are written by R.Toulson (Anglia Ruskin University) and T.Wilmshurst (University of Derby).

More information

Modbus Communications for PanelView Terminals

Modbus Communications for PanelView Terminals User Guide Modbus Communications for PanelView Terminals Introduction This document describes how to connect and configure communications for the Modbus versions of the PanelView terminals. This document

More information

8 Gbps CMOS interface for parallel fiber-optic interconnects

8 Gbps CMOS interface for parallel fiber-optic interconnects 8 Gbps CMOS interface for parallel fiberoptic interconnects Barton Sano, Bindu Madhavan and A. F. J. Levi Department of Electrical Engineering University of Southern California Los Angeles, California

More information

Android based Alcohol detection system using Bluetooth technology

Android based Alcohol detection system using Bluetooth technology For more Project details visit: http://www.projectsof8051.com/android-based-alcohol-detection-system-usingbluetooth-technology/ Code 1435 Project Title Android based Alcohol detection system using Bluetooth

More information

Remote control circuitry via mobile phones and SMS

Remote control circuitry via mobile phones and SMS Remote control circuitry via mobile phones and SMS Gunther Zielosko 1. Introduction In application note No. 56 ( BASIC-Tiger sends text messages, in which we described a BASIC-Tiger sending text messages

More information

Study on Differential Protection of Transmission Line Using Wireless Communication

Study on Differential Protection of Transmission Line Using Wireless Communication Study on Differential Protection of Transmission Line Using Wireless Communication George John.P 1, Agna Prince 2, Akhila.K.K 3, Guy Marcel 4, Harikrishnan.P 5 Professor, Dept. of EEE, MA Engineering College,

More information