Sensor Data Network Using Android Mobile Devices

Published on May 2016 | Categories: Types, Articles & News Stories | Downloads: 33 | Comments: 0 | Views: 225
of 10
Download PDF   Embed   Report

Chris Aliac,Intelligent Systems Laboratory, Cebu Institute of Technology, Philippines 2010A system of lightweight SensorNetworks based on Android Devices to use mobile elements within theexisting infrastructure to enable data collection

Comments

Content

Sensor Data Network Using Android Mobile Devices
Chris Jordan G. Aliac
Intelligent Systems Laboratory, Cebu Institute of Technology, Cebu City, 6000 Philippines [email protected]

Abstract. We have an insatiable desire to make sense of the world around us. How do we best observe and record the details of time, nature, location, events, and our own personal experiences? Data collection has always been a major challenge in sensor networks and various techniques have been proposed to en- able efficient data collection. One such methodology is the use of mobile ele- ments within the existing infrastructure to enable data collection. Smartphone’s are becoming ever more popular as they become cheaper to buy and very user friendly and easy to write applications. A wide range of these smartphones’ are based on the Android operating system. In this paper, we present a system that deploys lightweight Sensor Networks easily based on widely available Android Devices. An Android application is used to communicate with the on-board sensors of the mobile device, collate the variety of sensor readings to then be displayed on the device and sent to a central server for data logging and analy- sis. To ensure data reliability and redundancy, back up logs are saved within the sensor devices and then later sent up the server or other live sensor device via SMS message.

1

Introduction

Research into semantic sensor networks has been focusing on the treatment and processing of data aggregated from large networks of sensors, often based on specialized equipments geographically distributed in large areas, [1] discusses a number of challenges related to Semantic Sensor Networks in such scenarios. The challenge we are particularly interested in relates to the ability for rapid development of applications that make use of Sensor Network. We especially look at applications in scenarios where it is needed to set -up networks of simple sensors quickly and easily (e.g., school projects, small experiments).In recent years, the Android platform became a de-facto standard for different types of mobile devices from several manufacturers. The computational power of these devices already allows client processing of small to medium volumes of semantic data [2]. According to Gartner Press Release for November 10, 2010 [3], Android is one of the most popular smartphone platforms at the moment, and the popularity is even rising. It is one of the most open and flexible platforms providing software developers easy access to phone hardware and rich software API. Android mobile devices not shows as a powerful computing and communication mobile device of choice, but it also comes with a

324

rich set of embedded sensors, such as an accelerometer, digital compass, gyroscope, GPS, microphone, and camera. Collectively, these sensors are enabling new applications across a wide variety of domains, such as healthcare [4], social networks [5], safety, environmental monitoring [6], and transportation [7, 8], and give rise to a new area of research called mobile phone sensing. Until recently mobile sensing research such as activity recognition, where people’s activity (e.g., walking, driving, sitting, talking) is classified and monitored, required specialized mobile devices (e.g., the Mobile Sensing Platform [MSP]) [9] to be fabricated [10]. Mobile sensing applications had to be manually downloaded, installed, and hand tuned for each device. User studies conducted to evaluate new mobile sensing applications and algorithms were small-scale because of the expense and complexity of doing experiments at scale. As a result the research, which was innovative, gained little momentum outside a small group of dedicated researchers. Although the potential of using mobile phones as a platform for sensing research has been discussed for a number of years now, in both industrial [11] and research communities [12,13], there has been little or no advancement in the field until recently.

2

System Overview

Fig. 1. Data Collection Overall Layout

A sensor network is a data centric network which comprises distributed sites of

325

information represented by sensor nodes contributing data sensed [14]. They are producer of valuable data that needs to be collected in a cost efficient manner. The cost includes cost of communication, power consumption and time involved in communication. Data collection can be classified into Data Collection using static nodes and Data Collection using mobile elements. Since our focus is on mobile device based data collection, the literature looks into the use of mobile elements for data collection and not into traditional based multi hop and clustering based techniques. The idea of using mobility within sensor network to collect data from sensor nodes has been discussed by a number of researchers [15, 16, 17, 18, 19, 20, 21, 22]. The use of mobility to improve performance in AdHoc networks has been proposed in ZebraNet project and Manatee project [3]. These mobile elements can be introduced or existing mobility in the environment can be used to achieve mobility. The use of mobility can be classified broadly as Random mobility, Predictable mobility and Controlled mobility. Kansal et al. [4, 12] presents a work on using controlled mobility for data col- lection in sensor networks. Shah et al. [3] and Sushant et al [12] present Data Mules that makes use of random mobility for data collection. Chakrabarthi et al. [11] proposes a novel way of using predictable mobility to collect data from sensor networks that are distributed over an area.

2.1

Accelerometer Sensor

As stated in the above literature, Android devices contain sereval on-board sensors which can be easily acquired by writing an Android application. In this paper, the accelerometer sensor, which is always found on Android phones, will be demonstrated as a potential data on which to acquire. The devices’ accelerometer consists of 3 axes (X, Y, Z). Forces are applied to the sensor which yields results in m/s2. Normally gravity acts upon the sensor and depending on the phones position, one of the phones axes will register 9.8 m/s2 at stationary nonmoving state.

