A Complete Study of Chatting Room System based on Android Bluetooth
|
|
|
- Horatio Morrison
- 9 years ago
- Views:
Transcription
1 A Complete Study of Chatting Room System based on Android Bluetooth Rahul Verma 1, Ruchit Gupta 2, Manas Gupta 3, Rahul Singh 4 Moradabad Institute of Technology, Moradabad 1 [email protected], 2 [email protected], 3 [email protected], 4 [email protected] Abstract-- Bluetooth chatting is an innovative approach to the mobile world. A low power and low cost connection is provided by the Bluetooth among mobile devices and their accessories. It is basically an open standard for implementing a short range wireless communication. This application allows two Android devices to carry out twoway text chat over Bluetooth. This shows the use of Bluetooth in terms of chatting. The paper contains design and implementation of Bluetooth Communication by using APIs of Android platform. The APIs wirelessly connect applications to other Bluetooth devices, enabling point-topoint and multipoint wireless features. Keyword:- Android, Component, Bluetooth, wireless communication, chat room. I. INTRODUCTION The Android platform support for the Bluetooth network stack. It allows a device to wirelessly exchange data with other Bluetooth devices. The new vitality to the mobile space has injected because of the release of Android smart platform. Android is an operating system based on Linux kernel. It is designed for the touch screen mobile devices. The user interface of Android is based on direct manipulation. The Android system provides many Bluetooth APIs for developers to call.[1] Bluetooth technology allows users to exchange voice and data transmission between two or more devices. It is basically a wireless communication technology. Bluetooth technology is reflected in the low price, easy to control and non-visual distance limitations. Bluetooth is integrated into the android platform as an android mobile network communication module. Chat room is used to connect the Android phones into a local area network. It helps to communicate with each other. By the help of the Bluetooth module, the Android phones can be divided into client and server. Chat can be accomplished only after the division of client and server. It is used to initialize the connection. Fig 1: Bluetooth chat in two android devices Bluetooth does not need a license around the globe for the working frequency band. In the connection initialization phase, firstly, it starts the application and search the Bluetooth devices. Second, it sends the signals to the server class. After this it can run, pause and stop the application. Third, it shows alert using setalert function on every changing. Server goes active and sends the signals to other devices. Client class works to respond the other Bluetooth device server. This allows a two-way chat over Bluetooth. No GSM or Wi-Fi connection required. In addition to the person-to-person chat, chat rooms can be used to gather more than two persons at a time. II. BLUETOOTH ARCHITECTURE Bluetooth is a wireless technology standard for exchanging data over short distances. This low cost transmission technology for the handheld devices and various electronic products. Android Bluetooth system contains linux kernel, Bluetooth driver, Bluetooth protocol layers bluez Bluetooth user library, bluez adaptation layer.[2] Lord Krishna College of Engineering (An ISO 9001:2008 Certified Institute) Ghaziabad, Uttar Pradesh, INDIA. Page 135
2 III. PROCESS OF BLUETOOTH CHAT APPLICATION i. It first checks whether the Bluetooth of the devices is in ON/OFF mode. ii. If the Bluetooth of the devices is in OFF mode then it makes the request to enable the Bluetooth. iii. Perform scanning of the devices which are in their range. iv. Display the list of all the devices in the range. v. Select the device with which one wants to do the chat. vi. If the device connects then set up the chat session. Fig 2: Android Bluetooth structure Bluetooth can be used to transmit asynchronous data and synchronous language at the same time. L2C AP, SDP, RFCOMM etc are underlying protocol layer include a number of agreements. It provides the upper transmission. IV. DESIGN OF BLUETOOTH COMMUNICATION In the Android platform Bluetooth API is needed to implement the communication between the Bluetooth devices. The Bluetooth communication is based on the unique MAC. Bluetooth devices must been paired before using Bluetooth communication for the security purpose. The connected devices will be shared with a RFCOMM channel to transmit data. RFCOMM bluetoothsocket used to accept the incoming connections must be attached to operating system resources with the bind method. The process of Bluetooth communication includes three steps: i. Query Bluetooth: BluetoothAdapter is used to get the Bluetooth Activity. It is the entry-point for all Bluetooth interaction and also it is used to discover other Bluetooth devices. It creates the BluetoothServerSocket to listen for communications from other devices. Bluetooth Adapter is also used to get the Bluetooth connection intent.[6] The query pairing process is shown in the following figure- Fig 3: Relationship between Bluetooth Protocol Lord Krishna College of Engineering (An ISO 9001:2008 Certified Institute) Ghaziabad, Uttar Pradesh, INDIA. Page 136
3 iii. Connecting Bluetooth: Request the BLUETOOTH PERMISSION in order to perform any Bluetooth communication, such as requesting a connection, accepting a connection and ransferring the data. The process of pairing connection shown in the following diagram: ii. Fig 4: The pairing process Finding devices: In this, it is needed to open the Bluetooth user name and MAC address to pair the Bluetooth. Fig 5: Bluetooth pairing and Connection process Lord Krishna College of Engineering (An ISO 9001:2008 Certified Institute) Ghaziabad, Uttar Pradesh, INDIA. Page 137
4 Fig 6: Workflow of the Bluetooth Chat Room V. DESIGN OF MODULES WITH SAMPLE CODE i. Discovering Devices: Device discovery is a scanning procedure and searches the local area for Bluetooth enabled devices. If the Bluetooth device is currently enabled to be discoverable then only it will respond to the discovery request. If the device is discoverable then it will respond by sharing some information such as device name, class and its unique MAC address. First time connection request automatically presented to the user. The information can be read using the Bluetooth APIs. Difference between paired and being connected are: Paired Two devices are aware of each other s existence. They have a shared link-key that can be used for the authentication. Capable of establishing an encrypted connection with each other. To be connected Devices currently share an RFCOMM channel. Transmit data with each other. Sample code : startdiscovery method is used in the class of BluetoothAdapater. It executes asynchronously, so we do not consider the thread is blocked. Whole process takes about 12 seconds[3]. Then register a BroadcastReceiver object to receive the Bluetooth device information. Then filter ACTION_FOUND intent to obtain the tailed information for each remote device. // Create a BroadcastReceiver for ACTION_FOUND private final BroadcastReceiver mreceiver = new BroadcastReceiver() { public void onreceive(context context, Intent intent) { String action = intent.getaction(); // When discovery finds a device if (BluetoothDevice.ACTION_FOUND.equals(action)) { // Get the BluetoothDevice object from the Intent BluetoothDevice device = intent.getparcelableextra(bluetoothdevice.extra_de VICE); // Add the name and address to an array adapter to show in a ListView marrayadapter.add(device.getname() + "\n" + device.getaddress()); }}}; Lord Krishna College of Engineering (An ISO 9001:2008 Certified Institute) Ghaziabad, Uttar Pradesh, INDIA. Page 138
5 ii. "Sharpening Skills... Paired Device: getbondeddevices() method is used in the pairing a Bluetooth device in the class BluetoothAdapter to obtain a paired device. This method returns the array of Bluetooth device to distinguish between each paired device. Sample code: iii. Set<BluetoothDevice> paireddevices = mbluetoothadapter.getbondeddevices(); // If there are paired devices if (paireddevices.size() > 0) { // Loop through paired devices for (BluetoothDevice device : paireddevices) { // Add the name and address to an array adapter to show in a ListView marrayadapter.add(device.getname() + "\n" + device.getaddress());}} Establishing: For the establishment of a Bluetooth communication must go through : Get local Bluetooth devices; Find the remote device; Pairing; iv. Connect devices; and Transfer data. Server Design: Server is needed to connect the two devices because it holds an open bluetoothserversocket. It is designed to listen for incoming connection requests. Call listenusingrfcommwithservicerecord(string, UUID) to get Bluetooth server socket. String = Name of the service, UUID = sign of connection Call the method accept() to listen for connection request and return a connection on Bluetooth socket bluetoothsocket. Call the method close() after listening to a connection to close the listener. v. Client Design: Bluetooth Device object is used to initialize a connection. Obtain the Bluetooth socket and initialize the connection by the BluetoothDevice object. Lord Krishna College of Engineering (An ISO 9001:2008 Certified Institute) Ghaziabad, Uttar Pradesh, INDIA. Page 139
6 Fig 7: Detailed design of Bluetooth Chat Room[4] VI. ADVANTAGE OF BLUETOOTH CHAT IN ANDROID i. Low-power & low-cost wireless connection. ii. Open standard short-range wireless communication. iii. Bluetooth offers higher level service profiles, such as FTP-like file servers, voice transport, and more.[8] iv. Innovative approach to the mobile world. v. No GSM or Wi-Fi connection required. vi. Bluetooth does not need a license around the globe for the working frequency band. vii. Low cost transmission technology for the handheld devices. VII. LIMITATIONS OF CHATTING ROOM SYSTEM IN ANDROID BLUETOOTH i. Strangers can communicate with others using Bluetooth devices. ii. Bluejacking, refers to people who send irrelevant, surprising, or shocking messages to strangers in their vicinity. iii. Limited range to chat.[7] VIII. CONCLUSION AND FUTURE WORKS The internet age of today chat room is of a great entertainment features project. Most of the internet user likes it. Lord Krishna College of Engineering (An ISO 9001:2008 Certified Institute) Ghaziabad, Uttar Pradesh, INDIA. Page 140
7 Android provides the design and realization of chatting room system is good for developing Bluetooth network application and Bluetooth agreement. The system have realized the broadcast and private chat between mobile phones. But few still need to further improve the usability and functionality of the system like richer input format, the expression of information, pictures, information transmission etc. REFERENCES [1] E2ECloud studio. Google Android[M] posts & telecom press [2] [2] The Bluetooth Special Interest Group. Bluetooth Specification Core v4.0 ( ). [3] Han Chao, Liang Quan, Principles and development points of the Android system[m]. Publishing House of Electronics industry [3] yang Fegsheng. Android Inside [M]. Machinery Industry Press [4] Andre N Klingsheim. J2ME Bluetooth Programming[D]. Department of informatics University of Bergen, 2004 [5] W., ONGTANG, M., AND MCDANIEL, P. OnLightweight Mobile Phone Application Certification. In Proceedingsof the 16th ACM Conference on Computer and Communications Security (CCS) (Nov. 2009). [6] ENCK, W., ONGTANG, M., AND MCDANIEL, P. Understanding Android Security. IEEE Security & Privacy Magazine 7, 1 (January/February 2009), [7] FELMETSGER, V., CAVEDON, L., KRUEGEL, C., AND VIGNA, G. Toward Automated Detection of Logic Vulnerabilities inweb Applications. In Proceedings of the USENIX Security Symposium (2010). [8] FIRST TECH CREDIT UNION. Security Fraud: Rogue Android Smartphone app created. Dec [9] GOODIN, D. Backdoor in top iphone games stole user data, suit claims. The Register, November [10] HOVEMEYER, D., AND PUGH, W. Finding Bugs is Easy. In Proceedings of the ACM conference on Object-Oriented Programming Systems, Languages, and Applications (2004). [11] JOHNS, T. Securing Android LVL Applications [12] JUNG, J., SHETH, A., GREENSTEIN, B., WETHERALL, D.,MAGANIS, G., AND KOHNO, T. Privacy Oracle: A System for Finding Application Leaks with Black Box Differential Testing. In Proceedings of the ACM conference on Computer and Communications Security (2008). [13] KASPERSKEY LAB. First SMS Trojan detected for smartphones running Android. August [14] KIRDA, E., KRUEGEL, C., BANKS, G., VIGNA, G., AND KEMMERER, R. A. Behavior-based Spyware Detection. In Proceedings of the 15th USENIX Security Symposium (Aug. 2006). Lord Krishna College of Engineering (An ISO 9001:2008 Certified Institute) Ghaziabad, Uttar Pradesh, INDIA. Page 141
Design of Chatting Application Based on Android Bluetooth
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. 3, March 2014,
Mobila applikationer och trådlösa nät
Mobila applikationer och trådlösa nät HI1033 Lecturer: Anders Lindström, [email protected] Lecture 10 Today s topics Bluetooth NFC Bluetooth Bluetooth Wireless technology standard for exchanging
ANDROID BASED SECURITY AND HOME AUTOMATION SYSTEM
ANDROID BASED SECURITY AND HOME AUTOMATION SYSTEM Sadeque Reza Khan 1 and Farzana Sultana Dristy 2 1 Department of Information and Communication Engineering, Chosun University, Korea 2 Department of Computer
ANDROID LEVERED DATA MONITORING ROBOT
ANDROID LEVERED DATA MONITORING ROBOT 1 HIMANI PATHAK, 2 VIDYALAKSHMI KRISHNAKUMAR, 3 SHILPA RAVIKUMAR, 4 AJINKYA SHINDE 1,2,3,4 Electronics & Telecommunication Engineering, Fr. C. R. Institute of Technology,
ECM (ELO-KIT-ECMG2-AND)
Software SDK USER GUIDE Elo Touch Solutions I-Series Interactive Signage ESY10i1, ESY15i1, ESY22i1 Android ECM (ELO-KIT-ECMG2-AND) SW602422 Rev A I-Series and Android ECM Software Development Kit User
Fig. 1 BAN Architecture III. ATMEL BOARD
Volume 2, Issue 9, September 2014 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online
ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM
ENABLING WIRELESS DATA COMMUNICATION IN CONSTRUCTION MANAGEMENT SYSTEM Liu Yanxiang & Yow Kin Choong School of Computer Engineering Nanyang Technological University Nanyang Avenue, Singapore 639798 Keywords:
Sending and Receiving Data via Bluetooth with an Android Device
Sending and Receiving Data via Bluetooth with an Android Device Brian Wirsing March 26, 2014 Abstract Android developers often need to use Bluetooth in their projects. Unfortunately, Bluetooth can be confusing
Performance Measuring in Smartphones Using MOSES Algorithm
Performance Measuring in Smartphones Using MOSES Algorithm Ms.MALARVIZHI.M, Mrs.RAJESWARI.P ME- Communication Systems, Dept of ECE, Dhanalakshmi Srinivasan Engineering college, Perambalur, Tamilnadu, India,
Development of a new service using Wi-Fi Direct
COMPUTER NETWORKS COEN233 Development of a new service using Wi-Fi Direct HE SHOUCHUN MEENAKSHI HARIKUMAR NAGA TULASI SOUJANYA VADREVU 1 INDEX 6. Implementation--------------------------------------------------------------------------------------------3
VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune
VEHICLE TRACKING SYSTEM USING GPS Pooja P. Dehankar 1, 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune Prof. S. P. Potdar 2 2 Asst. Professor, SCOE, Vadgaon, Pune Abstract- Global Positioning System is
The next generation of knowledge and expertise Wireless Security Basics
The next generation of knowledge and expertise Wireless Security Basics HTA Technology Security Consulting., 30 S. Wacker Dr, 22 nd Floor, Chicago, IL 60606, 708-862-6348 (voice), 708-868-2404 (fax), www.hta-inc.com
Research on Situation and Key Issues of Smart Mobile Terminal Security
Research on Situation and Key Issues of Smart Mobile Terminal Security Hao-hao Song, Jun-bing Zhang, Lei Lu and Jian Gu Abstract As information technology continues to develop, smart mobile terminal has
A qbit on Android Security
A qbit on Android Security Sergey Gorbunov One of the problems with modern desktop operating system is that there is no isolation between applications and the system. As we saw in class, a buggy application
Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser
Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser 1 Karan Sandeep Bhandari, 2 Vishnu Baliram Mandole, 3 Akash Dattatray Munde, 4 Sachin B. Takmare Bharati Vidyapeeth
Bluetooth Pairing with CUE - Android TM
Bluetooth Pairing with CUE - Android TM DRIVER: say Pair Phone" BLUETOOTH SEARCH STEPS:. On the Home screen Select the Menu. Settings. Wireless & Networks. Toggle Bluetooth to on 9. Bluetooth Settings.
Telephony Calls over Bluetooth. By Ajinkya Salunke, Prashant Shelke & Apurva Sahasrabudhe Sinhgad college of Engineering, Pune
Global Journal of Computer Science and Technology Network, Web & Security Volume 12 Issue 11 Version 1.0 June 2012 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals
www.ijreat.org Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (www.prdg.org) 1
Emergency Alert System using Android L.Hariprasath 1, R.Dhivya 2, S.Adithya 3 1 Assistant professor, Department of IT, Anand Institute of Higher Technology Kazhipattur, Chennai, Tamilnadu, India 2&3 UG-Student,
AUTOMOTIVE BLUETOOTH TELEPHONY.
Timo Müller, Mikel Astiz AUTOMOTIVE BLUETOOTH TELEPHONY. COMBINING BlueZ AND THE MODERN VEHICLE. AUTOMOTIVE BLUETOOTH TELEPHONY. WHY ARE WE DOING THIS? Building Open Source IVI Stack for Bluetooth Use
A MEDICAL HEALTH CARE SYSTEM WITH HIGH SECURITY USING ANDROID APPLICATION
A MEDICAL HEALTH CARE SYSTEM WITH HIGH SECURITY USING ANDROID APPLICATION Mr. T.CHANDRA SEKHAR RAO PROFESSOR and HEAD T.SREEDHAR M.TECH DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING LOYOLA INSTITUTE
Overview. Summary of Key Findings. Tech Note PCI Wireless Guideline
Overview The following note covers information published in the PCI-DSS Wireless Guideline in July of 2009 by the PCI Wireless Special Interest Group Implementation Team and addresses version 1.2 of the
Analysis of Open Source Drivers for IEEE 802.11 WLANs
Preprint of an article that appeared in IEEE conference proceeding of ICWCSC 2010 Analysis of Open Source Drivers for IEEE 802.11 WLANs Vipin M AU-KBC Research Centre MIT campus of Anna University Chennai,
Lecture Embedded System Security A. R. Sadeghi, @TU Darmstadt, 2011 2012 Introduction Mobile Security
Smartphones and their applications have become an integral part of information society Security and privacy protection technology is an enabler for innovative business models Recent research on mobile
Wireless LANs vs. Wireless WANs
White Paper Wireless LANs vs. Wireless WANs White Paper 2130273 Revision 1.0 Date 2002 November 18 Subject Supported Products Comparing Wireless LANs and Wireless WANs Wireless data cards and modules,
Analysis of advanced issues in mobile security in android operating system
Available online atwww.scholarsresearchlibrary.com Archives of Applied Science Research, 2015, 7 (2):34-38 (http://scholarsresearchlibrary.com/archive.html) ISSN 0975-508X CODEN (USA) AASRC9 Analysis of
Short-range Low Power Wireless Devices and Internet of Things (IoT)
Short-range Low Power Wireless Devices and Internet of Things (IoT) Mats Andersson, CTO, connectblue Phone: +46 40 630 71 00 Email: [email protected] Web: www.connectblue.com Version 1.1 February
Smartphone as a Remote Control Proxy in Automotive Navigation System
Contemporary Engineering Sciences, Vol. 7, 2014, no. 14, 683-689 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4675 Smartphone as a Remote Control Proxy in Automotive Navigation System
RTOS based Home Automation System using Android
RTOS based Home Automation System using Android Syed Anwaarullah 1, S.V. Altaf 2 1 PG Engineering Student at Lords Institute of Engineering and Technology, India, [email protected] 2 Assoc Prof at Lords
Issues in Android on Mobile Platform and Their Resolution
Issues in Android on Mobile Platform and Their Resolution 1 Monika A. Ganpate, 2 Dipika R. Shinde 1, 2 Institute of Management and Computer Studies, Thane (West), India, University of Mumbai, India Abstract:
Analysis of Methods for Mobile Device Tracking. David Nix Chief Scientific Advisor
Analysis of Methods for Mobile Device Tracking David Nix Chief Scientific Advisor October 2013 Table of Contents 1. Document Purpose and Scope 3 2. Overview 3 2.1 Mobile Device Penetration 3 2.2 Mobile
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
LOCATIONS AROUND ME (ANDROID)
IMPACT: International Journal of Research in Engineering & Technology (IMPACT: IJRET) ISSN(E): 2321-8843; ISSN(P): 2347-4599 Vol. 2, Issue 4, Apr 2014, 193-198 Impact Journals LOCATIONS AROUND ME (ANDROID)
WHITE PAPER Usher Mobile Identity Platform
WHITE PAPER Usher Mobile Identity Platform Security Architecture For more information, visit Usher.com [email protected] Toll Free (US ONLY): 1 888.656.4464 Direct Dial: 703.848.8710 Table of contents Introduction
Connecting your Aiki phone to a network
Connecting your Aiki phone to a network Connect to mobile networks Depending on your carrier and service plan, your phone may connect automatically to your carrier s fastest available data network. Or
Remote Android Assistant with Global Positioning System Tracking
IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 2, Ver. III (Mar-Apr. 2014), PP 95-99 Remote Android Assistant with Global Positioning System Tracking
An Android Enabled Mobile Cloud Framework for Development of Electronic Healthcare Monitoring System using VPN Connection
ISSN: 2321-7782 (Online) Volume 1, Issue 7, December 2013 International Journal of Advance Research in Computer Science and Management Studies Research Paper Available online at: www.ijarcsms.com An Android
Hardware and software implications of creating Bluetooth Scatternet devices
Hardware and software implications of creating Bluetooth Scatternet devices David Johnson Abstract This paper seeks to explain the practical issues encountered when implementing point to multipoint capable
Networking. Systems Design and. Development. CRC Press. Taylor & Francis Croup. Boca Raton London New York. CRC Press is an imprint of the
Networking Systems Design and Development Lee Chao CRC Press Taylor & Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an Informa business AN AUERBACH BOOK
A new Design Approach for Developing Electronic Health Record Application on Android
A new Design Approach for Developing Electronic Health Record Application on Android H. Sarojadevi 1,, Pallavi Munihanumaiah 2,B.A.Mohan 1,S.Ramya 1 and M. Sushma 1 1 Department of CSE, Nitte Meenakshi
Quick Start Guide v1.0. This Quick Start Guide is relevant to Laird s BT800, BT810 and BT820 Bluetooth modules.
v1.0 This is relevant to Laird s BT800, BT810 and BT820 Bluetooth modules. INTRODUCTION The Linux operating system, and Android by extension, has excellent USB support for a variety of devices. This makes
Remote Monitoring and Controlling System Based on ZigBee Networks
Remote Monitoring and Controlling System Based on ZigBee Networks Soyoung Hwang and Donghui Yu* Department of Multimedia Engineering, Catholic University of Pusan, South Korea {soyoung, dhyu}@cup.ac.kr
INTERMEDIATE ANDROID DEVELOPMENT Course Syllabus
6111 E. Skelly Drive P. O. Box 477200 Tulsa, OK 74147-7200 INTERMEDIATE ANDROID DEVELOPMENT Course Syllabus Course Number: APD-0248 OHLAP Credit: No OCAS Code: None Course Length: 120 Hours Career Cluster:
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
High Secure Mobile Operating System Based on a New Mobile Internet Device Hardware Architecture
, pp. 127-136 http://dx.doi.org/10.14257/ijfgcn.2015.8.1.14 High Secure Mobile Operating System Based on a New Mobile Internet Device Hardware Architecture Gengxin Sun and Sheng Bin International College
Research and Design of Universal and Open Software Development Platform for Digital Home
Research and Design of Universal and Open Software Development Platform for Digital Home CaiFeng Cao School of Computer Wuyi University, Jiangmen 529020, China [email protected] Abstract. With the development
HOME APPLIANCES CONTROL SYSTEM BASED ON ANDROID SMARTPHONE
HOME APPLIANCES CONTROL SYSTEM BASED ON ANDROID SMARTPHONE Ajinkya Korane 1, Sanket Salunke 2 1 UG, Mechanical, 2 UG, E & TC, University of Pune, (India) ABSTRACT Today we are living in 21st century where
Mobile Operating Systems Lesson 05 Windows CE Part 1
Mobile Operating Systems Lesson 05 Windows CE Part 1 Oxford University Press 2007. All rights reserved. 1 Windows CE A 32 bit OS from Microsoft Customized for each specific hardware and processor in order
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
Using Bluetooth on Android Platform for mhealth Development
Using Bluetooth on Android Platform for mhealth Development Evgeny Stankevich, Ilya Paramonov Yaroslavl State University Yaroslavl, Russia {stankevich.evg, ivparamonov}@gmail.com Abstract There are many
CMR Journal of Engineering and Technology Vol.1 Issue.1 January 2016
VEHICLE TRACKING SYSTEM WITH ANDROID APP SUPPORT ABSTRACT M. Sudhakar Professor Dept of ECE CMR College of Engineering & Technology Kandlakoya, Medchal Rd, Hyderabad e-mail: [email protected] K.Kalyani PG
PocketDroid - A PC Remote Control
2012 International Conference on Information and Network Technology (ICINT 2012) IPCSIT vol. 37 (2012) (2012) IACSIT Press, Singapore PocketDroid - A PC Remote Control Chaitali Navasare, Deepa Nagdev +
DiffUser: Differentiated User Access Control on Smartphones
DiffUser: Differentiated User Access Control on Smartphones Xudong Ni, Zhimin Yang, Xiaole Bai, Adam C. Champion, and Dong Xuan Department of Computer Science and Engineering The Ohio State University
Security+ Guide to Network Security Fundamentals, Third Edition. Chapter 6. Wireless Network Security
Security+ Guide to Network Security Fundamentals, Third Edition Chapter 6 Wireless Network Security Objectives Overview of IEEE 802.11 wireless security Define vulnerabilities of Open System Authentication,
Avaya WLAN Orchestration System
Avaya WLAN Orchestration System Overview The Avaya WLAN Orchestration System (WOS) is a wireless network management platform that provides full monitoring and management of the Avaya WLAN 9100 Series network
Wireless ATA: A New Data Transport Protocol for Wireless Storage
Wireless ATA: A New Data Transport Protocol for Wireless Storage Serdar Ozler and Ibrahim Korpeoglu Department of Computer Engineering, Bilkent University, 06800 Bilkent, Ankara, Turkey {ozler, korpe}@cs.bilkent.edu.tr
A B S T R A C T. Keywords: Mobile computing, Compiler, Android Development tool kit; I. INTRODUCTION
Remote Access Android Phones Through Simple Mobile. 1M.S.Badgujar, 2N.D.Tribhuvan, 3S.U.Rahane,4Prof.C.S.Aryan Department of Computer Engg, Jaihind College Of Engg, Kuran Savitribai Phule Pune University,
ANDROID BASED MOBILE APPLICATION DEVELOPMENT and its SECURITY
ANDROID BASED MOBILE APPLICATION DEVELOPMENT and its SECURITY Suhas Holla #1, Mahima M Katti #2 # Department of Information Science & Engg, R V College of Engineering Bangalore, India Abstract In the advancing
Lab Exercise 802.11. Objective. Requirements. Step 1: Fetch a Trace
Lab Exercise 802.11 Objective To explore the physical layer, link layer, and management functions of 802.11. It is widely used to wireless connect mobile devices to the Internet, and covered in 4.4 of
IJREAT International Journal of Research in Engineering & Advanced Technology, Volume 1, Issue 1, March, 2013 ISSN: 2320-8791 www.ijreat.
Intrusion Detection in Cloud for Smart Phones Namitha Jacob Department of Information Technology, SRM University, Chennai, India Abstract The popularity of smart phone is increasing day to day and the
Short range low power wireless devices and Internet of Things (IoT)
Short range low power wireless devices and Internet of Things (IoT) White paper Author Mats Andersson Senior Director Technology, Product Center Short Range Radio, u-blox Abstract This paper discusses
When a student leaves this intensive 5 day class they will have hands on understanding and experience in Ethical Hacking.
Ethical Hacking and Countermeasures Course Description: This class will immerse the student into an interactive environment where they will be shown how to scan, test, hack and secure their own systems.
Smart Home Security System Based on Microcontroller Using Internet and Android Smartphone
International Conference on Materials, Electronics & Information Engineering, ICMEIE-205 05-06 June, 205, Faculty of Engineering, University of Rajshahi, Bangladesh www.ru.ac.bd/icmeie205/proceedings/
Bluetooth Messenger: an Android Messenger app based on Bluetooth Connectivity
IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 3, Ver. III (May-Jun. 2014), PP 61-66 Bluetooth Messenger: an Android Messenger app based on Bluetooth
Design and Implementation of Forensic System in Android Smart Phone
Design and Implementation of Forensic System in Android Smart Phone Xinfang Lee 1, Chunghuang Yang 1 2, Shihj en Chen, Jainshing Wu 2 1 Graduate Institute of Information and computer Education National
Present and Act Upon. Register. Consume. Stream Analytics. Event Hubs. Field Gateway. Applications Cloud Gateway. Legacy IoT (custom protocols)
Things Gateway Ingest Transform Store Present and Act Upon Applications Cloud Gateway Event Hubs Stream Analytics Legacy IoT (custom protocols) Register Devices Storage Adapters IP-capable devices (Windows/Linux)
Intelligent Database Monitoring System using ARM9 with QR Code
Intelligent Database Monitoring System using ARM9 with QR Code Jyoshi Niklesh 1, Dhruva R. Rinku 2 Department of Electronics and Communication CVR College of Engineering, JNTU Hyderabad Hyderabad, India
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
Zigbee-Based Wireless Distance Measuring Sensor System
Zigbee-Based Wireless Distance Measuring Sensor System Ondrej Sajdl 1, Jaromir Zak 1, Radimir Vrba 1 1 Department of Microelectronics, Brno University of Technology, FEEC, Udolni 53, 602 00 Brno, Czech
Skynax. Mobility Management System. System Manual
Skynax Mobility Management System System Manual Intermec by Honeywell 6001 36th Ave. W. Everett, WA 98203 U.S.A. www.intermec.com The information contained herein is provided solely for the purpose of
Secure Your Enterprise with Usher Mobile Identity
Secure Your Enterprise with Usher Mobile Identity Yong Qiao, Vice President of Software Engineering & Chief Security Architect, MicroStrategy Agenda Introduction to Usher Unlock the enterprise Dematerialize
AUTOMATE CRAWLER TOWARDS VULNERABILITY SCAN REPORT GENERATOR
AUTOMATE CRAWLER TOWARDS VULNERABILITY SCAN REPORT GENERATOR Pragya Singh Baghel United College of Engineering & Research, Gautama Buddha Technical University, Allahabad, Utter Pradesh, India ABSTRACT
Android Commercial Spyware Disease and Medication
Android Commercial Spyware Disease and Medication By Eng. Mustafa Saad Computer Engineer 2003 Mobile App Developer 2011 Mobile Security Researcher 2012 Udemy Premium Instructor 2014 March 2016 Agenda Introduction.
A Short Introduction to Android
A Short Introduction to Android Notes taken from Google s Android SDK and Google s Android Application Fundamentals 1 Plan For Today Lecture on Core Android Three U-Tube Videos: - Architecture Overview
Gateway Service for Integration of Heterogeneous Networks using Different Interworking Solutions
Gateway Service for Integration of Heterogeneous Networks using Different Interworking Solutions Hyunho Park*, Hyeong Ho Lee*, H. Anthony Chan** * Electronics and Telecommunications Research Institute
Usability Testing for Android and Apple Smart Phone
Usability Testing for Android and Apple Smart Phone Nyembo Salama 1, Christian Bach 2 1,2 Computer Science and Engineering Department, University of Bridgeport, Bridgeport, Connecticut 06604, USA Abstract
TECHNICS TECHNOLOGIES EDUCATION MANAGEMENT JOURNAL OF SOCIETY FOR DEVELOPMENT OF TEACHING AND BUSINESS PROCESSES IN NEW NET ENVIRONMENT IN B&H
Vol. 9, No. 3, 2014. ISSN 1840-1503 T TE M TECHNICS TECHNOLOGIES EDUCATION MANAGEMENT JOURNAL OF SOCIETY FOR DEVELOPMENT OF TEACHING AND BUSINESS PROCESSES IN NEW NET ENVIRONMENT IN B&H The services of
Degree Certificate Authentication using QR Code and Smartphone
Degree Certificate Authentication using and Smartphone Ankit Singhal M.Tech Computer Science Faculty of Science, Dayalbagh Educational Institute, Dayalbagh, Agra, U.P, India R.S Pavithr Assistant Professor
Principles and Foundations of Web Services: An Holistic View (Technologies, Business Drivers, Models, Architectures and Standards)
Principles and Foundations of Web Services: An Holistic View (Technologies, Business Drivers, Models, Architectures and Standards) Michael P. Papazoglou (INFOLAB/CRISM, Tilburg University, The Netherlands)
Study of SAP ERP Connection System Driven in Smartphone
Study of SAP ERP Connection System Driven in Smartphone 1 Jong Youel Park, * 2 Dea-Woo Park, 3 Young Hyun Chang, 4 Kyung Bae Yoon 1, First Author Hoseo Graduate School of Venture Korea, [email protected]
A Real Time Tracking and Alerting System Using LabVIEW
A Real Time Tracking and Alerting System Using LabVIEW J Jyothirmai Joshi Assistant Professor, Dept. of EIE, VNR Vignan Jyothi Institute of Engineering and Technology, Hyderabad, Telangana, India ABSTRACT:
Part K:11 OBJECT PUSH PROFILE
Part K:11 OBJECT PUSH PROFILE This application profile defines the application requirements for Bluetooth devices necessary for the support of the Object Push usage model. The requirements are expressed
GUI/Custom GUI, SIP Stack, Telephony, DB, Sockets, Bluetooth, QT.
OVERVIEW FOR SYNERGY ISG: Mobile development ScienceSoft in quick facts 250 full-time IT experts and a network of 100+ developers 200+ successfully completed large outsourcing projects Experience in software
Application of Android Mobile Platform in Remote Medical Monitoring System
, pp. 163-174 http://dx.doi.org/10.14257/ijsh.2015.9.4.17 Application of Android Mobile Platform in Remote Medical Monitoring System Yao Wang, Minghan Liu and Jingang Li School of Software, Harbin University
Keywords RFID READER, FPGA, GSM.
Volume 5, Issue 2, February 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com FPGA Based
A Practical Analysis of Smartphone Security*
A Practical Analysis of Smartphone Security* Woongryul Jeon 1, Jeeyeon Kim 1, Youngsook Lee 2, and Dongho Won 1,** 1 School of Information and Communication Engineering, Sungkyunkwan University, Korea
Remote Desktop on Mobile
Remote Desktop on Mobile SonamGavhane RasikaPhanse Monica Sadafule B.W.Balkhande Abstract In This paper we will see how the remote Desktop with static IP can be accessed using Android based mobile phones,to
Introducing BEEKS Proximity Solutions. Developer Kit Gets You Started
Introducing BEEKS Proximity Solutions BEEKS from BluVision provides industry-leading Bluetooth beacon solutions to enterprises and innovative developers. Leveraging a cutting-edge, cloudbased solution,
A B S T R A C T. Index Trems- Wi-Fi P2P, WLAN, Mobile Telephony, Piconet I. INTRODUCTION
Wi-Fi Calling Using Android Phones. Mr.Dnyaneshwar Bhusari, Mr.Gaurav Mokase, Mr.Prasad Waghmare, Ms. Kundan Kumar Department of Information Technology D.Y.Patil College of Engineering, Akurdi, Pune, India
Software design (Cont.)
Package diagrams Architectural styles Software design (Cont.) Design modelling technique: Package Diagrams Package: A module containing any number of classes Packages can be nested arbitrarily E.g.: Java
Design of an Easy-to-Use Bluetooth Library for. Wireless Sensor Network on Android
Contemporary Engineering Sciences, Vol. 7, 2014, no. 16, 801 805 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4694 Design of an Easy-to-Use Bluetooth Library for Wireless Sensor Network
PM0237 Programming manual
Programming manual BlueNRG, BlueNRG-MS stacks programming guidelines Introduction Note: The main purpose of this document is to provide a developer with some reference programming guidelines about how
Bluetooth Health Device Profile and the IEEE 11073 Medical Device Frame Work
Bluetooth Health Device Profile and the IEEE 11073 Medical Device Frame Work Rudi Latuske, ARS Software GmbH 1. Bluetooth in Medical Applications Bluetooth, as a short range wireless technology, is very
Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations
Development of Integrated Management System based on Mobile and Cloud service for preventing various dangerous situations Ryu HyunKi, Moon ChangSoo, Yeo ChangSub, and Lee HaengSuk Abstract In this paper,
Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2
Design of a Wireless Medical Monitoring System * Chavabathina Lavanya 1 G.Manikumar 2 1 PG Student (M. Tech), Dept. of ECE, Chirala Engineering College, Chirala., A.P, India. 2 Assistant Professor, Dept.
ANDROID APPLICATION DEVELOPER RESUME
1 of 5 03/01/2015 20:09 ANDROID APPLICATION DEVELOPER RESUME Java Developers/Architects Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide candidates on
WAITER: A Wearable Personal Healthcare and Emergency Aid System
Sixth Annual IEEE International Conference on Pervasive Computing and Communications WAITER: A Wearable Personal Healthcare and Emergency Aid System Wanhong Wu 1, Jiannong Cao 1, Yuan Zheng 1, Yong-Ping
