NanoMon: An Adaptable Sensor Network Monitoring Software

Size: px
Start display at page:

Download "NanoMon: An Adaptable Sensor Network Monitoring Software"

Transcription

1 NanoMon: An Adaptable Sensor Network Monitoring Software Misun Yu, Haeyong Kim, and Pyeongsoo Mah Embedded S/W Research Division Electronics and Telecommunications Research Institute (ETRI) Gajeong-dong 161, Yuseong-gu, Daejeon , South Korea {msyu, haekim, Abstract In this paper, we present a sensor network monitoring software, named NanoMon, which has a flexible architecture and supports for various user requirements of sensor network applications in an adaptive manner. With NanoMon, users can specify custom GUI plug-ins and internal module parameters by using a simply describable configuration file; and it can be automatically integrated to NanoMon framework to support user-specific sensor network applications. NanoMon employs a widely used database, MySQL, to concurrently and correctly manage sensing data and node information of several types of sensor network applications. To show flexibility and adaptability of NanoMon, we implemented two WSN applications- home monitoring and parking lot monitoring systems. By selecting a WSN application name specified in the configuration file, users can easily and dynamically change GUI and internal module parameters such as sensor types and database locations of NanoMon used to display the status of WSN. 1. Introduction Wireless sensor network (WSN) is a computer network consisting of spatially distributed sensor devices, which collect quite detailed information about the physical environment. WSNs have made many novel applications possible to emerge in the fields of environmental monitoring, home automation, object tracking, security and prevention of disasters. In these application systems, several tens or hundreds of sensing devices generate a volume of data. To deal with sensor network data generated various operating environment, users inevitably require monitoring software with decent abilities: abilities to flexibly change and scale its functions and appearances suitable to the purpose of various sensor networks as well as to monitor and analyze the collected information from sensor networks. In this paper, we present architecture of sensor network monitoring software named NanoMon. NanoMon enables users to interpret sensor network status visually by providing decent visualization components for sensor network monitoring: topology, sensor data, sensor list, node status, received packet log and so on. In addition to its visualization components provisioning capability, NanoMon can manage multiple sets of sensor network information and store sensor data related with them. NanoMon also provides plug-in capability for adding and removing custom GUI components at need. 2. Capability Comparison of NanoMon and Other Monitoring Tools Currently, only few kinds of sensor network monitoring tools are available, which provide sensor network data display capability, topology visualization and sensor network information manageability to users. Mote-View [1] monitoring tool is capable of logging wireless sensor data to a database, analyzing sensor readings and plotting them. It is composed of several modules which scale flexibly enough to support disparate needs from various users by using the plug-in capability. Surge-View [2] provides similar functions with Mote-View except the plug-in capability. In Spy- Glass framework [3], visualization plug-ins can register different data types and display information using a flexible multi-layer mechanism that renders information on a canvas. This software targets on debugging of applications and making the setup process easier. TinyViz is a Java-based GUI and a part of the TOSSIM package of TinyOS [4] [5]. It visualizes sensor readings, LED states and the status of radio links. Additionally, it allows a direct interaction with running TOSSIM simulations. The adaptive architecture of TinyViz allows users to add application specific visualization functions. These functions include specialized drawing operations, subscription/reaction to events and operations for providing feedback to the TOSSIM simulator. Table 1 shows the comparison among NanoMon

2 T ools Features NanoMon MOTE-VIEW SpyGlass Notes Multiple WSN monitoring O X X Plug-in capability for O O O custom GUI Sensor node control X O X Future work basedongui Database MySQL TinyDB None Application platform Platformindependent Windows XP & Platform independent WSN platform O: supportable, X: unsupportable (implemented in Java).Nano-24(NanoQplus).ETRI-SSN(NanoQplus).MicaZ(NanoQplus) 2000 Mica-series [6] (TinyOS) (implemented in Java) Mica-series (TinyOS) Table 1. Capability comparison among monitoring tools We will test NanoMon with various WSN platforms in near future. and some of above tools which is similar to NanoMon. NanoMon can manage and visualize multiple sensor network information such as history of received sensing data and network topology using MySQL databases. All tools listed in the Table 1 provide plug-in capability for GUI extension, but only our tool provides easy GUI extension method such as a configuration file. NanoMon and Spy- Glass are implemented in Java language to offer platform independence. Additionally, NanoMon provides well-defined packet format to connect with sink nodes or other monitoring devices. Figure 1. Sensor network monitoring framework of NanoMon 3. Sensor Network Monitoring Framework Sensor network monitoring framework of NanoMon is composed of following four functional parts. Figure 1 shows how these parts are interconnected with each other. Wireless sensor networks Monitoring server Databases Monitoring clients A wireless sensor network includes micro-sensor nodes loading sensor OS (e.g. NanoQplus [7] [8]), sensor applications and routing facilities, and a sink node. Environment information generated by sensor nodes is forwarded to a designated sink node. Each sink node sends collected data and topology information to a monitoring server (e.g. NanoMon). After the monitoring server receives the sensor network data from sink nodes, it filters, arranges and displays them in turn. And then it transmits data to a database server via TCP /IP network to store them. The monitoring server can also forward sensor data to monitoring clients connected via TCP/IP. In our implementation, we defined XML packet formats for sending sensor data to monitoring clients. The database is a data storage saving sensor data, network topology, etc. We use MySQL [9] as a database manager. Monitoring clients are computer programs(e.g. NanoMon) utilizing sensor data and topology information of a sensor network received from monitoring servers (NanoMon). Monitoring clients and monitoring servers communicate each other through TCP/IP network. When past data related with a sensor network is requested by users, a monitoring client connects to its database server via TCP/IP network and retrieves those data from it.

3 4. NanoMon Architecture Minimum components of NanoMon are one configuration file, essential five software modules and a database. Users can set GUI components, sensor related information, the database information and connection information to sensor networks just by writing a configuration file. Each software module reads specific parts of the configuration file dedicated to it and adjusts its appearances or creates internal parameters according to them Configuration file A NanoMon configuration file can contain module settings of several sensor network applications to make all of their connections and environment settings to NanoMon at once. Module settings of a specific sensor network application split into four parts: GUI setting part, sensor setting part, database setting part and connection setting part. GUI setting part includes names of plug-in components which will be integrated into the GUI framework when a user selects a specific sensor network application. Sensor setting part includes sensor related information such as names and identifiers of sensor types, measurement units and calibration classes of sensor data used in the sensor network application. Sensor identifiers are numbers to identify sensor types used in the packets received from a sensor network. A calibration class is used to convert sensor readings of a specific sensor to universal engineering units. Database setting part includes database location and user information (user id and password). Connection setting part includes connection type between NanoMon and a sensor network such as RS-232 serial data communication protocol or TCP/IP with their specific parameters. Figure 2 shows the structure of NanoMon configuration file and its example Software Architecture NanoMon is composed of five software modules - GUI integration module, sensor network abstraction module, packet processing module, data management module and connection module. Users can flexibly scale and change the operation of NanoMon according to its specialized sensor network application requirements by using the configuration file. Figure 3 shows the software architecture of NanoMon and its constituting modules. Connection Module connects NanoMon with sensor network via serial data transmission protocols or TCP/IP as specified in the connection setting part of the configuration file. After connection is successfully established, this module forwards received packets from wireless sensor networks to Figure 2. Structure of NanoMon configuration file and its example Figure 3. Software architecture the packet processing module. This module processes connections requests from external monitoring devices which want to receive the information generated from sensor networks connected to NanoMon. Packet Processing Module parses packets received from the connection module according to well-defined packet formats and transmission procedures. This module also sends parsed data to data management module to store them into the database and to sensor network abstraction module to send to GUI module consequently. When external monitoring devices are connected to NanoMon via TCP/IP, this module sends parsed data to these devices in accordance with the well-defined procedure and an XML packet format through the connec-

4 tion module. Data Management Module defines and implements data access interfaces so as to write/read sensor node data to/from the storage specified in the database setting part of the configuration file. All the other modules can access the storage using these data access interfaces. NanoMon provides sensor data history and conditional sensor data searching functions by using this module. Sensor Network Abstraction Module contains information of sensors, nodes, connections between nodes and its data used in the GUI integration module. If user sets receiving mode to live mode in GUI framework, this module provides current sensor network status and the most recent data from sensor nodes, otherwise it contains the past status and data generated for specified period. This module reads the sensor setting parts of the configuration file and then creates sensor objects dynamically and integrates calibration classes. GUI Integration Module creates GUI framework and integrates GUI plug-ins specified in the configuration file into the framework. Users can add and remove plug-ins freely at their needs. Plug-ins can use interfaces provided by a sensor network abstraction module to access information of a sensor network connected with NanoMon. NanoMon basically provides below plug-ins. Topology plug-in visualizes sensor nodes and connections between them. Sensor data plug-in displays accurate sensing value from sensor nodes and data reception time. This plug-in also provides interfaces for searching particular sensor data according to input conditions. Chart plug-in visualizes sensor data using the various types of charts such as line chart, bar chart, and so on. User can dynamically add and remove user-defined charts. Sensor list plug-in displays live sensor nodes and their detailed information such as battery volume, install location, ID, nick name, last sensing value and etc. 5. Communication Protocol with Sink Nodes NanoMon provides well-defined packet format and packet transmission procedure to sink nodes so as to offer sensor network platform independency to users. NanoMon uses binary packets to communicate with sink nodes Transmission procedure Figure 4 shows the packets used to send information and the transmission procedure between a sink and NanoMon. When NanoMon wants to receive information such as sensing data, its network topology and remaining battery volume of constituting sensor nodes from a sensor network, it starts the procedure by sending a MON REQ packet. After receiving the request from NanoMon, the sink node starts to send packets containing WSN information (WSN INFO, WSN DATA, WSN BATTERY) to NanoMon. WSN INFO packet contains sensor network s topology information such as existing sensor nodes, attached sensor types and parent nodes of them. When the topology of a sensor network has changed, its sink node sends a WSN INFOMS packet including the revised topology information. WSN DATAMS packets include sensing data collected from sensor nodes in a WSN. Sink nodes send this type of packets to NanoMon periodically or immediately. A WSN DATAMS packet contains node IDs, sensor types and sensing data. Sensor nodes periodically send battery volume to sink node. And sink nodes send collected battery values to NanoMon using WSN BATTERY packets. If NanoMon doesn t want to receive sensor network information or ends execution, it sends amonclose packet to connected sink nodes. Figure 4. Transmission procedure 5.2. Packet format Figure 5 shows packets and their format used to transfer the information of sensor networks or inform the status (start and close) of a monitoring application. Figure 5-(a) shows the common format of packets used in the NanoMon monitoring framework. All packets must include node ID of a sender and packet type identifier. Figure 5-(b) shows the packets from sink nodes to NanoMon. WSN INFOMS packets include information of sensor nodes composing a specific sensor network

5 such as total number of nodes, each node s ID, node s parent node ID and sensor types of nodes. Sink nodes transmit WSN DATAMS packets to send collected sensing data from sensor nodes. These packets include sensor node s IDs, sensor types and sensing data. WSN BATTERY packets are used to inform battery volume and live state of sensor nodes periodically. WSN BATTERY includes nodes IDs and battery volume. Figure 5-(c) shows the packets from NanoMon to sink nodes. MON REQ and MON CLOSE packets just inform the starting and closing of NanoMon application to sink nodes. These packets include no data field Home monitoring system First, we built a home monitoring system which can collect environmental information of home like temperature, humidity, states of lighting, gas leakage and movement of objects. WSN is comprised of a sink node and seven sensor nodes. Five of sensor nodes are attaching integrated sensor board and the others are attaching infrared ray sensors. Figure 6 shows the configuration file of home monitoring system which specifies sensor information (e.g. types, identifiers, measurement units and calibration classes), plug-in GUI modules, communication protocol between sink node and NanoMon and database information. Figure 6. Home monitoring system Figure 5. Packet formats Figure 7 shows home monitoring system maed of a WSN for environment sensing of home, a sink node collecting sensed information from sensor nodes and NanoMon configured using the above configuration file. 6. Sensor Network Monitoring System Examples We applied NanoMon to two sensor network applications - home monitoring system and parking lot monitoring system. Each system has several sensor nodes, a sink node and NanoMon. Sensor nodes send sensing data and battery volume to a sink node through RF communication. A sink node sends received data and connection information between sensor nodes to NanoMon using serial communication. We used ETRI-SSN and Nano-24[8] board as sensor nodes and NanoQplus as sensor node s OS. ETRI-SSN and Nano-24 board can attach several sensors (or sensor boards) such as temperature, light, humidity, gas, infrared rays and ultrasonic sensors. Temperature, light, humidity and gas sensors are integrated into one sensor board which is called integrated sensor board. Figure 7. Home monitoring system 6.2. Parking lot monitoring system Second, we built a parking lot monitoring system which shows the empty spaces of parking lot. WSN is comprised of ten sensor nodes attaching infrared ray sensor and a sink node. When a car enters a parking space, installed sensor node in this space sends information to the sink node. The sink node forwards this information to NanoMon immediately, and NanoMon displays the total number and position of empty spaces.

6 We added settings of NanoMon for parking lot monitoring system to the configuration file of home monitoring system to concurrently monitor(manage) two systems using one NanoMon application. Figure 8 shows the configuration file including settings of home monitoring system and parking lot monitoring system. Figure 8. Configuration file of parking lot monitoring system Figure 9 shows parking lot monitoring system having sensor nodes for recognizing empty or full spaces of parking lot, a sink node collecting parking lot information from sensor nodes and NanoMon configured using the above configuration file. NanoMon can connect with any of sensor network specified in the configuration file, and monitor current status of selected WSN. We selected parking lot monitoring system in Figure 9 using the upper right combo box of NanoMon. When we select another WSN, NanoMon changes its appearances (plug-in GUI components) and internal parameters (sensor types of WSN, serial parameters for connection with a sink node and etc.) dynamically. 7. Conclusion and perspectives NanoMon provides configuration files for users to set GUI, database, sensor types and desired connection protocol to connect sensor network applications to NanoMon. Users can easily change external appearances as well as internal modules of NanoMon into more adequate forms to interpret the status and data of sensor networks according to their own sensor network applications. The multiple connections support capability of NanoMon to sensor networks and their designated database enables users to switch among several sensor networks and observe current and past status of them. We designed well-defined packet format and transmission procedure so that NanoMon can connect with various sensor network platforms. Currently, we completed the implementation and testing. Testing was performed with real sensor nodes embedding Nano-Qplus platform and its applications. We have a plan to publish NanoMon with Nano-Qplus package. In the near future, we are going to test NanoMon with real sensor network applications composed of a lot of sensor nodes and reinforce its ability by adding sensor network management functions such as remote management of sensor nodes, network performance monitoring functions and so forth. References [1] T. M., Mote-view: A sensor network monitoring and management tool, in proceedings of the 2nd IEEE workshop on embedded Networked Sensors (EmNetS-II), May [2] Crossbow Technology Inc., Surge network viewer. [3] C. Buschmann, D. Pfisterer, and S. Fischer, Spyglass: A wireless sensor network visualizer, in ACM SIGBED review, vol. 2, Jan [4] UC Berkeley, Tinyos. [5] P. Levis, N. Lee, M. Welsh, and D. Culler, Tossim: accurate and scalable simulation of entire tinyos applications, in proceedings of the 1st international conference on embedded networked sensor systems, pp , [6] C. T. Inc., Mica2mote. [7] E. S. research Division of ETRI, Nanoqplus. [8] K.Lee,Y.Shin,H.Choi,andS.Park, Adesignofsensor network system based on scalable and reconfigurable nano-os platform, in IT-Soc International Conference, [9] M. AB., Mysql. Figure 9. Home monitoring system

SpyGlass: A Wireless Sensor Network Visualizer

SpyGlass: A Wireless Sensor Network Visualizer SpyGlass: A Wireless Sensor Network Visualizer Carsten Buschmann Institute for Telematics, University of Lübeck D-23538 Lübeck, Germany, +49 451 500 5384 buschmann@itm.uniluebeck.de Dennis Pfisterer Institute

More information

Data Visualization Tools for WSNs: A Glimpse

Data Visualization Tools for WSNs: A Glimpse Data Visualization Tools for WSNs: A Glimpse Bhawana Parbat School of Studies in C.Sc. & I.T. Pt. Ravishankar Shukla University, Raipur (C.G.), India - 492010 A.K. Dwivedi School of Studies in C.Sc. &

More information

REMOTE TEMPERATURE AND HUMIDITY MONITORING SYSTEM USING WIRELESS SENSOR NETWORKS

REMOTE TEMPERATURE AND HUMIDITY MONITORING SYSTEM USING WIRELESS SENSOR NETWORKS REMOTE TEMPERATURE AND HUMIDITY MONITORING SYSTEM USING WIRELESS SENSOR NETWORKS Varsha jaladi 1, Guthula Ganga Raja Sekhar 2, K.Raghava Rao 3 1 BTech Student, dept. of Electronics and Computers, K L University,

More information

MOTEWORKS. Key Features. Overview

MOTEWORKS. Key Features. Overview MOTEWORKS SOFTWARE PLATFORM MoteWorks 2.0 provides a complete software development environment for wireless sensor network applications. Included is a collection of flexible software packages that enables

More information

Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System

Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System , pp.97-108 http://dx.doi.org/10.14257/ijseia.2014.8.6.08 Designing and Embodiment of Software that Creates Middle Ware for Resource Management in Embedded System Suk Hwan Moon and Cheol sick Lee Department

More information

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 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,

More information

AN EVOLVABLE OPERATING SYSTEM FOR WIRELESS SENSOR NETWORKS

AN EVOLVABLE OPERATING SYSTEM FOR WIRELESS SENSOR NETWORKS AN EVOLVABLE OPERATING SYSTEM FOR WIRELESS SENSOR NETWORKS THU-THUY DO, DAEYOUNG KIM, TOMAS SANCHEZ LOPEZ, HYUNHAK KIM, SEONGKI HONG, MINH-LONG PHAM Information and Communications University, 119 Munjiro,

More information

BROWSER-BASED HOME MONITOR USING ZIGBEE SENSORS

BROWSER-BASED HOME MONITOR USING ZIGBEE SENSORS Review of the Air Force Academy No 2 (24) 2013 BROWSER-BASED HOME MONITOR USING ZIGBEE SENSORS Marian ALEXANDRU, Vlad URSU Transilvania University of Brasov, Romania Abstract: A study of how to implement

More information

Design of a Web-based Application for Wireless Sensor Networks

Design of a Web-based Application for Wireless Sensor Networks Design of a Web-based Application for Wireless Sensor Networks Sajid Hussain, Nick Schofield, and Abdul W. Matin Jodrey School of Computer Science, Acadia University Wolfville, Nova Scotia, Canada {Sajid.Hussain,

More information

Design of Remote data acquisition system based on Internet of Things

Design of Remote data acquisition system based on Internet of Things , pp.32-36 http://dx.doi.org/10.14257/astl.214.79.07 Design of Remote data acquisition system based on Internet of Things NIU Ling Zhou Kou Normal University, Zhoukou 466001,China; Niuling@zknu.edu.cn

More information

DAG based In-Network Aggregation for Sensor Network Monitoring

DAG based In-Network Aggregation for Sensor Network Monitoring DAG based In-Network Aggregation for Sensor Network Monitoring Shinji Motegi, Kiyohito Yoshihara and Hiroki Horiuchi KDDI R&D Laboratories Inc. {motegi, yosshy, hr-horiuchi}@kddilabs.jp Abstract Wireless

More information

Implementation of Real Time Alert System over Cloud Computing

Implementation of Real Time Alert System over Cloud Computing Implementation of Real Time Alert System over Cloud Computing Jaeseok Shim and Yujin Lim 1 University of Suwon {sjs0915, yujin}@suwon.ac.kr Abstract In recent years, cloud computing is becoming popular

More information

Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards

Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards , pp. 143-150 http://dx.doi.org/10.14257/ijseia.2015.9.7.15 Development of Integrated Management System based on Mobile and Cloud Service for Preventing Various Hazards Ryu HyunKi 1, Yeo ChangSub 1, Jeonghyun

More information

Energy Monitoring and Management Technology based on IEEE 802.15. 4g Smart Utility Networks and Mobile Devices

Energy Monitoring and Management Technology based on IEEE 802.15. 4g Smart Utility Networks and Mobile Devices Monitoring and Management Technology based on IEEE 802.15. 4g Smart Utility Networks and Mobile Devices Hyunjeong Lee, Wan-Ki Park, Il-Woo Lee IT Research Section IT Convergence Technology Research Laboratory,

More information

Premium Server Client Software

Premium Server Client Software Premium Server Client Software Server / Client SMSPro & GSMS TH series Get the tools on hand Premium Server is designed to cover most of the applications in the market. It gives a hassle free management

More information

HomeReACT a Tool for Real-time Indoor Environmental Monitoring

HomeReACT a Tool for Real-time Indoor Environmental Monitoring HomeReACT a Tool for Real-time Indoor Environmental Monitoring Tessa Daniel, Elena Gaura, James Brusey Cogent Computing Applied Research Centre Faculty of Engineering and Computing Coventry University,

More information

A Transport Protocol for Multimedia Wireless Sensor Networks

A Transport Protocol for Multimedia Wireless Sensor Networks A Transport Protocol for Multimedia Wireless Sensor Networks Duarte Meneses, António Grilo, Paulo Rogério Pereira 1 NGI'2011: A Transport Protocol for Multimedia Wireless Sensor Networks Introduction Wireless

More information

Semester Thesis Traffic Monitoring in Sensor Networks

Semester Thesis Traffic Monitoring in Sensor Networks Semester Thesis Traffic Monitoring in Sensor Networks Raphael Schmid Departments of Computer Science and Information Technology and Electrical Engineering, ETH Zurich Summer Term 2006 Supervisors: Nicolas

More information

Redundant Serial-to-Ethernet Data Connections for Mission-critical Devices

Redundant Serial-to-Ethernet Data Connections for Mission-critical Devices Redundant Serial-to-Ethernet Data Connections for Mission-critical Devices Daniel Lai, Moxa Product Manager daniel.lai@moxa.com The popularity of serial-to-ethernet technology has increased steadily since

More information

Network Security Administrator

Network Security Administrator Network Security Administrator Course ID ECC600 Course Description This course looks at the network security in defensive view. The ENSA program is designed to provide fundamental skills needed to analyze

More information

Wireless Sensor Network for Continuous Monitoring a Patient s Physiological Conditions Using ZigBee

Wireless Sensor Network for Continuous Monitoring a Patient s Physiological Conditions Using ZigBee Wireless Sensor Network for Continuous Monitoring a Patient s Physiological Conditions Using ZigBee Ramanathan.P ECE-DEPT Pallavan College of Engineering Thimmasamudram, Kanchipuram-631502 Tamilnadu, India

More information

INTERNET OF THE THINGS (IoT): An introduction to wireless sensor networking middleware

INTERNET OF THE THINGS (IoT): An introduction to wireless sensor networking middleware 1 INTERNET OF THE THINGS (IoT): An introduction to wireless sensor networking middleware Dr Antoine Bagula ISAT Laboratory, University of Cape Town, South Africa Goal of the lecture 2 The lecture intends

More information

Research Article ISSN 2277 9140 Copyright by the authors - Licensee IJACIT- Under Creative Commons license 3.0

Research Article ISSN 2277 9140 Copyright by the authors - Licensee IJACIT- Under Creative Commons license 3.0 INTERNATIONAL JOURNAL OF ADVANCES IN COMPUTING AND INFORMATION TECHNOLOGY An international, online, open access, peer reviewed journal Volume 2 Issue 2 April 2013 Research Article ISSN 2277 9140 Copyright

More information

in Health Care and Sensor Networks

in Health Care and Sensor Networks 16 th FFV Workshop Web Services in Health Care and Sensor Networks Fahad Aijaz Department of Communication Networks RWTH Aachen University, Germany FFV Workshop, March 13, 2009 Outline Wireless Sensor

More information

Base Station Design and Architecture for Wireless Sensor Networks

Base Station Design and Architecture for Wireless Sensor Networks Base Station Design and Architecture for Wireless Sensor Networks David Kohanbash*, Abhinav Valada, George Kantor Carnegie Mellon University Robotics Institute, 5000 Forbes Ave, Pittsburgh, PA, 15213 USA

More information

Online Communication of Critical Parameters in Powerplant Using ZIGBEE

Online Communication of Critical Parameters in Powerplant Using ZIGBEE International Journal of Engineering Science Invention Volume 2 Issue 2 ǁ February. 2013 Online Communication of Critical Parameters in Powerplant Using ZIGBEE D.Santhiya 1, R.Renita Priyatharshini 2,K.C.Dhivya

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

A Resilient Device Monitoring System in Collaboration Environments

A Resilient Device Monitoring System in Collaboration Environments , pp.103-114 http://dx.doi.org/10.14257/ijsh.2014.8.5.10 A Resilient Device Monitoring System in Collaboration Environments KeeHyun Park 1 and JongHwi Lee 1 Department of Computer Engineering, Keimyung

More information

A Ubiquitous Model for Wireless Sensor Networks Monitoring

A Ubiquitous Model for Wireless Sensor Networks Monitoring 2012 Sixth International Conference on Innovative Mobile and Internet Services in Ubiquitous Computing A Ubiquitous Model for Wireless Sensor Networks Monitoring André G. F. Elias 1, Joel J. P. C. Rodrigues

More information

International Journal of Advancements in Research & Technology, Volume 3, Issue 4, April-2014 55 ISSN 2278-7763

International Journal of Advancements in Research & Technology, Volume 3, Issue 4, April-2014 55 ISSN 2278-7763 International Journal of Advancements in Research & Technology, Volume 3, Issue 4, April-2014 55 Management of Wireless sensor networks using cloud technology Dipankar Mishra, Department of Electronics,

More information

Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities. Dr. William Kao

Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities. Dr. William Kao Sensor Devices and Sensor Network Applications for the Smart Grid/Smart Cities Dr. William Kao Agenda Introduction - Sensors, Actuators, Transducers Sensor Types, Classification Wireless Sensor Networks

More information

An Intelligent Car Park Management System based on Wireless Sensor Networks

An Intelligent Car Park Management System based on Wireless Sensor Networks An Intelligent Car Park Management System based on Wireless Sensor Networks Vanessa W.S. Tang, Yuan Zheng, Jiannong Cao Internet and Mobile Computing Lab Department of Computing, The Hong Kong Polytechnic

More information

White Paper ClearSCADA Architecture

White Paper ClearSCADA Architecture White Paper ClearSCADA Architecture ClearSCADA has 3 major components or software applications; the ClearSCADA server, a windows client known as, and a web client known as Webx. The software is designed

More information

Network Enabled Battery Health Monitoring System

Network Enabled Battery Health Monitoring System Network Enabled Battery Health Monitoring System Research Team: Fan Yang Zhengyang Liu Supervisor: Advisor: Hanlei Zhang (PhD Student) Wencong Su (PhD Student) Dr. Mo-Yuen Chow Presentation Outline Project

More information

ENHANCED HYBRID FRAMEWORK OF RELIABILITY ANALYSIS FOR SAFETY CRITICAL NETWORK INFRASTRUCTURE

ENHANCED HYBRID FRAMEWORK OF RELIABILITY ANALYSIS FOR SAFETY CRITICAL NETWORK INFRASTRUCTURE ENHANCED HYBRID FRAMEWORK OF RELIABILITY ANALYSIS FOR SAFETY CRITICAL NETWORK INFRASTRUCTURE Chandana Priyanka G. H., Aarthi R. S., Chakaravarthi S., Selvamani K. 2 and Kannan A. 3 Department of Computer

More information

EFFECTIVE QUERY RETRIEVAL SYSTEM IN MOBILE BUSINESS ENVIRONMENT

EFFECTIVE QUERY RETRIEVAL SYSTEM IN MOBILE BUSINESS ENVIRONMENT EFFECTIVE QUERY RETRIEVAL SYSTEM IN MOBILE BUSINESS ENVIRONMENT 1 R.Sivaraman, 2 RM.Chandrasekaran 1 Dy.Director, Center for Convergence of Technologies (CCT), Anna University Tiruchirappalli, Tiruchirappalli,

More information

WebIO Internet connected Wireless Temperature Sensor Monitor and Alert Software

WebIO Internet connected Wireless Temperature Sensor Monitor and Alert Software Page1 WebIO Internet connected Wireless Temperature Sensor Monitor and Alert Software Manual WebIO-TM Beta version 1.20 12/29/2009 The WebIO Temperature Monitor PC software (WebIO-TM) will monitor your

More information

EPMOSt: An Energy-Efficient Passive Monitoring System for Wireless Sensor Networks

EPMOSt: An Energy-Efficient Passive Monitoring System for Wireless Sensor Networks Sensors 2014, 14, 10804-10828; doi:10.3390/s140610804 Article OPEN ACCESS sensors ISSN 1424-8220 www.mdpi.com/journal/sensors EPMOSt: An Energy-Efficient Passive Monitoring System for Wireless Sensor Networks

More information

3-12 Autonomous Access Control among Nodes in Sensor Networks with Security Policies

3-12 Autonomous Access Control among Nodes in Sensor Networks with Security Policies 3-12 Autonomous Access Control among Nodes in Sensor Networks with Security Policies This paper describes a new framework of policy control sensor networks. Sensor networks are shared by various applications,

More information

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide AdRadionet to IBM Bluemix Connectivity Quickstart User Guide Platform: EV-ADRN-WSN-1Z Evaluation Kit, AdRadionet-to-IBM-Bluemix-Connectivity January 20, 2015 Table of Contents Introduction... 3 Things

More information

packet retransmitting based on dynamic route table technology, as shown in fig. 2 and 3.

packet retransmitting based on dynamic route table technology, as shown in fig. 2 and 3. Implementation of an Emulation Environment for Large Scale Network Security Experiments Cui Yimin, Liu Li, Jin Qi, Kuang Xiaohui National Key Laboratory of Science and Technology on Information System

More information

I2C PRESSURE MONITORING THROUGH USB PROTOCOL.

I2C PRESSURE MONITORING THROUGH USB PROTOCOL. I2C PRESSURE MONITORING THROUGH USB PROTOCOL. Product Details: To eradicate human error while taking readings such as upper precision or lower precision Embedded with JAVA Application: Technology Used:

More information

F2103 GPRS DTU USER MANUAL

F2103 GPRS DTU USER MANUAL F2103 GPRS DTU USER MANUAL Add:J1-J2,3rd Floor,No.44,GuanRi Road,SoftWare Park,XiaMen,China 1 Zip Code:361008 Contents Chapter 1 Brief Introduction of Product... 3 1.1 General... 3 1.2 Product Features...

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

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

Niagara IT Manager s Guide

Niagara IT Manager s Guide 3951 Westerre Parkway, Suite 350 Richmond, VA 23233 804.747.4771 Phone 804.747.5204 FAX Niagara IT Manager s Guide A White Paper An IT Manager s Guide to Niagara This document addresses some of the common

More information

Secure data aggregation in mobile sink wireless sensor networks

Secure data aggregation in mobile sink wireless sensor networks Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):2927-2933 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Secure data aggregation in mobile sink wireless

More information

QoS Management in SOAs. Service-Oriented Architectures

QoS Management in SOAs. Service-Oriented Architectures QoS Management in Service-Oriented Architectures PhD progress presentation Gaetano F. Anastasi Scuola Superiore Sant Anna, Pisa, Italy Madrid, November 2010 1 Introduction 2 SOA for Industrial Automation

More information

- Monitoring Array: a seismic or infrasound array, including from 1(4) to 20 Remote Elements (RE) and one Central Recording Facility (CRF).

- Monitoring Array: a seismic or infrasound array, including from 1(4) to 20 Remote Elements (RE) and one Central Recording Facility (CRF). Page 1 of 30 Page 2 of 30 1. Basic terminology - Monitoring Array: a seismic or infrasound array, including from 1(4) to 20 Remote Elements (RE) and one Central Recording Facility (CRF). - Remote Element:

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

Remote Home Security System Based on Wireless Sensor Network Using NS2

Remote Home Security System Based on Wireless Sensor Network Using NS2 Remote Home Security System Based on Wireless Sensor Network Using NS2 #Rajesh Banala 1, Asst.Professor,E-mail: rajesh.banal@gmail.com #D.Upender 2, Asst.Professor, E mail: upender584@gmail.com #Department

More information

TinySDN: Enabling TinyOS to Software-Defined Wireless Sensor Networks

TinySDN: Enabling TinyOS to Software-Defined Wireless Sensor Networks TinySDN: Enabling TinyOS to Software-Defined Wireless Sensor Networks Bruno T. de Oliveira 1, Cíntia B. Margi 1 1 Escola Politécnica Universidade de São Paulo Departamento de Engenharia de Computação e

More information

Portable Gas Analyzer with Wireless Transmission of Gas Concentrations and GPS Coordinates

Portable Gas Analyzer with Wireless Transmission of Gas Concentrations and GPS Coordinates Portable Gas Analyzer with Wireless Transmission of Gas Concentrations and GPS Coordinates Jack Driscoll, Jack Hamm & Nick Hennigar, PID Analyzers, LLC, 780 Corporate Park Dr. Pembroke, MA 0239 Pat Hogan,

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

XBee Wireless Sensor Networks for Temperature Monitoring

XBee Wireless Sensor Networks for Temperature Monitoring XBee Wireless Sensor Networks for Temperature Monitoring Vongsagon Boonsawat, Jurarat Ekchamanonta, Kulwadee Bumrungkhet, and Somsak Kittipiyakul School of Information, Computer, and Communication Technology

More information

Computer Networks. Computer Networks. Telecommunication Links. Connecting. Connecting via Telephone Lines ISDN

Computer Networks. Computer Networks. Telecommunication Links. Connecting. Connecting via Telephone Lines ISDN Chapter 12 Topics: Communication links LAN / WAN Internet / WWW A computer network is a set of independent computer systems interconnected by telecommunication links. CMPUT101 Introduction to Computing

More information

INTELLECT TM Software Package

INTELLECT TM Software Package AxxonSoft INTELLECT TM Software Package Quick Start Guide Version 1.0.0 Moscow 2010 1 Contents CONTENTS... 2 1 INTRODUCTION... 3 1.1 Document purpose... 3 1.2 Purpose of the Intellect software package...

More information

Industrial Networks & Databases

Industrial Networks & Databases Industrial Networks & Databases LONWORKS KNX 1 HVAC and BEMS HVAC - Heating, Ventilation & Air Conditioning BEMS - Building & Energy Management Systems 2 3 4 LONWORKS (Local Operating Networks) Open solution

More information

PANDORA FMS NETWORK DEVICE MONITORING

PANDORA FMS NETWORK DEVICE MONITORING NETWORK DEVICE MONITORING pag. 2 INTRODUCTION This document aims to explain how Pandora FMS is able to monitor all network devices available on the marke such as Routers, Switches, Modems, Access points,

More information

www.mindteck.com 6LoWPAN Technical Overview

www.mindteck.com 6LoWPAN Technical Overview www.mindteck.com 6LoWPAN Technical Overview 6LoWPAN : Slide Index Introduction Acronyms Stack Architecture Stack Layers Applications IETF documents References Confidential Mindteck 2009 2 6LoWPAN - Introduction

More information

Information on Syslog For more information on syslog, see RFC 5424. Released: December 2006 Interoperability issues: None. Table 1: Syslog at a Glance

Information on Syslog For more information on syslog, see RFC 5424. Released: December 2006 Interoperability issues: None. Table 1: Syslog at a Glance Syslog on Spectralink 84-Series Handsets Syslog is a standard for logging data and forwarding log messages in an IP network. You can use syslog to manage and secure devices, and to generate informational,

More information

Fig. 1 BAN Architecture III. ATMEL BOARD

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

More information

A Study of Low Cost Meteorological Monitoring System Based on Wireless Sensor Networks

A Study of Low Cost Meteorological Monitoring System Based on Wireless Sensor Networks , pp.100-104 http://dx.doi.org/10.14257/astl.2014.45.19 A Study of Low Cost Meteorological Monitoring System Based on Wireless Sensor Networks Li Ma 1,2,3, Jingzhou Yan 1,2,Kuo Liao 3,4, Shuangshuang Yan

More information

Developing Network Security Strategies

Developing Network Security Strategies NETE-4635 Computer Network Analysis and Design Developing Network Security Strategies NETE4635 - Computer Network Analysis and Design Slide 1 Network Security Design The 12 Step Program 1. Identify network

More information

Wireless Sensor Network Based Low Power Embedded System Design For Automated Irrigation System Using MSP430

Wireless Sensor Network Based Low Power Embedded System Design For Automated Irrigation System Using MSP430 Wireless Sensor Network Based Low Power Embedded System Design For Automated Irrigation System Using MSP430 Mr. Patil Vikas Anandrao. M Tech. Student (Digital Systems) Rajarambapu Institute of Technology,

More information

An Efficient Hybrid Data Gathering Scheme in Wireless Sensor Networks

An Efficient Hybrid Data Gathering Scheme in Wireless Sensor Networks An Efficient Hybrid Data Gathering Scheme in Wireless Sensor Networks Ayon Chakraborty 1, Swarup Kumar Mitra 2, and M.K. Naskar 3 1 Department of CSE, Jadavpur University, Kolkata, India 2 Department of

More information

Internet of Things 2015/2016

Internet of Things 2015/2016 Internet of Things 2015/2016 The Things Johan Lukkien John Carpenter, 1982 1 What makes up the IoT? IoT versus WSN What are examples? Guiding questions 2 Some definitions of IoT (march 2015) Whatis.com:

More information

3.1 TELECOMMUNICATIONS, NETWORKS AND THE INTERNET

3.1 TELECOMMUNICATIONS, NETWORKS AND THE INTERNET 3.1 TELECOMMUNICATIONS, NETWORKS AND THE INTERNET The Business Value of Telecommunications and Networking Business value impacts of the telecommunications and Networking are: Declining transaction costs

More information

Dong-Joo Kang* Dong-Kyun Kang** Balho H. Kim***

Dong-Joo Kang* Dong-Kyun Kang** Balho H. Kim*** Visualization Issues of Mass Data for Efficient HMI Design on Control System in Electric Power Industry Visualization in Computerized Operation & Simulation Tools Dong-Joo Kang* Dong-Kyun Kang** Balho

More information

Fast remote data access for control of TCP/IP network using android Mobile device

Fast remote data access for control of TCP/IP network using android Mobile device RESEARCH ARTICLE OPEN ACCESS Fast remote data access for control of TCP/IP network using android Mobile device Vaibhav Muddebihalkar *, R.M Gaudar** (Department of Computer Engineering, MIT AOE Alandi

More information

EXPLORER. TFT Filter CONFIGURATION

EXPLORER. TFT Filter CONFIGURATION EXPLORER TFT Filter Configuration Page 1 of 9 EXPLORER TFT Filter CONFIGURATION Thrane & Thrane Author: HenrikMøller Rev. PA4 Page 1 6/15/2006 EXPLORER TFT Filter Configuration Page 2 of 9 1 Table of Content

More information

OIL PRESS 71.8 PSI FUEL. Cloud based, diagnostic, engine monitoring and reporting system. www.faria-instruments.com www.beede.com

OIL PRESS 71.8 PSI FUEL. Cloud based, diagnostic, engine monitoring and reporting system. www.faria-instruments.com www.beede.com OIL PRESS 71.8 PSI Cloud based, diagnostic, engine monitoring and reporting system www.faria-instruments.com www.beede.com Start Updating Send Data The Faria EntelNet service is a multi part system which

More information

Ultimate Server Client Software

Ultimate Server Client Software Ultimate Server Client Software GPRS NET Data Logger Ul mate Server is dedicatedly developed for high volume data applica on. 1. Receive data from Data Loggers in UDP or TCP via GPRS, Ethernet and SMS

More information

Follow these steps to prepare the module and evaluation board for testing.

Follow these steps to prepare the module and evaluation board for testing. 2 Getting Started 2.1. Hardware Installation Procedure Follow these steps to prepare the module and evaluation board for testing. STEP1: Plug the EG-SR-7100A module into the sockets on the test board.

More information

The Interoperability of Wireless Sensor Networks

The Interoperability of Wireless Sensor Networks The Interoperability of Wireless Sensor Networks Daniela Ballari, Miguel Angel Manso-Callejo, Monica Wachowicz Technical University of Madrid daniela@topografia.upm.es; m.manso@upm.es; m.wachowicz@topografia.upm.es

More information

Sensor network infrastructure for intelligent building monitoring and management system

Sensor network infrastructure for intelligent building monitoring and management system Sensor network infrastructure for intelligent building monitoring and management system 1 R.VENKATESH, 2 K.RADHA, 3 M.GANTHIMATHI 1.B.E-CSE, Muthayammal Engineering College, Rasipuram. 2. Assistant Professor

More information

Flexible Architecture for Internet of Things Utilizing an Local Manager

Flexible Architecture for Internet of Things Utilizing an Local Manager , pp.235-248 http://dx.doi.org/10.14257/ijfgcn.2014.7.1.24 Flexible Architecture for Internet of Things Utilizing an Local Manager Patrik Huss, Niklas Wigertz, Jingcheng Zhang, Allan Huynh, Qinzhong Ye

More information

Open Access Research and Design for Mobile Terminal-Based on Smart Home System

Open Access Research and Design for Mobile Terminal-Based on Smart Home System Send Orders for Reprints to reprints@benthamscience.ae The Open Automation and Control Systems Journal, 2015, 7, 479-484 479 Open Access Research and Design for Mobile Terminal-Based on Smart Home System

More information

How To Test In Tinyos With Unit Test (Forum) On A Microsoft Microsoft Computer (Forums) On An Ipa (Forms) On Your Computer Or Microsoft Macbook (Forims) On The Network (For

How To Test In Tinyos With Unit Test (Forum) On A Microsoft Microsoft Computer (Forums) On An Ipa (Forms) On Your Computer Or Microsoft Macbook (Forims) On The Network (For Unit Testing for Wireless Sensor Networks Michael Okola Computer Science Department University of Virginia Charlottesville, Virginia okola@virginia.edu Kamin Whitehouse Computer Science Department University

More information

Cloud-based Distribute Processing of User-Customized Mobile Interface in U-Sensor Network Environment

Cloud-based Distribute Processing of User-Customized Mobile Interface in U-Sensor Network Environment , pp.18-22 http://dx.doi.org/10.14257/astl.2013.42.05 Cloud-based Distribute Processing of User-Customized Mobile Interface in U-Sensor Network Environment Changhee Cho 1, Sanghyun Park 2, Jadhav Yogiraj

More information

SNMP Web card. User s Manual. Management Software for Uninterruptible Power Supply Systems

SNMP Web card. User s Manual. Management Software for Uninterruptible Power Supply Systems SNMP Web card User s Manual Management Software for Uninterruptible Power Supply Systems Table of Contents 1. Overview... 3 1.1 Introduction... 3 1.2 Features... 3 1.3 Overlook... 3 1.4 Installation and

More information

A NOVEL OVERLAY IDS FOR WIRELESS SENSOR NETWORKS

A NOVEL OVERLAY IDS FOR WIRELESS SENSOR NETWORKS A NOVEL OVERLAY IDS FOR WIRELESS SENSOR NETWORKS Sumanta Saha, Md. Safiqul Islam, Md. Sakhawat Hossen School of Information and Communication Technology The Royal Institute of Technology (KTH) Stockholm,

More information

Energy Effective Routing Protocol for Maximizing Network Lifetime of WSN

Energy Effective Routing Protocol for Maximizing Network Lifetime of WSN Energy Effective Routing Protocol for Maximizing Network Lifetime of WSN Rachana Ballal 1, S.Girish 2 4 th sem M.tech, Dept.of CS&E, Sahyadri College of Engineering and Management, Adyar, Mangalore, India

More information

TimePictra Release 10.0

TimePictra Release 10.0 DATA SHEET Release 100 Next Generation Synchronization System Key Features Web-based multi-tier software architecture Comprehensive FCAPS management functions Software options for advanced FCAPS features

More information

Figure 1. The Example of ZigBee AODV Algorithm

Figure 1. The Example of ZigBee AODV Algorithm TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.2, February 2014, pp. 1528 ~ 1535 DOI: http://dx.doi.org/10.11591/telkomnika.v12i2.3576 1528 Improving ZigBee AODV Mesh Routing Algorithm

More information

Charith Pereral, Arkady Zaslavsky, Peter Christen, Ali Salehi and Dimitrios Georgakopoulos (IEEE 2012) Presented By- Anusha Sekar

Charith Pereral, Arkady Zaslavsky, Peter Christen, Ali Salehi and Dimitrios Georgakopoulos (IEEE 2012) Presented By- Anusha Sekar Charith Pereral, Arkady Zaslavsky, Peter Christen, Ali Salehi and Dimitrios Georgakopoulos (IEEE 2012) Presented By- Anusha Sekar Introduction Terms and Concepts Mobile Sensors Global Sensor Networks DAM4GSN

More information

A Surveillance Robot with Climbing Capabilities for Home Security

A Surveillance Robot with Climbing Capabilities for Home Security 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. 2, Issue. 11, November 2013,

More information

A Secure Intrusion detection system against DDOS attack in Wireless Mobile Ad-hoc Network Abstract

A Secure Intrusion detection system against DDOS attack in Wireless Mobile Ad-hoc Network Abstract A Secure Intrusion detection system against DDOS attack in Wireless Mobile Ad-hoc Network Abstract Wireless Mobile ad-hoc network (MANET) is an emerging technology and have great strength to be applied

More information

Monitoring MySQL database with Verax NMS

Monitoring MySQL database with Verax NMS Monitoring MySQL database with Verax NMS Table of contents Abstract... 3 1. Adding MySQL database to device inventory... 4 2. Adding sensors for MySQL database... 7 3. Adding performance counters for MySQL

More information

WJEC GCSE in Computer Science Computer Science Microsoft IT Academy Mapping

WJEC GCSE in Computer Science Computer Science Microsoft IT Academy Mapping WJEC GCSE in Computer Science Computer Science Microsoft IT Academy Mapping 1. Computer Systems 1.1 Identify and describe computer systems Windows Server Administration Fundamentals: Lesson 1 Server Overview

More information

Consecutive Geographic Multicasting Protocol in Large-Scale Wireless Sensor Networks

Consecutive Geographic Multicasting Protocol in Large-Scale Wireless Sensor Networks 21st Annual IEEE International Symposium on Personal, Indoor and Mobile Radio Communications Consecutive Geographic Multicasting Protocol in Large-Scale Wireless Sensor Networks Jeongcheol Lee, Euisin

More information

TYLER JUNIOR COLLEGE School of Continuing Studies 1530 SSW Loop 323 Tyler, TX 75701 1.800.298.5226 www.tjc.edu/continuingstudies/mycaa

TYLER JUNIOR COLLEGE School of Continuing Studies 1530 SSW Loop 323 Tyler, TX 75701 1.800.298.5226 www.tjc.edu/continuingstudies/mycaa TYLER JUNIOR COLLEGE School of Continuing Studies 1530 SSW Loop 323 Tyler, TX 75701 1.800.298.5226 www.tjc.edu/continuingstudies/mycaa Education & Training Plan CompTIA N+ Specialist Program Student Full

More information

Cisco ROSA Video Service Manager (VSM) Version 05.03

Cisco ROSA Video Service Manager (VSM) Version 05.03 Data Sheet Cisco ROSA Video Service Manager (VSM) Version 05.03 The Cisco ROSA Video Service Management (VSM) system provides service providers with a complete, powerful solution for the management of

More information

VM600 CMS Software. VM600 Series Software for Condition Monitoring System (CMS) FEATURES DESCRIPTION

VM600 CMS Software. VM600 Series Software for Condition Monitoring System (CMS) FEATURES DESCRIPTION VM600 Series Software for Condition Monitoring System (CMS) FEATURES Configuration and operation of VM600 hardware (CMC16 and IOC16T cards) Automatic data acquisition and storage Limit exceedance checking

More information

SNMP Web Management. User s Manual For SNMP Web Card/Box

SNMP Web Management. User s Manual For SNMP Web Card/Box SNMP Web Management User s Manual For SNMP Web Card/Box Management Software for Off-Grid Inverter Version: 1.2 Table of Contents 1. Overview... 1 1.1 Introduction... 1 1.2 Features... 1 1.3 Overlook...

More information

SCADA and Monitoring for Solar Energy Plant

SCADA and Monitoring for Solar Energy Plant SCADA and Monitoring for Solar Energy Plant Segment: Industry Country: Thailand Author: Ranon Satitpanyapan Products: NI LabVIEW with LabVIEW Real-Time Module crio Real-Time controller 8 slot with 16 current

More information

Cloud Storage Solution for WSN Based on Internet Innovation Union

Cloud Storage Solution for WSN Based on Internet Innovation Union Cloud Storage Solution for WSN Based on Internet Innovation Union Tongrang Fan 1, Xuan Zhang 1, Feng Gao 1 1 School of Information Science and Technology, Shijiazhuang Tiedao University, Shijiazhuang,

More information

Establishing a Wireless Sensor Network to Monitor the Temperature in a two storied building

Establishing a Wireless Sensor Network to Monitor the Temperature in a two storied building Establishing a Wireless Sensor Network to Monitor the Temperature in a two storied building Subramanya Bhat. M. 1, Jyothi. V. 2, Devaraju. J.T. 3 Associate Professor, Dept. of Electronics, Vijaya College,

More information

A Study of the Design of Wireless Medical Sensor Network based u- Healthcare System

A Study of the Design of Wireless Medical Sensor Network based u- Healthcare System , pp.91-96 http://dx.doi.org/10.14257/ijbsbt.2014.6.3.11 A Study of the Design of Wireless Medical Sensor Network based u- Healthcare System Ronnie D. Caytiles and Sungwon Park 1* 1 Hannam University 133

More information

DEVELOPMENT OF INDIVIDUAL HOME SECURITY SYSTEM USING CAN AND ZIGBEE PROTOCOL

DEVELOPMENT OF INDIVIDUAL HOME SECURITY SYSTEM USING CAN AND ZIGBEE PROTOCOL DEVELOPMENT OF INDIVIDUAL HOME SECURITY SYSTEM USING CAN AND ZIGBEE PROTOCOL P.Mohan 1, M. Vinoth Kumar 2 1 PG Scholar, Masters Degree in Embedded System Technologies, Rajiv Gandhi College of Engineering,

More information