Projectwork Mobile Services

Size: px
Start display at page:

Download "Projectwork Mobile Services"

Transcription

1 Projectwork Mobile Services HMCS House Mobile Control System Valentin Ioan Tincas Jürgen Innerkofler 2007/2008

2 Project description:... 3 Used hardware components:... 3 Software implementation... 4 Communication protocol and technique... 4 Example:... 4 Mobile phone J2Me application... 5 Description... 5 Installing the java application... 8 Control unit CoDeSys application... 9 Description... 9 Implementation... 9 Problems and solution List of literature Used programs

3 Project description: The aim of the project is to create an application for a mobile phone using J2ME. This application provides a GUI to control the state your home (lights and heater). Also the application will be able to receive an alarm from the system located in the house (window and door event). Image 1: basic system scheme shows the demonstration set up with its components The home system is composed by the TTControl ECU (electrical control unit) a Siemens GSM module. States of heaters and lights are represented by some LEDs(Light emitting diods). Home switches to turn on the lights are simulated by buttons. In addition two buttons will simulate security sensors which monitor door or window events Used hardware components: Component Purpose Quantity Provided from Mobile phone run the control application 1 personal Control unit TTC-Vision implements home control system 1 TTControl Srl. GSM Module Siemens MC35i GSM connection from TTC-Vision 1 TTControl Srl. Wind SIM card needed for GSM module 1 personal Battery Packs LiPo 3s VSS DC Supply control unit 2 personal LED 12V simulate physical lights and heater 8 personal Electric button light switch 6 personal Electric button simulate alarm events (door, window) 2 personal Circuit board mount the electrical components 1 personal Table 1: Hardware component list 3

4 Software implementation Communication protocol and technique The information transfer is implemented using SMS (short message service) in text mode. The first five characters of the message form the code word -HMCS* and inform the applications that the message belongs to the Mobile House Control System. In this case further evaluations of the message content are processed and proper actions performed. Incoming SMS include additional header information which is stored in the next 1-2 characters. -HMCS* = this message belongs to the HMCS application -HMCS*RS =request state -HMCS*A = allarm information states are stored in following characters -HMCS*R = answer caused by a request state sms states are stored in following characters The information of the light and heater states are stored in a very simple way. A majuscule letter signalises that the proper entity is ON and a minuscule letter signalises the OFF state. The letter L implies that the light is switched on. Example: The content of the following SMS is send to the home system: -HMCS*LllLhHHh After receiving and decoding the SMS, the system will set the signal LED s according to the evaluated string which follows HMCS*. The next picture will show the resulting LED states Image 2: Example LED visualization of the models interface Note: All SMS are sent on a specified port. This is needed to wake the application up if a alarm SMS is received at the cell phone. The related part of the mobile phone operating system is called push registry. 4

5 Mobile phone J2Me application Description While working for our application we faced the port communication problem as the GSM module sends a regular SMS without specifying the port which the message should be sent to. That s why we implemented two versions of our application. 1. HomeMobileControlSystemMC35i (j2me application to GSM Module Siemens MC35i communication) The application provides a GUI to set the values of lights heaters in an appealing way. Accessing the menu Options allows the user to perform the action Ask Status which means sending this kind of code to the module: -HMCS*RS. As a consequence the application sends a SMS with the code word -HMCS*R to the preset HouseSystem phone number. After some time the requested states are sent via SMS from the system according to the specified protocol. Another action that is possible to be performed from the application is Send SMS which sends to the MC35i module the user options about the lights and heaters states. The leds at the module side are set up according to such message received. All SMS sent between this versions of the application and the module are regular messages sent to phone number and no port specified. Also in this version of the j2me application the phone number which the message is to be sent to, is represented by a StringItem object so cannot be changed at user interface. As at the GSM module side are 8 leds we have 8 ChoiceGroup objects on the user interface. Image 3: J2ME MC35i application GUI Image 4: J2ME MC35i application menu options This version of the application was tested with NetBeans IDE 6.0.1, Wireless Toolkit via OTA, on Nokia 5300 and Motorola W510. Works from real phone device. No port implemented. 5

6 2. HomeMobileControlSystem (j2me application to j2me application communication) As a difference from the previous described version now the interface uses Gauge objects to represent heaters. Another thing which is different is that the user is able to send a door or window event. Also different is the Ask Status code word -HMCS*Q. Image 5: J2ME application GUI Image 6: J2ME application menu options For this version of application we chose port In general for communication the ports from to are available for sending and receiving SMS. Using this port we implemented static push registry (.jad file modification) behaviour of application. This results in the fact that each time an sms is sent from the application to some mobile terminal which also has the application installed, even if not running HomeMobileControlSystem wakes up and handles the messages arriving at port (Wireless Toolkit > Run via OTA) Image 7: The application Sends SMS Image 8: The receiver updates the UI 6

7 In this way the application interface is updated each time a message is received at port For instance if we choose Ask status from the menu the request is sent to the chosen mobile terminal which answers back with another sms which will update the interface of the application which asked the status. Image 9: Asks Status Image 10: automatically replyes Image 11: UI updated Image 12: sent the status Information or warning alerts are used for all sms whether sent or received. This version of the application was tested with NetBeans IDE 6.0.1, Wireless Toolkit via OTA, on Nokia 5300 and Motorola W510 and worked fine. 7