Ad = - ∑Fs / mass
Fig. 2. 3 Axis accelerometer forces

326

By measuring accelerometer data, can yield a lot of potential applications such as vibration sensing on a specific rigid structure, measuring road conditions traveled by car and measuring seismic activity to name a few.

2.2

Android SDK

Android is a software stack for mobile devices that includes an operating system, middleware and key applications. T he Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language [23].

Fig. 3. Adroid OS Stack

By providing an open development platform, Android offers developers the ability to build extremely rich and innovative applications. Developers are free to take advantage of the device hardware, access location information, run background services, set alarms, add notifications to the status bar, and much, much more. Developers have full access to the same framework APIs used by the core applications. The application architecture is designed to simplify the reuse of components; any application can publish its capabilities and any other application may then make use of those capabilities (subject to security constraints enforced by the framework). This same mechanism allows components to be replaced by the user. Underlying all applications is a set of services and systems, including:

327

A rich and extensible set of Views that can be used to build an application, including lists, grids, text boxes, buttons, and even an embeddable web browser Content Providers that enable applications to access data from other applications (such as Contacts), or to share their own data A Resource Manager, providing access to non-code resources such as localized strings, graphics, and layout files A Notification Manager that enables all applications to display custom alerts in the status bar. An Activity Manager that manages the lifecycle of applications and provides a common navigation backstack Android includes a set of C/C++ libraries used by various components of the Android system. These capabilities are exposed to developers through the Android application framework. Some of the core libraries are listed below: System C library - a BSD-derived implementation of the standard C system library (libc), tuned for embedded Linux-based devices Media Libraries - based on PacketVideo's OpenCORE; the libraries support playback and recording of many popular audio and video formats, as well as static image files, including MPEG4, H.264, MP3, AAC, AMR, JPG, and PNG Surface Manager - manages access to the display subsystem and seamlessly composites 2D and 3D graphic layers from multiple applications LibWebCore - a modern web browser engine which powers both the Android browser and an embeddable web view SGL - the underlying 2D graphics engine 3D libraries - an implementation based on OpenGL ES 1.0 APIs; the libraries use either hardware 3D acceleration (where available) or the included, highly optimized 3D software rasterizer FreeType - bitmap and vector font rendering SQLite - a powerful and lightweight relational database engine avail- able to all applications

2.3

Data Acquisition Infrastructure

In this Sensor network, a server runs as the data acquisition for the different sensors. The System is connected via WIFI connection in which the server opens up a TCP socket port. The Android mobile sensors will act as clients connected to the TCP port. Given the simplicity of the way devices connect in such a way that TCP runs on any platform, servers may appear from different device types of different platforms. Server devices may appear as a desktop computer, a laptop or even a tablet PC. Platforms run from Windows based or even Linux or MAC Systems. In this paper, Windows platyform is run using .Net C# as the programming language of choice.

328

3

Sensor Data Network Potentials

Although the system shows limitations to the number of sensors connected to the system. The architecture can be expanded to form a network of networks. TCP network servers can act as a large sensor array and can communicate to other TCP network servers. It can also be altered to become a Semantic Sensor Data Network by altering ports to Internet (port 80) and establishing Web servers for the TCP severs to send data or even better, make TCP server to WEB servers and alter the Android sensor apps to connect via Internet Web.

3.1 Reliability Data from sensors must be sent to servers by means of a standard TCP socket. But there will be instances wherein TCP servers will be offline. At this condition, to ensure data will be sent to the server, Data will also be backed-up on the Android mobile sensors. Upon a substantial amount of time will be given for the server to be back online, when the server remains offline, data will be sent to other Android mobile sensors via SMS. A redundant SMS server can also be established online for the mobile sensors to tramsit data. In a worst-case failed network scenario.

4

System Results

Two Android devices were installed with a written application that acquires data from its accelerometer and connects to a server program funning on the WIFI network. Data is tramsitted in the form of raw float data from the 3 axis. Data received form the server is displayed onto the UI and options for saving the data is created. A graph is also displayed from the given realtime data in separate axis values.

4.1 Android Application program The android application program was written using the Eclipse IDE. Since accelerometer is not possible in IDE Android emulator, an actual Android phone was connected and program was tested via USB connections an run on Android debug mode ADB.

329

Fig. 4. Android Application

4.2

Server Program

The server program was written using Visual C# express edition. Dot Net libraries provide a powerful socket connection library via TCP Listeners. The Server runs on port address 8000 and can easily be ported to port 80 internet connection.

330

Fig. 5. TCP Server Progam

4.3

Data Analysis

Since Data is passed to the server as 3 xis data in the form below: sensor1: X:-1.493966 Y:-0.306454 Z: 9.998084 Data can be analyzed by the sensor sending the data and the current real time data by the 3 axis X, Y and Z. The data shown above tells us that the phones 2 position is lying flat on its back by the Z data at 9.9 m/s . It would lie face first if 2 the data reflect -9.9 m/s . Based on initial trials of data logged and saved, sensor data is very sensitive that a simulated movement test was conducted. Data was 2 taken and absolute offset from 9.9 m/s was calculated .Results are shown below.
Table 1. : Simulated movement