8 Implementation The midlet HMCSMIDlet creates UI, starts receiving thread and the sending sms thread. The Sender class is used for sending sms only. MID Profile interfaces and classes used in the project: javax.microedition.io.connection; javax.microedition.lcdui. CommandListener, Alert, ChoiceGroup, Display, Form, Gauge, Item, TextBox, TextField; javax.microedition.midlet.midlet; The Wireless Messaging API javax.wireless.messaging.message. Other: Java.lang.Runnable. Image 13: Implementation diagram Installing the java application On Wireless Toolkit Copy HomeMobileControlSystem folder to C:\Users\<USERNAME>\j2mewtk\2.5.2\apps. Start Wireless Toolkit > Project > Run via OTA > select Install Application in the emulator and follow all the steps until installation is complete. (This is recommended.) Start Wireless Toolkit > Project > Run (in this case the push registry feature cannot be observed). On a real device Copy the HomeMobileControlSystem/bin/HomeMobileControlSystem.jad and HomeMobileControlSystem/bin/HomeMobileControlSystem.jar files from computer in one folder to the mobile phone using an usb cable and perform a standard installation of a java application. This is similar to the installation done when running on Wireless Toolkit via OTA but can differ from one device to another. The HomeMobileControlSystemMC35i is the project version used from phone to MC35i GSM module and it doesn t work on emulator. 8

9 Control unit CoDeSys application Description The control unit is programmed using CoDeSys programming environment and the included structured text language. The main tasks are the handling of the input switches and output ports as well as reading the SMS slots of the GSM module. If a SMS has to be send a outgoing SMS event is scheduled and processed at the next call of the HandleSmsEvent function. The system is designed to simulate the behaviour of a house with lights, heaters and two alarm sensors as mentioned in the project description Implementation Since the main task of the Project is the J2ME development, we will just give the following basic information The control unit has a cycle time of 10ms. That means the program code is executed each cycle and in case that more then 10ms are needed to compute the program (serial communication) the next 10ms are assigned to the computation. Reading input switches and setting output switches is done each time the code is executed. Checking the SMS storage slot of the GSM module and decoding the content as well as sending SMS are handled at different time slices. The time slices duration is 200 ms and is needed to give the GSM module some computation time to process the requests. Image 14: basic flow diagram of the CoDeSys application on the TTCVision 9

10 Problems and solution The our implementation of the GSM modules functionality isnt able to specify a SMS port number. The push registry feature of phones which support J2ME applications can only intercept SMS messages on a specific port. As a consequence any SMS from the GSM module couldn t be captured. So the application cant recive and evaluate SMS messages from the house system. The solution of this problem could be the next investigation to improve the system. Using binary SMS message transfer might solve the problem. List of literature [1] Mobile Services Handouts, Lecturer: Francesco Ricci [2] Sing Li and Jonathan Knudsen, Beginning J2ME, (3rd Ed.) Apress, 2005 [3] MC35i_ATC_V01.03.pdf - AT-Commands for modems Used programs (1) NetBeans IDE (2) CoDeSys 3.0 [3S] (3) Wireless Toolkit

Mobile Information Device Profile (MIDP) Alessandro Cogliati. Helsinki University of Technology Telecommunications Software and Multimedia Laboratory

Mobile Information Device Profile (MIDP) Alessandro Cogliati. Helsinki University of Technology Telecommunications Software and Multimedia Laboratory Multimedia T-111.5350 Mobile Information Device Profile (MIDP) Alessandro Cogliati Helsinki University of Technology Telecommunications Software and Multimedia Laboratory 1 Outline Java Overview (Editions/Configurations/Profiles)

More information

Sortware Comprehension and Μaintenance

Sortware Comprehension and Μaintenance Department of Management and Technology Sortware Comprehension and Μaintenance Wireless IRC project Design of a new feature Wireless Irc s Design Presentation Brief explanation of Midlet Suites function

More information

Mobile Application Development. J2ME - Forms

Mobile Application Development. J2ME - Forms Mobile Application Development J2ME - Forms Dr. Christelle Scharff cscharff@pace.edu Pace University, USA http://mobilesenegal.com Objectives Understand and manipulate: Display Displayable Command Form

More information

Task Manager for Courier Service (A Mobile Application)

Task Manager for Courier Service (A Mobile Application) Course Project Report Internet & Mobile Services Prof. Francesco Ricci Winter Semester 2009/2010 Free University of Bozen-Bolzano Task Manager for Courier Service (A Mobile Application) Kosumo (8503) R.

More information

GSM HOME SECURITY SYSTEM

GSM HOME SECURITY SYSTEM Cell /Mobile phone home security system GSM HOME SECURITY SYSTEM Model : BS120 TABLE OF CONTENTS 1. FEATURES... 1 2. APPLICATION... 2 3. SPECIFICATIONS... 3 4. FRONT PANEL & LAYOUT DESCRIPTION...6 5. BASIC

More information

Acknowledgments Introduction p. 1 The Wireless Internet Revolution p. 1 Why Java Technology for Wireless Devices? p. 2 A Bit of History p.

Acknowledgments Introduction p. 1 The Wireless Internet Revolution p. 1 Why Java Technology for Wireless Devices? p. 2 A Bit of History p. Figures p. xiii Foreword p. xv Preface p. xvii Acknowledgments p. xxi Introduction p. 1 The Wireless Internet Revolution p. 1 Why Java Technology for Wireless Devices? p. 2 A Bit of History p. 3 J2ME Standardization

More information

Activation of Home Automation System via Mobile Technology

Activation of Home Automation System via Mobile Technology Activation of Home Automation System via Mobile Technology M J Van Der Werff 1 W L Xu 2 X Gui 3 1 Institute of Technology and Engineering College of Sciences, Massey University Palmerston North, New Zealand.

More information

Petr Suchomel Architect, NetBeans Mobility

Petr Suchomel Architect, NetBeans Mobility NetBeans 6.0 A Fresh Look into Java Development Petr Suchomel Architect, NetBeans Mobility Sun Microsystems Agenda The NetBeans IDE, Platform, Community What's new in NetBeans 6.0 Quick look over NetBeans

More information

Mobile Application Development. Introduction. Dr. Christelle Scharff Pace University, USA

Mobile Application Development. Introduction. Dr. Christelle Scharff Pace University, USA Mobile Application Development Introduction Dr. Christelle Scharff cscharff@pace.edu Pace University, USA Objectives Getting an overview of the mobile phone market, its possibilities and weaknesses Providing

More information

ProCon GSM INSTALLATION AND APPLICATION MANUAL. ProCon GSM manual. .gsm-komunikatorji.com. for module version 1.4

ProCon GSM INSTALLATION AND APPLICATION MANUAL. ProCon GSM manual. .gsm-komunikatorji.com. for module version 1.4 informacije in naročila: info@gsm-komunikatorji.com.gsm-komunikatorji.com ProCon GSM INSTALLATION AND APPLICATION MANUAL for module version 1.4 1 Index I. Basic descriptions... 3 II. Steps of installation...

More information

BlueSense Final Report

BlueSense Final Report BlueSense - Project Final Report 1 BlueSense Final Report Hypheng Lim hypheng@gwu.edu CSCI297 2007-04-24 Project Abstract The goal of this project is to establish a wireless bluetooth communications channel

More information

BVRIT HYDERABAD College of Engineering for Women Department of Information Technology. Hand Out

BVRIT HYDERABAD College of Engineering for Women Department of Information Technology. Hand Out BVRIT HYDERABAD College of Engineering for Women Department of Information Technology Hand Out Subject Name: Mobile Application Development Prepared by: 1. S. Rama Devi, Assistant Professor, IT Year and

More information

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide

Cinterion BGS2T (RS232) Terminal Starter Kit. Getting Started Guide Cinterion BGS2T (RS232) Terminal Starter Kit Getting Started Guide BGS2T (RS232) Terminal Starter Kit Contents PLEASE NOTE KIT CONTENTS MAY VARY ACCORDING TO ORIGIN AND THE INTENDED COUNTRY OF OPERATION

More information

DAY 3 J2ME Aalborg University, Mobile Device Group. Mobile. Mobile Phone Programming

DAY 3 J2ME Aalborg University, Mobile Device Group. Mobile. Mobile Phone Programming DAY 3 J2ME Mobile Phone Programming Java 2 Micro Edition (J2ME) Overview Introduction J2ME architecture MIDlets Application development Introduction J2ME Key Factors Portability: Write once run anywhere

More information

Who am I? Wireless Online Game Development for Mobile Device. What games can you make after this course? Are you take the right course?

Who am I? Wireless Online Game Development for Mobile Device. What games can you make after this course? Are you take the right course? Who am I? Wireless Online Game Development for Mobile Device Lo Chi Wing, Peter Lesson 1 Email: Peter@Peter-Lo.com I123-1-A@Peter Lo 2007 1 I123-1-A@Peter Lo 2007 2 Are you take the right course? This

More information

CM0256 Pervasive Computing

CM0256 Pervasive Computing CM0256 Pervasive Computing Lecture 17 Software Development Approaches Tom Goodale t.r.goodale@cs.cardiff.ac.uk Lecture Outline In this lecture we: J2ME applications Palm. Device Limitations Limited Power

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 INFORMATIONTECHOGY TUTORIAL QUESTION BANK ACADEMIC YEAR - 2018-19 Course Title Mobile Application Development Course Code

More information

LAB-6340: Advanced Java ME Programming - Streaming Video From Server to Your Device

LAB-6340: Advanced Java ME Programming - Streaming Video From Server to Your Device LAB-6340: Advanced Java ME Programming - Streaming Video From Server to Your Device Lukas Hasik, Fabiola Galleros Rios Software Engineer, Mobility Pack QE Sun Microsystems Inc. http://www.sun.com 2007

More information

MEITRACK MVT340 User Guide

MEITRACK MVT340 User Guide MEITRACK MVT340 User Guide Change History File Name MEITRACK MVT340 User Guide Created By Kyle Lv Project MVT340 Creation Date Update Date 2010-08-24 2017-03-23 Subproject User Guide Total Pages 12 Version

More information

Objects. Phone. Programming. Mobile DAY 3 J2ME. Module 2. In real world: object is your car, your bicycle, your cat.. Object has state and behavior