test

331

Although the table shown on the table does not show conclusive data due to the fact that no basis from actual data was used to conclude remarks. This table shows that raw data results can be easily analyzed for a specific study.

5

Conclusion

Based on the system results, this system can of potential use to different applications for different disciplines. The network system can be easily converted form a basic data sensor network where basic sockets are used on TCP, to a full Semantic sensor web that could gather a large array of data.

References
1. Corcho, O., Garcia-Castro, R.: Five challenges for the semantic sensor web. Semantic Web
Journal 1(1) (2010) d'Aquin, M., Nikolov, A., Motta, E.: How much semantic data on small devices? In: EKAW. (2010) 3. http://www.gartner.com/it/page.jsp?id=1466313 4. S. Consolvo et al., “Activity Sensing in the Wild: A Field Trial of Ubifit Garden,” Proc. 26th Annual ACM SI GCHI Conf. Human Factors Comp. Sys ., 2008, pp. 1797–1806. 5. E. Miluzzo et al., “Sensing meets Mobile Social Networks: The Design, Implementation, and Evaluation of the CenceMe Application,” Proc. 6th ACM SenSys , 2008, pp. 337–50. 6. M. Mun et al., “Peir, the Personal Environmental Impact Report, as a Platform for Participatory Sensing Systems Research,” Proc. 7th ACM MobiSys, 2009, pp. 55–68. 7. A. Thiagarajan et al., “VTrack: Accurate, Energy-Aware Traffic Delay Estimation Using Mobile Phones,” Proc.7th ACM SenSys, Berkeley, CA, Nov. 2009. 8. UC Berkeley/Nokia/NAVTEQ, “Mobile Millennium”;http://traffic.berkeley.edu/ 9. T. Choudhury et al., “The Mobile Sensing Platform: An Embedded System for Activity Recognition,” I EEE Pervasive Comp., vol. 7, no. 2, 2008, pp. 32–41. 10. T. Starner, Wearable Computing and Contextual Awareness , Ph.D. thesis, MIT Media Lab., Apr. 30, 1999. 11. Nokia, “Workshop on Large-Scale Sensor Networks and Applications,” Kuusamo, Finland, Feb. 3–6, 2005. 12. A. Schmidt et al., “Advanced Interaction in Context, ”Proc. 1st Int’l. Symp. HandHeld Ubiquitous Comp., 1999, pp. 89–101. 13. N. Eagle and A. Pentland, “Reality Mining: Sensing Complex Social Systems,” Personal Ubiquitous Comp., vol. 10, no. 4, 2006, pp. 255–268. 14. Chien-Chung Shen, Chavalit Srisathapornphat, and Chaiporn Jaikaeo. Sensor inform ation networking architecture and applications. IEEE Personal Communications, 2001, Page(s): 52-59 15. R. Shah, S. Roy, S. Jain, W. Brunette, "Data MULEs: Modeling a Three-tier Architecture for Sparse Sensor Networks", IEEE SNPA Workshop, May 2003 16. K. Aman, A. S. Arun, D. J. David, B. S. Mani, and E. Deborah, "Intelligent fluid infrastructure for embedded networks," in Proceedings of the 2nd international conference on Mobile systems, applications, and services. Boston, MA, USA: ACM Press, 2004. 2.

332

17. David Jea, Arun Somasundara, Mani Srivastava, “Multiple Controlled Mobile Elements (Data Mules) for Data Collection in Sensor Networks”, International Conference on Distributed Computing in Sensor Systems, 2005 18. LaMarca, A., Brunette, W., Koizumi, D., Lease, M., Sigurdsson, S. B., Sikorski, K., Fox, D., and Borriello, G. Making Sensor Networks Practical with Robots. In Proceedings of the First international Conference on Pervasive Computing, 2002, Page(s): 152-166. 19. Shashidhar R. Gandham, M. Dawande, Ravi Prakash and S. Venkatesan, Energy-Efficient Schemes for Wireless Sensor Networks with Multiple Mobile Base Stations. Proceedings of IEEE Globecom, December 2003 20. Vincze, Z., Vass, D., Vida, R., Vidács, A., and Telcs, A. Adaptive sink mobility in eventdriven multi-hop wireless sensor networks. In Proceedings of the First international Conference on integrated internet Ad Hoc and Sensor Networks, 2005 21. Tong L, Q. Zhao, and S. Adireddy, "Sensor networks with mobile agents," Proc. Of IEEE MILCOM'03, 2003 22. Ren, B., Ma, J., and Chen, C. The hybrid mobile wireless sensor networks for data gathering. In Proceeding of the international Conference on Communications and Mobile Computing, 2006 23. http://developer.android.com/guide/basics/what-is-android.html

333

Sponsor Documents

Or use your account on DocShare.tips

Hide

Forgot your password?

Or register your new account on DocShare.tips

Hide

Lost your password? Please enter your email address. You will receive a link to create a new password.

Back to log-in

Close