Objects. Phone. Programming. Mobile DAY 3 J2ME. Module 2. In real world: object is your car, your bicycle, your cat.. Object has state and behavior DAY 3 J2ME Mobile Phone Programming Module 2 J2ME DAY 3 in aj2me nutshell Objects In real world: object is your car, your bicycle, your cat.. Object has state and behavior State: variables (car: color,

More information

Mobile Station Execution Environment (MExE( MExE) Developing web applications for PDAs and Cellphones. WAP (Wireless Application Protocol)

Mobile Station Execution Environment (MExE( MExE) Developing web applications for PDAs and Cellphones. WAP (Wireless Application Protocol) Developing web applications for PDAs and Cellphones Mobile Station Execution Environment (MExE( MExE) MExE is a standard for defining various levels of wireless communication These levels are called classmarks

More information

TELTONIKA ModemCOM (TMC-10x) User Manual V

TELTONIKA ModemCOM (TMC-10x) User Manual V TELTONIKA ModemCOM (TMC-10x) User Manual V2.1.1.18 TABLE OF CONTENTS ATTENTION!...3 LEGAL NOTICE...3 INTRODUCTION...4 1. PACKAGE CONTENTS...5 2. TECHNICAL SPECIFICATIONS...6 2.1. Data transferring...6

More information

QK-G031 Temperature GSM Remote Controller

QK-G031 Temperature GSM Remote Controller QK-G031 Temperature GSM Remote Controller Features Remote control from mobile phones Remote temperature monitoring and control Android APP interface Easy to install and configure (no PC required) Up to

More information

Quick Start Guide. Data Logger TrueLog100

Quick Start Guide. Data Logger TrueLog100 Quick Start Guide Data Logger TrueLog100 Antenna Port 3 Port 4 1 1 1 1 Port 1 1 Port 2 RSSI PC Measure SIM + Battery + Solar Power Supply Figure 1: Top view of the data logger TrueLog100. All ports and

More information

DATA LOGGER GEOLOGGER G8 PLUS

DATA LOGGER GEOLOGGER G8 PLUS A D V A C E D DATA LOGGER GEOLOGGER G8 PLUS I N S T CONFIGURATION & WIRING OF PERIPHERALS R U C T I O N M A N U A L 1 CONTENTS DESCRIPTION PAGE Main components 3 G8 Module Connections 4 G8 Module Connections

More information

Wireless Internet Platform for Interoperability (WIPI(

Wireless Internet Platform for Interoperability (WIPI( for Interoperability (( ) on Linux 11-12 July, 2005 Jae-Ho Lee Team, ETRI 1 LINUX + Deficiency of contents running on smartphone, compared with existing mobile phone Porting the sharable mobile platform

More information

IP68. Autarkic Data Loggers - MT-051 / MT-713 / MT-723

IP68. Autarkic Data Loggers - MT-051 / MT-713 / MT-723 Autarkic Data Loggers - MT-051 / MT-713 / MT-723 Use in the most demanding environments These data loggers are designed for use in difficult to reach and widely distributed locations. In places where neither

More information

Mitel MiContact Center Enterprise SMS GATEWAY USER GUIDE. Release 9.2

Mitel MiContact Center Enterprise SMS GATEWAY USER GUIDE. Release 9.2 Mitel MiContact Center Enterprise SMS GATEWAY USER GUIDE Release 9.2 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Networks

More information

Nokia E61i support

Nokia E61i  support Nokia E61i Nokia E61i Legal Notice Copyright Nokia 2007. All rights reserved. Reproduction, transfer, distribution or storage of part or all of the contents in this document in any form without the prior

More information

TELTONIKA ModemCOM/G10 (CM1100) User Manual V0.1

TELTONIKA ModemCOM/G10 (CM1100) User Manual V0.1 TELTONIKA ModemCOM/G10 (CM1100) User Manual V0.1 Table of Contents TABLE OF CONTENTS...2 1. ATTENTION...3 2. SAFETY INSTRUCTION...3 3. LEGAL NOTICE...5 4. INTRODUCTION...5 5. PACKAGE CONTENTS...5 6. TECHNICAL

More information

Java 2 Micro Edition Server socket and SMS

Java 2 Micro Edition Server socket and SMS Java 2 Micro Edition Server socket and SMS F. Ricci Content Other Connection Types Responding to Incoming Connections Security Permissions Security domains Midlet signing Wireless Messaging Responding

More information

PSTN-GSM Line Converter

PSTN-GSM Line Converter PSTN-GSM Line Converter Installer s Handbook Version 1.1 Table of Contents 1. Introduction... 3 2. Installation... 3 2.1. Power Supply... 3 2.2. Analogue telephone line.... 4 2.3. Status LED... 4 2.4.

More information

SMS-100 SMS GSM Messenger System

SMS-100 SMS GSM Messenger System SMS-100 SMS GSM Messenger System For Windows XP and Windows 7 Headquarters : No.3, Lane 201, Chien Fu St., Chyan Jenn Dist., Kaohsiung, TAIWAN Tel : + 886-7-8121771 Fax : + 886-7-8121775 URL : http://www.kutai.com.tw

More information

WIRING DIAGRAMS NVIROMON NDCNTRLRS485. Remote Environmental Monitoring and Control for IT equipment. NVIROMON

WIRING DIAGRAMS NVIROMON NDCNTRLRS485. Remote Environmental Monitoring and Control for IT equipment. NVIROMON WIRING DIAGRAMS NVIROMON Remote Environmental Monitoring and Control for IT equipment. NVIROMON NDCNTRLRS485 Installation and wiring of NVIROMON system Items Quantity Equipment 1 NVIROMON unit 2 Temperature

More information

JUGAT meeting. Roman Waitz Development. MATERNA Information & Communications

JUGAT meeting. Roman Waitz Development. MATERNA Information & Communications JUGAT meeting Roman Waitz Development MATERNA Information & Communications 22/04/2002 Agenda +What the J2ME Platform is +How to build and deploy J2MEbased wireless applications +J2ME programming techniques

More information

Pizza Delivery Helper

Pizza Delivery Helper Pizza Delivery Helper Aldo Doronzo 2008 / 2009 Abstract This is a report describing the Pizza Delivery Helper project realized during the course of Mobile Services taught by prof. Ricci at the Free University

More information

Comsec Protection Systems

Comsec Protection Systems Comsec Protection Systems - - - - Comsec Protection Systems - - Comsec Protection Systems UP200-GSM-RD Intercom and access control unit operating on mobile GSM network INTRODUCTION The UP200-GSM-RD is

More information

Thermoguard. Thermoguard GSM Modem Serial Version Version 2.94

Thermoguard. Thermoguard GSM Modem Serial Version Version 2.94 Thermoguard Thermoguard GSM Modem Serial Version Version 2.94 Contents - Introduction... 3 - Versions / Parts... 4 - Inserting the SIM card... 5 - Connecting the device... 6 - Configuration and Test within

More information

ST.MARTIN'S ENGINEERING COLLEGE Dhulapally,Secunderabad-014

ST.MARTIN'S ENGINEERING COLLEGE Dhulapally,Secunderabad-014 ST.MARTIN'S ENGINEERING COLLEGE Dhulapally,Secunderabad-014 INFORMATION TECHNOLOGY TUTORIAL QUESTION BANK Course Title Course Code Regulation Course Structure Team of Instructors Mobile Application Development

More information

Programming Wireless Devices with the Java 2 Platform, Micro Edition

Programming Wireless Devices with the Java 2 Platform, Micro Edition Programming Wireless Devices with the Java 2 Platform, Micro Edition J2ME Connected Limited Device Configuration (CLDC) Mobile Information Device Profile (MIDP) Roger Riggs Antero Taivalsaari Mark VandenBrink

More information

DAY 3 J2ME March 2007 Aalborg University, Mobile Device Group Mobile Phone Programming

DAY 3 J2ME March 2007 Aalborg University, Mobile Device Group Mobile Phone Programming DAY 3 J2ME Mobile Phone Programming Module 2 Micro (J2ME) Overview Introduction J2ME architecture Introduction 1 J2ME Key Factors Portability: Write once run anywhere Security: Code runs within the confines

More information

Mobile Services. Course Overview, Motivations and Introduction F. Ricci

Mobile Services. Course Overview, Motivations and Introduction F. Ricci Mobile Services Course Overview, Motivations and Introduction F. Ricci Contact Details Francesco Ricci Room 212 (POS) fricci@unibz.it 0471 016971 Availability Hours: Wed 15.00-18.00 by prior arrangement

More information

Mobile Services. Course Overview, Motivations and Introduction F. Ricci. Contact Details. Francesco Ricci. Availability Hours: Wed

Mobile Services. Course Overview, Motivations and Introduction F. Ricci. Contact Details. Francesco Ricci. Availability Hours: Wed Mobile Services Course Overview, Motivations and Introduction F. Ricci Contact Details Francesco Ricci Room 212 (POS) fricci@unibz.it 0471 016971 Availability Hours: Wed 15.00-18.00 by prior arrangement

More information

Mobile Messaging Using Bangla

Mobile Messaging Using Bangla 1 Mobile Messaging Using Bangla Tofazzal Rownok ID# 01101040 Department of Computer Science and Engineering December 2005 BRAC University, Dhaka, Bangladesh 2 DECLARATION I hereby declare that this thesis

More information

DB DAL BLL WS. Server. Click2Go Web Site. Mobile Phone. Click2Go Mobile Application. System's Architecture. System Overview

DB DAL BLL WS. Server. Click2Go Web Site. Mobile Phone. Click2Go Mobile Application. System's Architecture. System Overview System's Architecture System Overview Server Click2Go Web Site DB DAL BLL WS Mobile Internet Connection (GPRS, UMTS, WLAN, ) Mobile Phone Click2Go Mobile Application The system contains two environments:

More information

Lab Exercise 4. Please follow the instruction in Workshop Note 4 to complete this exercise.

Lab Exercise 4. Please follow the instruction in Workshop Note 4 to complete this exercise. Lab Exercise 4 Please follow the instruction in Workshop Note 4 to complete this exercise. 1. Turn on your computer and startup Windows XP (English version), download and install J2ME Wireless Toolkit

More information

مريم سعد جعفر رانيا عبد السجاد علي سامي سمادير عبد العباس ياسمين عبد االمير

مريم سعد جعفر رانيا عبد السجاد علي سامي سمادير عبد العباس ياسمين عبد االمير مريم سعد جعفر رانيا عبد السجاد علي سامي سمادير عبد العباس ياسمين عبد االمير 1 Introduction of J2ME Introduction of Mobile Technology The goals Mobile Technology Connecting people Information sharing Internet

More information

Haicom HI-604 GPS Tracking Device with 5-years Standby Battery

Haicom HI-604 GPS Tracking Device with 5-years Standby Battery Haicom HI-604 GPS Tracking Device with 5-years Standby Battery INTRODUCTIONS: This is a multi-function state-of-the-art GPS tracking solution offering you a 4 in 1 solution GPS/GSM/GPRS/SMS/DTMF all in

More information

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide

Gemalto EHS6T-USB Terminal Starter Kit. Getting Started Guide Gemalto EHS6T-USB Terminal Starter Kit Getting Started Guide EHS6T-USB Terminal Starter Kit Contents Image is for a Kit A version. Other versions with different antenna may be available. This manual is

More information

ComTroll 120 GLM GSM modem for sending SMS alarms from LineTroll fault Indicators

ComTroll 120 GLM GSM modem for sending SMS alarms from LineTroll fault Indicators ComTroll 120 GLM GSM modem for sending SMS alarms from LineTroll fault Indicators User Manual For software versions from 2.22 and newer Page 1 This document describes the COMTROLL 120 GSM Communication

More information

FIFOTRACK VEHICLE GPS TRACKER. Model: S30 Version: V1.1

FIFOTRACK VEHICLE GPS TRACKER. Model: S30 Version: V1.1 FIFOTRACK VEHICLE GPS TRACKER Model: S30 Version: V1.1 www.fifotrack.com Copyright and Disclaimer All copyrights belong to Shenzhen fifotrack Solution Co., Ltd. You are not allowed to revise, copy or spread

More information

Universal Z-Wave Key Pad

Universal Z-Wave Key Pad POPP Universal Z-Wave Key Pad SKU: POPE700045 Quickstart This is a secure Keypad for Europe. To run this device please insert fresh 4 * AAA batteries. Please make sure the internal battery is fully charged.

More information

WLANSIM a wireless IP networked UICC ETSI Workshop 4-5 june 2008, Sophia Antipolis Steinar Brede. Research Manager Telenor R&I

WLANSIM a wireless IP networked UICC ETSI Workshop 4-5 june 2008, Sophia Antipolis Steinar Brede. Research Manager Telenor R&I A couple of M2M activities: WLANSIM a wireless IP networked UICC ETSI Workshop 4-5 june 2008, Sophia Antipolis Steinar Brede. Research Manager 1 GSM - SMS SIM card developments GSM BIP (High speed) Proffnett

More information

GPS TRACKING AND TELEMATICS

GPS TRACKING AND TELEMATICS GPS TRACKING AND TELEMATICS TracksALL is the latest fleet management products from the ProClean Products group of businesses. As we endeavour to fulfil the complete turnkey solutions for our customers

More information

1) GSM/GPRS/EDGE/HSDPA/HSUPA/CDMA/GPS modems/ modem pool and modem cards

1) GSM/GPRS/EDGE/HSDPA/HSUPA/CDMA/GPS modems/ modem pool and modem cards Shenzhen Baiyi Technology Co., Ltd is a hi-tech factory engaging in telecommunication information consultation, manufacture and sale of wireless communication products and agency of wireless communication

More information

DVB-HTML MIDP 2.0 Graphics Architectures for Non-Desktop Devices

DVB-HTML MIDP 2.0 Graphics Architectures for Non-Desktop Devices DVB-HTML MIDP 2.0 Graphics Architectures for Non-Desktop Devices Pablo Cesar pcesar@tml.hut.fi http://www.tml.hut.fi/~pcesar Part I DVB-HTML Part II MIDP 2.0 Part III Outline Graphics Systems in Embedded

More information

Building a Java ME Test Suite in 15 Minutes

Building a Java ME Test Suite in 15 Minutes Building a Java ME Test Suite in 15 Minutes Mikhail Gorshenev, Senior Staff Engineer Roman Zelov, Member of Technical Staff Alexander Glasman, Member of Technical Staff Sun Microsystems, Inc. http://www.sun.com/

More information

Smart Driver Assistant Software Requirements Specifications

Smart Driver Assistant Software Requirements Specifications 2016 Software Requirements Specifications SEYMUR MAMMADLI SHKELQIM MEMOLLA NAIL IBRAHIMLI MEHMET KURHAN MIDDLE EAST TECHNICAL UNIVERSITY Department Of Computer Engineering Preface This document contains

More information

ecoline GSM Adapter INSTALLATION AND APPLICATION MANUAL for module version v2.0 and higher Document version:

ecoline GSM Adapter INSTALLATION AND APPLICATION MANUAL for module version v2.0 and higher Document version: ecoline GSM Adapter INSTALLATION AND APPLICATION MANUAL for module version v2.0 and higher Document version: 1.31 22.11.2013 Table of contents 1 Application area... 3 2 Functions... 3 3 Settings... 3 4

More information

Content. 1 D-Link dongle Introduction Installation Functions & Operation Help FAQ & Answers...25

Content. 1 D-Link dongle Introduction Installation Functions & Operation Help FAQ & Answers...25 1 Content 1 D-Link dongle Introduction...3 1.1 Introduction... 3 1.2 Safety Warning and Notice... 3 1.3 Applicability Scope... 4 1.4 System Requirements... 5 1.5 Functions... 5 2 Installation...6 2.1 Connect

More information

The telephone supports 2 SIM cards. All functions are available for both SIM cards and have independent settings.

The telephone supports 2 SIM cards. All functions are available for both SIM cards and have independent settings. Samsung C6112 telephone for protection of conversations against control via a GSM service provider as well as via active and semi-active GSM interception complexes, catchers. The telephone supports 2 SIM

More information

LINK-DARK LINK-DARK-V QUICK START GUIDE (US ONLY) v.1.1

LINK-DARK LINK-DARK-V QUICK START GUIDE (US ONLY) v.1.1 LINK-DARK (US ONLY) LINK-DARK-V QUICK START GUIDE v.1.1 In the box 1x Camera 1x Mounting bracket 1x Installation strap 1x Quick start guide 1x Micro SIM card is preactivated and inserted in the camera

More information

Reach the Next Billion with Engaging Apps: Full Developers

Reach the Next Billion with Engaging Apps: Full Developers JavaOne 2012, San Francisco Reach the Next Billion with Engaging Apps: Full Touch for Java ME Developers Reha Chakroborty Senior Product Manager, Series 40 Developer Product (Java) Oct 2012 What is Series

More information

Mobile Connect for USA Mobility Pagers for BlackBerry

Mobile Connect for USA Mobility Pagers for BlackBerry User Guide for Mobile Connect for USA Mobility Pagers for BlackBerry Amcom Software, Inc. Copyright Mobile Connect 3.5 Document Version 1.0 Last Saved Date: September 19, 2013 Copyright 2003-2013 Amcom

More information

Sentar V80 Watch User Manual

Sentar V80 Watch User Manual Sentar V80 Watch User Manual Please read this manual carefully before starting to use the watch, pictures for reference only. 1.Preparation 1.1. Check if the watch is of the correct model and has complete

More information

MobilGate - 128d. 1. Operation of MobilGate-128d. Gate and barrier control GSM module with 2 inputs and 2 outputs for 128 phone numbers

MobilGate - 128d. 1. Operation of MobilGate-128d. Gate and barrier control GSM module with 2 inputs and 2 outputs for 128 phone numbers MobilGate - 128d Gate and barrier control GSM module with 2 inputs and 2 outputs for 128 phone numbers MobilGate-128d is an industrial GSM module developed for remotely controlling doors, garage doors

More information

Short Message Service (SMS)

Short Message Service (SMS) TECQUI Ayra M.-B. Short Message Service (SMS) Introduction Short message service is a mechanism of delivery of short messages over the mobile networks. It is a store and forward way of transmitting messages

More information

Getting Started Select Wireless Manager. Wireless Manager Window. To enable or disable a wireless connection, tap the specific button.

Getting Started Select Wireless Manager. Wireless Manager Window. To enable or disable a wireless connection, tap the specific button. Getting Started 1-11 Select Wireless Manager. Figure 1-10 Wireless Manager Window To enable or disable a wireless connection, tap the specific button. To enable or disable all wireless connections, tap

More information

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6

Cloud Help for Community Managers...3. Release Notes System Requirements Administering Jive for Office... 6 for Office Contents 2 Contents Cloud Help for Community Managers...3 Release Notes... 4 System Requirements... 5 Administering Jive for Office... 6 Getting Set Up...6 Installing the Extended API JAR File...6

More information

AV-4000 GSM AV-4000 DVR

AV-4000 GSM AV-4000 DVR E a s y L o a d e r AV-4000 GSM AV-4000 DVR (for LED keypads) Integrated Alarm Control panel & Communicator Series 4000 Appendix for GSM Alarm Panels Version 1.05 Edition I This product is subject to continuous

More information

GC 055. GSM Remote Monitoring. Operating and installation instructions

GC 055. GSM Remote Monitoring. Operating and installation instructions GSM Remote Monitoring Operating and installation instructions GC 055 GSM, GPRS Programmable Communicator Transmits input conditions/controls outputs Measures analogue data Access control system/dallas

More information

UP100-GSM. GSM based intercom and access control. Installation and user manual

UP100-GSM. GSM based intercom and access control. Installation and user manual UP100-GSM GSM based intercom and access control Installation and user manual UP100-GSM REV.1.4 20/01/2014 Table of contents 1 Functions...3 2 Features...3 3 Application area...3 4 Operation...3 4.1 Visitor

More information

BitPipe Cellular Dev-Kit

BitPipe Cellular Dev-Kit Rev 1.0 2016-09-02 1 Table of Contents Table of Contents... 2 Table of figures... 3 1. Revision history... 4 2. Introduction... 4 3. Included Material... 4 4. Requirements... 5 5. BitPipe Development Kit

More information

WEB OMT Software User Manual V1.3

WEB OMT Software User Manual V1.3 WEB OMT Software User Manual V1.3 1 APPLICATION... 3 2 SYSTEM LOGIN... 3 3 SYSTEM INTERFACE... 4 4 OPERATION AND MANAGEMENT... 6-2 - 1 Application The repeater local control software is web base software

More information

Brief instructions Mobile 3D sensor O3M150 O3M151 O3M160 O3M /00 03/2016

Brief instructions Mobile 3D sensor O3M150 O3M151 O3M160 O3M /00 03/2016 Brief instructions Mobile 3D sensor O3M150 O3M151 O3M160 O3M161 80236592/00 03/2016 Content 1 About these instructions........................................... 4 1.1 Symbols used...............................................

More information

rev mobile device to remotly control your home 2010 Cybrotech Ltd

rev mobile device to remotly control your home 2010 Cybrotech Ltd GSM-SA User Manual rev. 1.02 mobile device to remotly control your home 2010 Cybrotech Ltd Index Index...1 Description...2 Commands...3 Read inputs by message...3 Activate relay by message...3 Activate

More information

FAST Installation (PMRS) Box Contents

FAST Installation (PMRS) Box Contents FAST Installation (PMRS) Box Contents PMRS Unit Video/Power Adapter GPS Antenna 5V Charger u USB Cable 12V 5V Car Adapter PTZ+GPIO Cable Voice splitter GSM Antenna (Optional) LAN Cable Required Items SIM

More information

HTTP Specification Version 1.83

HTTP Specification Version 1.83 HTTP Specification Version 1.83 1. HTTP URL link 2. Sending Text Message 3. Sending Flash Message 4. Sending Unicode Message 5. Sending Binary Message 6. Sending 2D Barcode Message 7. Check for credits

More information

Avaya one-x Mobile User Guide for J2ME

Avaya one-x Mobile User Guide for J2ME Avaya one-x Mobile User Guide for J2ME 18-602147 Issue 1 November 2007 2007 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was

More information

J2ME crash course. Harald Holone

J2ME crash course. Harald Holone J2ME crash course Harald Holone 2006-01-24 Abstract This article gives a short, hands-on introduction to programming J2ME applications on the MIDP 2.0 platform. Basic concepts, such as configurations,

More information

S500 Series. Operation manual for GSM temperature humidity data logger

S500 Series. Operation manual for GSM temperature humidity data logger S500 Series Operation manual for GSM temperature humidity data logger Catalogues CHAPTER 1. INTRODUCTIONS... 1 1.1 Features... 1 1.2 Technical Specifications... 1 1.3 Applications... 2 1.4 Installation

More information

Developing mobile UI

Developing mobile UI Vorlesung Advanced Topics in HCI (Mensch-Maschine-Interaktion 2) Ludwig-Maximilians-Universität München LFE Medieninformatik Albrecht Schmidt & Andreas Butz WS2003/2004 http://www.medien.informatik.uni-muenchen.de/

More information

Statement of compliance no 40/2011

Statement of compliance no 40/2011 -1- ST-65 module GSM v1.0.7 Statement of compliance no 40/2011 We, the company TECH, headquartered in Wieprz 1047A, 34122 Wieprz, declare with full liability, that the controller ST 65 GSM, produced by

More information

icp 1000 Wireless GSM Based Remote Monitoring Unit for Transformer Rectifier Unit

icp 1000 Wireless GSM Based Remote Monitoring Unit for Transformer Rectifier Unit icp 1000 Wireless GSM Based Remote Monitoring Unit for Transformer Rectifier Unit The GSM based remote monitoring unit icp 1000, for Transformer Rectifier (TR) monitoring, is a highly accurate, compact,

More information

SYNOPSIS PROJECT TITLE : GSM BASED E-NOTICE BOARD

SYNOPSIS PROJECT TITLE : GSM BASED E-NOTICE BOARD SYNOPSIS PROJECT TITLE : GSM BASED E-NOTICE BOARD OBJECTIVE: The main aim of this project will be to design a SMS driven automatic display board which can replace the currently used programmable electronic

More information

Ready Track OBD Vehicle Tracker

Ready Track OBD Vehicle Tracker Ready Track OBD Vehicle Tracker VX60 User Guide Copyright 2013 Ready Track Pty Ltd. All rights reserved. -1- Contents 1. Notice... 3 1.1 Usage Information... 3 1.2 Product Accessories... 3 2. Product Function

More information

MAMBO2 MAMBO2. Personal Tracker & Handy

MAMBO2 MAMBO2. Personal Tracker & Handy Personal Tracker & Handy 20 channel SiRFstarIII GPS receiver Quad band GSM/GPRS cell phone 3 axis motion sensor Full color OLED display (128x128 Pixel) Lithium polymer battery (1300 mah) 5-way-joystick

More information

Q60(SeTracker)User Manual

Q60(SeTracker)User Manual Q60(SeTracker)User Manual Please read the instruction manual before use, in order to properly installed and rapid use! 1.Preparation 1.1. Check if the Locator is of the correct model and has complete accessories

More information

SOFTWARE VERSION 3.3. CD P/N Rev. C

SOFTWARE VERSION 3.3. CD P/N Rev. C SOFTWARE VERSION 3.3 CD P/N 7301538 Rev. C 2 4 Introduction 1 4 General Specification: 1.1 4 Factory defaults parameters: 1.2 5 Basic Functionality 1.3 5 Password Protection 1.4 6 Operation 1.5 6 SMS support

More information

IP Network Camera J2ME (Java) Application

IP Network Camera J2ME (Java) Application IP Network Camera J2ME (Java) Application Revision 1.0 User Manual Information provided in this manual was made as accurate as possible. If there are discrepancies among the manuals in different languages,

More information

Model SFS01-V2 IMPORTANT! MULTI-ATTEMPT AUTOMATIC ENGINE SMART SWITCH

Model SFS01-V2 IMPORTANT! MULTI-ATTEMPT AUTOMATIC ENGINE SMART SWITCH MULTI-ATTEMPT AUTOMATIC ENGINE SMART SWITCH Model SFS01-V2 DESCRIPTION The Model SFS01-V2 is a Multi-attempt Automatic Engine Smart Switch designed to automatically [remotely] or manually start and stop

More information

GpsGate SMS Proxy. Installation and Administration Guide. Version: Rev: 1

GpsGate SMS Proxy. Installation and Administration Guide. Version: Rev: 1 GpsGate SMS Proxy Installation and Administration Guide Version: 2.0.4 Rev: 1 Table of Contents 1 Introduction...3 2 Technical Requirements...4 2.1 Supported Operating Systems...4 2.2 Supported Phones...4

More information

KWJ-WSN & USB Gateway. Quick Start Guide

KWJ-WSN & USB Gateway. Quick Start Guide KWJ-WSN & USB Gateway Quick Start Guide Inside the Box You should find the following items in the box: KWJ-WSN Wireless Sensors KWJ-WSN Wireless USB Gateway Mounting Hardware Quick Start Guide Batteries.

More information

WIRING DIAGRAMS. Installation and wiring of NVIROMON system NVIROMON MULIODCBPSU. Remote Environmental Monitoring and Control for IT equipment.

WIRING DIAGRAMS. Installation and wiring of NVIROMON system NVIROMON MULIODCBPSU. Remote Environmental Monitoring and Control for IT equipment. WIRING DIAGRAMS NVIROMON R12 Remote Environmental Monitoring and Control for IT equipment. NVIROMON MULIODCBPSU Installation and wiring of NVIROMON system ITEMS Quantity Equipment 1 NVIROMON unit 4 Temperature

More information

Mobile forensics. SMS (Short Message Service) EMS, MMS, CBS

Mobile forensics. SMS (Short Message Service) EMS, MMS, CBS Mobile forensics SMS (Short Message Service) EMS, MMS, CBS How the Mobiles Work The Route of a Mobile Phone Telephone Call, (or SMS or user data traffic) SIM card Radio access network Core network MS/UE

More information

Vipera OTA Provisioning Server

Vipera OTA Provisioning Server Vipera Inc 200 Page Mill Road Palo Alto, CA 94306. USA www.vipera.com info@vipera.com Vipera OTA Provisioning Server Technical Overview Version 1.0 The Vipera provisioning portal allows content providers

More information

FastForward User Guide

FastForward User Guide Let s play follow the leader! FastForward User Guide Nokia 3100, 3200, 6100, 6200 & 6800 Series Phones Welcome Thank you for purchasing Cingular s FastForward. Now you can easily forward incoming calls

More information

Love - Care - Connect

Love - Care - Connect Love - Care - Connect Liberi Manual Please read the instructions before installing and using the watch. 1. Before using 1:1. Identify these items and belongings: 1 Liberi GPS Watch with silicon wristband

More information

CORPORATION PTY LTD MEDI-LINK CELLULAR

CORPORATION PTY LTD MEDI-LINK CELLULAR A division of NESS CORPORATION PTY LTD MEDI-LINK CELLULAR Part No. 100-809 INSTALLATION MANUAL.doc 1. Contents 1. Contents... 1 2. Equipment List... 1 3. Overview... 1 4. Medi-Link Cellular SIM... 2 5.

More information

Java 2 Micro Edition Server socket and SMS. F. Ricci

Java 2 Micro Edition Server socket and SMS. F. Ricci Java 2 Micro Edition Server socket and SMS F. Ricci Content Other Connection Types Responding to Incoming Connections Socket and Server Socket Security Permissions Security domains Midlet signing Wireless

More information