An Emergency Communication System for an Agricultural Autonomous Vehicle

Size: px
Start display at page:

Download "An Emergency Communication System for an Agricultural Autonomous Vehicle"

Transcription

1 2014 International Conference on Intelligent Agriculture IPCBEE vol.63 (2014 ) (2014 ) IACSIT Press, Singapore DOI: /IPCBEE V An Emergency Communication System for an Agricultural Autonomous Vehicle Ka C. Chan 1, 2, Jayantha Katupitiya 2, Joshua W. Hanrahan 1, Corey J. Jackson 1, and Dylan Rose 1 1 Department of Computer Science & Computer Engineering, La Trobe University, Bendigo, VIC 3550, Australia 2 School of Mechanical and Manufacturing Engineering, The University of New South Wales, Sydney, NSW 2052, Australia Abstract. This paper describes the design and implementation of a communication system which concurrently sends out an SMS message and makes a video or voice over IP (VoIP) call to one or more operators when the agricultural autonomous vehicle (SmartSeeder) falls into an emergency situation while in service. The emergency communication system consists of two sub-systems: an Android mobile phone for SMS messaging and a Raspberry pi Linux computer for VoIP. The Google Maps Application Programming Interface (API) is used to note the GPS location where the vehicle got into trouble, and then convert that GPS location into a web link which would be sent through with the SMS message. An Asterisk VoIP server is used to initiate and make VoIP/Video calls through the wireless network on the vehicle, or through the Android phone using tethering when the on-vehicle wireless network fails. The VoIP system provides useful real-time voice and video information about the environment to the operator so appropriate decisions can be made. Both the SMS Android app and the VoIP system continuously run in the background and wait for emergency signals to arrive from the vehicle s main control system. Keywords: SMS, VoIP, Autonomous Vehicles, Agriculture, Android. 1. Introduction The Agricultural Robotics research carried out at UNSW Australia has led to the development of the socalled SmartSeeder (Fig. 1), a system that can precisely place seeds in broad acre cropping at predetermined rows with an accuracy of within ±2 cm. The system requires the input of a crop layout pattern in the form of a path to follow, represented as a data set containing GPS coordinates (Fig. 2). A suite of sophisticated nonlinear control algorithms have been implemented [1, 2] to ensure precise navigation at speeds up to 10 km/hour. Achieving precision seed placement is the first step towards precision autonomous farming [3]. The aim is to use the same technology and equipment for all stages of agricultural operations from seeding, fertilizing, and weeding right to harvesting. The precision delivered by this system completely eliminate the need for crop sensing and localization for operations such as fertilizing and weeding, thereby substantially reducing the cost of sensing. The precision requirement of these vehicles is so high that it is virtually impossible for a human operator to drive. As such these machines are essentially autonomous and therefore require an efficient and effective means of monitoring their operational conditions while they are kilometres away operating on their own. Fig. 3 shows the mechanical features of the system. It consists of a pilot vehicle which is generally small and has no ability to provide sufficient propulsion; however, it has the ability to guide and command the seeder attached to it. The seeder itself is propelled and has its own power unit to activate its own controls however as commanded by the pilot vehicle. As such the pilot vehicle does not carry the seeder s load. 76

2 Fig. 1: The UNSW Smart Seeder and Sensors. Fig. 2: GPS Coordinated Path. Fig. 3: The small pilot vehicle (green) and the self-propelled seeder. Therefore, a small pilot vehicle can guide a very large seeder. The core novelty is this feature in that the large tractors are replaced by a small pilot vehicle and all the propulsion forces are provided by the seeder itself. The broader novelty is that the seeder shown is to be replaced by a general implement that has the ability to carry tools to suit the agricultural task thereby minimizing the number of large implements maintained by a particular farming scenario. This way all tools carried by an implement at different stages of farming can ensure the same accuracy right throughout and thereby making substantial savings in operational costs and the amount of substances used. The need to maintain contacts with the machine as it is operating kilometres away cannot be overemphasized. Diagnostics data needs to be transmitted to an operator so that action can be taken to ensure continued operation of the agricultural implement. We have investigated and experimented with different types of wireless technologies for various purposes. This paper aims to present the design of a communication system using 3G mobile and wifi for sending out emergency alerts. The emergency communication system consists of two sub-systems for redundancy and reliability, and providing different types of information to the operator. The first one is an Android app responsible for sending out SMS distress messages through an Android mobile phone. The second is a Linux based system responsible for initiating VoIP calls through a Raspberry Pi [4], which is a low cost, credit card sized single board computer. Because of their small sizes, light weights, and low power requirements, these systems were chosen to fit in the limited space available on the SmartSeeder. An SMS system is useful as long as there is 3G mobile network coverage. However, SMS is delivered in a store-and-forward way; therefore, they do not 77

3 always arrive immediately [5]. The VoIP system provides an alternative path to send out emergency alert but it depends on the availability of Internet connectivity. By using the Google Maps Application Programming Interface (API), the Android system also sends out the current GPS location of the SmartSeeder. On the other hand, the VoIP system provides additional voice and video information of the environment, which can be very useful to the operator in making decisions. The SMS and VoIP systems also serve as backup to each other in sending out emergency alerts. In this paper, we will first present the overall system architecture in Section 2, then the Android sub-system in Section 3, and the VoIP sub-system in Section 4, followed by discussions and conclusions in Section System Architecture The emergency communication system was designed as a standalone system consisting of two subsystems, separated from the main controller for reliability reasons. The emergency communication system and the main controller are communicated through the on-vehicle LAN. The main controller is an on-board computer driven by a real-time operating system. Software applications were developed for monitoring and controlling the various sub-systems of the vehicle in real-time, including the safety, steering, and traction (propulsion) sub-systems. The main controller decides under what circumstances and when to send out emergency signals to the two emergency sub-systems which continuously run at the background waiting for signals to arrive, and taking actions accordingly. Fig. 4 shows the system architecture of the emergency communication system which consists of three main hardware components: an Android phone and a Raspberry pi mounted on the SmartSeeder, and an Asterisk VoIP server hosted in an external data center. Asterisk is an open source VoIP software [6] which is highly customisable and enables developers to build innovative communication solutions [7, 8]. All VoIP clients or softphones are required to register to the Asterisk server before they can call each other. One Asterisk server can support multiple SmartSeeders working in one or more farms. The open source SIP VoIP client, LinPhone [9], was installed on the on-vehicle Android phone, and the operator s desktop computer or mobile device. LinPhone registers to the Asterisk server and enables users to make VoIP calls using their PCs or mobile devices. Fig. 4: System architecture of the emergency communication system. 78

4 To enable data communications among various systems on the SmartSeeder and to the Internet, the following networks are setup and configured: Main controller: 3G Internet connection and FastEthernet connection to the on-vehicle wired LAN. Android phone: 3G Internet connection, and configured as wifi hotspot to provide backup Internet conection to the Raspberry Pi. The Android phone can also access Internet via the on-vehicle wireless access point. Raspberry Pi: FastEthernet connection to the on-vehicle wired LAN. As backup, an USB wifi dongle enables wireless connection to the Android phone with tethering if the on-vehicle access point fails or goes out of range from the main wireless access point at the farm house. The reliable operations of these data networks are necessary for the emergency communication systems to function properly. 3. Android App for SMS Messaging An Android app Seeder SMS was developed to run in the background waiting for the emergency signal to arrive from the main controller in the SmartSeeder, and to send out an SMS distress message with GPS location information to an operator via the mobile phone in case of an emergency. The system architecture of the Android system is shown in the middle part of Fig. 5. The Android app Seeder SMS was developed on a laptop running a 64-bit Ubuntu Linux version The software framework and environment includes the Eclipse IDE, Android SDK, Android Developer Tools (ADT), Support Library, and Android Virtual Devices (AVD) [10]. The API level and platform support all the way back to Android 4.0 Ice Cream Sandwich and up. The arrows in Fig. 5 indicate the process flow of the Android sub-system. The File Transfer Protocol (FTP) was used as the mechanism to pass triggers from the main controller to the Android phone in case of an emergency. The free app MyFTP Server was downloaded from the Google Play Store and installed on the phone. In case of an emergency, the main controller creates a file in the Android phone s seedersms/data directory through the FTP client to trigger the observer service. Immediately the Android phone grabs the current location using the inbuilt GPS service, and sends the SMS alert message containing the GPS coordinates to a pre-set mobile number. A few screen shots of the Seeder SMS app are shown in Fig. 6 below. Although the main purpose of the Android phone is to send out SMS alerts via the 3G connectivity in emergency, it is also configured as a portable Wifi Hotspot as a backup to provide Internet connectivity to the Raspberry Pi as discussed in the next section. Fig. 5: Process flow of the Android sub-system. 79

5 Fig. 6: Screenshots of the Android app Seeder SMS. 4. VoIP System The Asterisk server, located in an external data center, was installed and setup using the FreePBX distribution [11], which is an open source package combining a web based graphical user interface (GUI) with Asterisk. With FreePBX, it is very easy to control and manage the Asterisk server, and the settings of extensions. The same server can be used to control and manage a number of SIP clients configured on multiple SmartSeeders. The arrows in Fig. 7 indicate the process flow of the Asterisk sub-system. The Asterisk server is shown on the right hand side, the Raspberry Pi SIP client in the middle, and the main controller on the left hand side. Unlike the Android system, the Asterisk system uses HTTP as triggers in case of an emergency. The Raspberry Pi employs a simple Python HTTP web server to wait for requests coming from the main controller. When an emergency signal is received, the Raspberry Pi runs a web service to inform the Asterisk server to immediately create a call file in the its /var/spool/asterisk/outgoing directory. A call file is a simple text file containing some instructions for the Asterisk server to initiate phone calls at the time equal to the time stamp of the call file. When the call file is executed, the Asterisk server first calls the extension of the LinPhone on the vehicle, which automatically answers, then makes a call to the operator s extension. Once the operator answers the VoIP call, either a video or voice call will be established depending on the network environment and the device that the operator uses. The Raspberry Pi system then streams real-time video or voice from the SmartSeeder to the operator. It should be noted that it is possible for the Asterisk server to bridge the VoIP call from the Raspberry Pi to a PSTN or mobile phone number rather than to a softphone. The Asterisk server also allows us to ring a number of parties in sequence (call hunt) or simultaneously (ring all). As the SmartSeeder works in large and sometimes remote farmlands, Internet connectivity and wireless coverage is a challenge. Therefore, it is important to choose the appropriate VoIP codecs depending on the available bandwidth. Voice codecs such as GSM, ilbc, G.723 and G.729 require much lower bandwidth compared to the uncompressed G.711 codec. Under a good network condition with low delay and sufficient bandwidth, G.711 can offer high fidelity voice quality. However, for environment where network is slow and bandwidth is limited, G.711 may perform very poorly. Compared to G.711 s bandwidth requirement of 64 kbps bit-rate, G.723 requires 5.3 kbps, G.729 requires 8 kbps, and GSM requires 13 kbps. Due to their low bandwidth requirements, they are more suitable for large farmlands where 3G or wifi signals can be weak 80

6 and unstable at times. In our experiments, video support was enabled in the Asterisk server, and the codec priority for codec negotiations was set to (1) H.263 (video), (2) GSM, and (3) ilbc. When there is sufficient bandwidth, a video connection will be established. When that fails, a voice call will be established. The voice codecs GSM and ilbc were chosen because of their low bit-rate and are available without license fees. For the VoIP system, under normal network condition, the Raspberry Pi receives emergency signals from the main controller and sends out HTTP requests via the on-vehicle wired LAN connections to initiate VoIP calls. When the vehicle is out of range of the outdoor wifi coverage or the wifi connection fails, the Raspberry Pi can still receive signals from the main controller via the wired LAN, but will instead send out HTTP requests via the Android mobile phone which acts as a wifi hotspot. As an alternative approach to trigger an alert, the main controller can use a FTP client to create the call file directly in the Asterisk server s spool directory directly. However, this approach was not taken. As the Raspberry Pi has multiple routes to the Internet, it is preferable to send the emergency alerts passing through the Raspberry Pi in order to take advantage of the redundant Internet connections. 5. Discussions and Conclusions We have presented the design and implementation of an emergency communication system for the UNSW SmartSeeder. The need to maintain reliable communications with the machine as it is operating autonomously kilometres away cannot be overemphasized. Although the SmartSeeder is a highly reliable unmanned vehicle, in unlikely emergencies that require immediate responses from the remote operator, the on-vehicle main controller will trigger the emergency communication system to send out alerts to the operator via SMS messages and VoIP calls. The emergency communication system consists of an Android sub-system that sends out SMS alerts containing the GPS locations of the vehicle; and an Asterisk VoIP system that streams voice and/or video to the operator s PC or mobile device. The Android phone also acts as a backup wifi hotspot for the VoIP client in case the wifi connection between the vehicle and the farm house fails. The main challenge has been in providing reliable wireless connection to the vehicle due to the large farm areas. Our next phase of research is to investigate into the latest long range outdoor wifi and antenna technologies which claim to have kilometres of coverage; and to experiment with VoIP over the low bandwidth long distance wireless protocols such as ZigBee [12]. We are also investigating the use of 6LoWPAN to setup a long range IPv6 network in support of the SmartSeeder communications [13]. Fig. 7: Process flow of the Asterisk sub-system. 81

7 6. References [1] J. Taghia and J. Katupitiya. A Sliding Mode Controller with Disturbance Observer for a Farm Vehicle Operating in the Presence of Wheel Slips. In: Proc. of the IEEE/ASME International Conference on Advanced Intelligent Mechatronics. IEEE. July 2013, pp [2] J. Taghia and J. Katupitiya. Wheel Slip Identification and its Use in the Robust Control of Articulated Off-Road Vehicles. In: Proc. of Australasian Conference on Robotics and Automation. University of New South Wales, Sydney, Australia. 2-4 Dec [3] J. Katupitiya, R. Eaton and T. Yaqub. Systems Engineering Approach to Agricultural Automation: New Developments. In Proc. of the 1st Annual IEEE Systems Conference. Honolulu, Hawaii, USA. April [4] Raspberry Pi. (last accessed 15-Dec-2013). [5] J. Brown, B. Shipman, and R. Vetter, R. SMS: The short message service. Computer, 2007, 40(12): [6] Asterisk. (last accessed 15-Dec-2013). [7] K. C. Chan. A wholesale web callback service. In: Proc. of the 8 th Int. Conference on Information Technology and Applications (ICITA 2013), IEEE, Sydney, Australia, 1-4 July, 2013, pp [8] K. C. Chan and D. Tien. A Multi-Tenant Platform for SMS Integrated Services. International Journal of Computer Networks and Communications, 2013, 5(6): [9] Linphone, Free SIP VoIP Client. (last accessed 15-Dec-2013). [10] Google. (last accessed 15-Dec-2013). [11] FreePBX let freedom ring. (last accessed 15-Dec-2013). [12] C. Wang, K. Sohraby, R. Jana, L. Ji, and M. Daneshmand. Voice Communications over ZigBee Networks. IEEE Communications Magazine, Jan 2008, 46(1): [13] Z. Shelby and C. Bormann. 6LoWPAN: The Wireless Embedded Internet. John Wiley & Sons,

VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune

VEHICLE TRACKING SYSTEM USING GPS. 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune. 2 Asst. Professor, SCOE, Vadgaon, Pune VEHICLE TRACKING SYSTEM USING GPS Pooja P. Dehankar 1, 1 Student, ME (IT) Pursuing, SCOE, Vadgaon, Pune Prof. S. P. Potdar 2 2 Asst. Professor, SCOE, Vadgaon, Pune Abstract- Global Positioning System is

More information

Domus, the connected home

Domus, the connected home Domus, the connected home Amazouz Ali, Bar Alexandre, Benoist Hugues, Gwinner Charles, Hamidi Nassim, Mahboub Mohamed, Mounsif Badr, Plane Benjamin {aamazouz, abar, hbenoist, cgwinner, nhamidi, mmahboub,

More information

Project Development Plan

Project Development Plan Project Development Plan Roverwerx A.R.M. IRP Santa Clara University Richard Rasay 1 TABLE OF CONTENTS Introduction 1 Software Design.3 Robot-Side Application.5 Client-Side Application.7 Current Status

More information

Zeenov Agora High Level Architecture

Zeenov Agora High Level Architecture Zeenov Agora High Level Architecture 1 Major Components i) Zeenov Agora Signaling Server Zeenov Agora Signaling Server is a web server capable of handling HTTP/HTTPS requests from Zeenov Agora web clients

More information

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu

CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup. Emmanuel Agu CS 528 Mobile and Ubiquitous Computing Lecture 2: Android Introduction and Setup Emmanuel Agu What is Android? Android is world s leading mobile operating system Google: Owns Android, maintains it, extends

More information

01. Introduction of Android

01. Introduction of Android 01. Introduction of Android Goal Understand the concepts and features of the Android Install the complete Android development environment Find out the one-click install Android development environment

More information

District of Columbia Courts Attachment 1 Video Conference Bridge Infrastructure Equipment Performance Specification

District of Columbia Courts Attachment 1 Video Conference Bridge Infrastructure Equipment Performance Specification 1.1 Multipoint Control Unit (MCU) A. The MCU shall be capable of supporting (20) continuous presence HD Video Ports at 720P/30Hz resolution and (40) continuous presence ports at 480P/30Hz resolution. B.

More information

ISOBUS s Past, Present and Future role in Agricultural Robotics and Automation

ISOBUS s Past, Present and Future role in Agricultural Robotics and Automation 1 / 42 ISOBUS s Past, Present and Future role in Agricultural Robotics and Automation Benjamin Fernandez Universidad Nacional de Educación a Distancia (UNED) Departamento de Ingeinería de Software y Sistemas

More information

Main characteristics. System

Main characteristics. System VoipSwitch is a software platform allowing for rapid VoIP services roll-out. It contains all necessary elements required in successful implementation of various VoIP services. Our customers can make money

More information

Course Project Documentation

Course Project Documentation Course Project Documentation CS308 Project Android Interface Firebird API TEAM 2: Pararth Shah (09005009) Aditya Ayyar (09005001) Darshan Kapashi (09005004) Siddhesh Chaubal (09005008) Table Of Contents

More information

A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval

A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval , pp.175-186 http://dx.doi.org/10.14257/ijsh.2014.8.1.19 A Research Using Private Cloud with IP Camera and Smartphone Video Retrieval Kil-sung Park and Sun-Hyung Kim Department of Information & Communication

More information

Contents. Specialty Answering Service. All rights reserved.

Contents. Specialty Answering Service. All rights reserved. Contents 1 Introduction... 2 2 PBX... 3 3 IP PBX... 4 3.1 How It Works... 4 3.2 Functions of IP PBX... 5 3.3 Benefits of IP PBX... 5 4 Evolution of IP PBX... 6 4.1 Fuelling Factors... 6 4.1.1 Demands from

More information

PERFORMANCE ANALYSIS OF VOIP TRAFFIC OVER INTEGRATING WIRELESS LAN AND WAN USING DIFFERENT CODECS

PERFORMANCE ANALYSIS OF VOIP TRAFFIC OVER INTEGRATING WIRELESS LAN AND WAN USING DIFFERENT CODECS PERFORMANCE ANALYSIS OF VOIP TRAFFIC OVER INTEGRATING WIRELESS LAN AND WAN USING DIFFERENT CODECS Ali M. Alsahlany 1 1 Department of Communication Engineering, Al-Najaf Technical College, Foundation of

More information

Network Management System (NMS) FAQ

Network Management System (NMS) FAQ Network Management System (NMS) FAQ Q: How does the NMS work? A: The Cooper NMS is a powerful, flexible and highly scalable wireless and fixed network management solution for thousands of network nodes

More information

METHODS OF INTEGRATING mvoip IN ADDITION TO A VoIP ENVIRONMENT

METHODS OF INTEGRATING mvoip IN ADDITION TO A VoIP ENVIRONMENT Review of the Air Force Academy No 1 (31) 2016 METHODS OF INTEGRATING mvoip IN ADDITION TO A VoIP ENVIRONMENT Paul MOZA, Marian ALEXANDRU Transilvania University, Brașov, Romania DOI: 10.19062/1842-9238.2016.14.1.16

More information

AT&T Connect Video conferencing functional and architectural overview

AT&T Connect Video conferencing functional and architectural overview AT&T Connect Video conferencing functional and architectural overview 2015 AT&T Intellectual Property. All rights reserved. AT&T, the AT&T logo and all other AT&T marks contained herein are trademarks

More information

Rich Communication Suite Enabler. plus integration with your existing VoIP services

Rich Communication Suite Enabler. plus integration with your existing VoIP services Rich Communication Suite Enabler plus integration with your existing VoIP services Join the next generation telecom market and offer services that are blend the best features of Skype, Viber and WhatsApp.

More information

Introduction to VOIP. Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007

Introduction to VOIP. Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007 Introduction to VOIP Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007 Intro to VOIP Classic Telephony Data Networks(Review) VOIP What it is Protocols Hardware

More information

HMS Industrial Networks. Putting industrial applications on the cloud

HMS Industrial Networks. Putting industrial applications on the cloud HMS Industrial Networks Putting industrial applications on the cloud Whitepaper Best practices for managing and controlling industrial equipment remotely. HMS Industrial Networks Inc 35 E Wacker Drive,

More information

Wlan Monitoring Using Android Phone

Wlan Monitoring Using Android Phone International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 10, Issue 7 (July 2014), PP.23-27 Wlan Monitoring Using Android Phone Pooja Chaudhary

More information

Analysis of QoS parameters of VOIP calls over Wireless Local Area Networks

Analysis of QoS parameters of VOIP calls over Wireless Local Area Networks Analysis of QoS parameters of VOIP calls over Wireless Local Area Networks Ayman Wazwaz, Computer Engineering Department, Palestine Polytechnic University, Hebron, Palestine, aymanw@ppu.edu Duaa sweity

More information

Delivering Voice, Video, Data & Mobility to SMBs

Delivering Voice, Video, Data & Mobility to SMBs Delivering Voice, Video, Data & Mobility to SMBs Company Overview UCM6100 Series Overview Voice Video Data Mobility Awards & Recognition Global Presence 12-time winner 7 time winner Grandstream Networks,

More information

VoipSwitch softphones

VoipSwitch softphones VoipSwitch softphones sales@voipswitch.com 3/21/2011 Voiceserve ltd.grosvenor House,1 High Street,London United Kingdom 1 Contents Introduction and solution overview... 2 iphone mobile softphone... 3 Google

More information

IP- PBX. Functionality Options

IP- PBX. Functionality Options IP- PBX Functionality Options With the powerful features integrated in the AtomOS system from AtomAmpd, installing & configuring a cost- effective and extensible VoIP solution is easily possible. 4/26/10

More information

A MULTI-TENANT PLATFORM FOR SMS INTEGRATED SERVICES

A MULTI-TENANT PLATFORM FOR SMS INTEGRATED SERVICES A MULTI-TENANT PLATFORM FOR SMS INTEGRATED SERVICES Ka Ching Chan 1 and David Tien 2 1 Department of Computer Science and Computer Engineering, La Trobe University, Bendigo, Victoria, Australia 2 School

More information

Overview. Unified Communications

Overview. Unified Communications OpenScape Mobile V7 OpenScape Mobile is the next-generation mobile client of Unify, for the latest mobile phones and tablets. It combines SIP-based VoIP, UC and video features into one single application.

More information

WISE-4000 Series. WISE IoT Wireless I/O Modules

WISE-4000 Series. WISE IoT Wireless I/O Modules WISE-4000 Series WISE IoT Wireless I/O Modules Bring Everything into World of the IoT WISE IoT Ethernet I/O Architecture Public Cloud App Big Data New WISE DNA Data Center Smart Configure File-based Cloud

More information

Brief Company Profile

Brief Company Profile Brief Company Profile Who we are TALINDA EAST AFRICA is a highly innovative, technology driven and customer focused organization; Our solutions focus on enabling businesses save cost, increase their operational

More information

[Asterisk IP Telephony Solutions]

[Asterisk IP Telephony Solutions] 2016 [Asterisk IP Telephony Solutions] Azim U. Hoque President University IT Forum Bangladesh 1/30/2016 Workshop on Asterisk IP Telephony Solutions Over the existing Wi-Fi, LAN/MAN/WAN/ EPN/VPN, 3G and

More information

FOR COMPANIES THAT WANT TO EXPAND AND IMPROVE THEIR TELEPHONE SYSTEM

FOR COMPANIES THAT WANT TO EXPAND AND IMPROVE THEIR TELEPHONE SYSTEM IP PBX VH-500 FOR COMPANIES THAT WANT TO EXPAND AND IMPROVE THEIR TELEPHONE SYSTEM IP PBX VH-500 The Virtual IP PBX VH-500 is an unified communication system hosted in the cloud, and it's an excellent

More information

Remote Management White Paper 27th June, 2012

Remote Management White Paper 27th June, 2012 Remote Management White Paper 27th June, 2012 Contents Page 3 Page 4 Page 5 Page 8 Page 10 Page 11 Executive Summary The rise of wireless M2M The need Remote monitoring and control Borderless networks

More information

TECHNICAL CHALLENGES OF VoIP BYPASS

TECHNICAL CHALLENGES OF VoIP BYPASS TECHNICAL CHALLENGES OF VoIP BYPASS Presented by Monica Cultrera VP Software Development Bitek International Inc 23 rd TELELCOMMUNICATION CONFERENCE Agenda 1. Defining VoIP What is VoIP? How to establish

More information

(Refer Slide Time: 6:17)

(Refer Slide Time: 6:17) Digital Video and Picture Communication Prof. S. Sengupta Department of Electronics and Communication Engineering Indian Institute of Technology, Kharagpur Lecture - 39 Video Conferencing: SIP Protocol

More information

SMART COLLEGE BUS TRACKING MANAGEMENT SYSTEM AND ITS APPLICATION

SMART COLLEGE BUS TRACKING MANAGEMENT SYSTEM AND ITS APPLICATION International Journal of Emerging Technologies and Engineering (IJETE) SMART COLLEGE BUS TRACKING MANAGEMENT SYSTEM AND ITS APPLICATION Savitha S.C Asst.Prof, Dept.ECE, MSEC, Bangalore Natya.S Asst. Prof,

More information

Portable Wireless Mesh Networks: Competitive Differentiation

Portable Wireless Mesh Networks: Competitive Differentiation Portable Wireless Mesh Networks: Competitive Differentiation Rajant Corporation s kinetic mesh networking solutions combine specialized command and control software with ruggedized, high-performance hardware.

More information

The following is a list of the features available with the managed Intersoft IP Telephony Services.

The following is a list of the features available with the managed Intersoft IP Telephony Services. The following is a list of the features available with the managed Intersoft IP Telephony Services. Call Forwarding When you are not at your desk, be sure not to miss important calls. Forward call to another

More information

IP PBX SH-500N WWW.HIPERPBX.COM

IP PBX SH-500N WWW.HIPERPBX.COM IP PBX SH-500N COMPANIES THAT WANT TO EXPAND AND IMPROVE THEIR TELEPHONE SYSTEM IP PBX SH-500N The IP PBX SH-500N is designed for companies that want to expand and improve their telephone system, and/or

More information

What is VoIP and How It Can Benefit Your Business? Introduction

What is VoIP and How It Can Benefit Your Business? Introduction What is VoIP and How It Can Benefit Your Business? Introduction Although individuals are increasingly using text messaging and social media for their communication, telephony remains an essential tool

More information

How To Get A Phone Service For Free

How To Get A Phone Service For Free 1900 Wright Place, Suite 250 Carlsbad, CA 92008 (888) 441-4466 The Future of Phone Systems What features to look for in 2015 2014 Business.com Media, Inc. All Rights Reserved. The Future of Phone Systems:

More information

MINISTRY OF HEALTH CUSTOMER PROPOSAL

MINISTRY OF HEALTH CUSTOMER PROPOSAL WENEO VIDEO CONFERENCING SOLUTION FOR MINISTRY OF HEALTH CUSTOMER PROPOSAL PRASHANTA S. CHOWDHURY Business Executive Dew Drop Enterprises Ltd Mobile: +256-750 665 388 P.O. BOX 35377 KAMPALA, UGANDA Friday,

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

Packetized Telephony Networks

Packetized Telephony Networks Packetized Telephony Networks Benefits of Packet Telephony Networks Traditionally, the potential savings on long-distance costs was the driving force behind the migration to converged voice and data networks.

More information

Increased Productivity

Increased Productivity OpenScape Mobile V7 OpenScape Mobile V7 is the next-generation mobile client of Unify for the latest mobile phones and tablets. It combines SIP-based VoIP, UC, and video features into one single application.

More information

Performance Evaluation of VoIP Services using Different CODECs over a UMTS Network

Performance Evaluation of VoIP Services using Different CODECs over a UMTS Network Performance Evaluation of VoIP Services using Different CODECs over a UMTS Network Jianguo Cao School of Electrical and Computer Engineering RMIT University Melbourne, VIC 3000 Australia Email: j.cao@student.rmit.edu.au

More information

Novel AMR technologies and Remote Monitoring

Novel AMR technologies and Remote Monitoring Novel AMR technologies and Remote Monitoring Marios Milis, SignalGeneriX Ltd marios.milis@signalgenerix.com 1 AMR Overview AMR is the technology of automatically collecting consumption, diagnostic, and

More information

Application Note. Onsight Mobile Collaboration Video Endpoint Interoperability v5.0

Application Note. Onsight Mobile Collaboration Video Endpoint Interoperability v5.0 Application Note Onsight Mobile Collaboration Video Endpoint Interoperability v5. Onsight Mobile Collaboration Video Endpoint Interoperability... 3 Introduction... 3 Adding Onsight to a Video Conference

More information

In the pursuit of becoming smart

In the pursuit of becoming smart WHITE PAPER In the pursuit of becoming smart The business insight into Comarch IoT Platform Introduction Businesses around the world are seeking the direction for the future, trying to find the right solution

More information

This document describes how the Meraki Cloud Controller system enables the construction of large-scale, cost-effective wireless networks.

This document describes how the Meraki Cloud Controller system enables the construction of large-scale, cost-effective wireless networks. This document describes how the Meraki Cloud Controller system enables the construction of large-scale, cost-effective wireless networks. Copyright 2009 Meraki, Inc. All rights reserved. Trademarks Meraki

More information

The "Eclipse Classic" version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended.

The Eclipse Classic version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended. Installing the SDK This page describes how to install the Android SDK and set up your development environment for the first time. If you encounter any problems during installation, see the Troubleshooting

More information

Crystal Gears. Crystal Gears. Overview:

Crystal Gears. Crystal Gears. Overview: Crystal Gears Overview: Crystal Gears (CG in short) is a unique next generation desktop digital call recording system like no other before. By widely compatible with most popular telephony communication

More information

Smart Home Security System Based on Microcontroller Using Internet and Android Smartphone

Smart Home Security System Based on Microcontroller Using Internet and Android Smartphone International Conference on Materials, Electronics & Information Engineering, ICMEIE-205 05-06 June, 205, Faculty of Engineering, University of Rajshahi, Bangladesh www.ru.ac.bd/icmeie205/proceedings/

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

To ensure you successfully install Timico VoIP for Business you must follow the steps in sequence:

To ensure you successfully install Timico VoIP for Business you must follow the steps in sequence: To ensure you successfully install Timico VoIP for Business you must follow the steps in sequence: Firewall Settings - you may need to check with your technical department Step 1 Install Hardware Step

More information

VIA CONNECT PRO Deployment Guide

VIA CONNECT PRO Deployment Guide VIA CONNECT PRO Deployment Guide www.true-collaboration.com Infinite Ways to Collaborate CONTENTS Introduction... 3 User Experience... 3 Pre-Deployment Planning... 3 Connectivity... 3 Network Addressing...

More information

WorkTime UC Mobile Admin Guide

WorkTime UC Mobile Admin Guide WorkTime UC Mobile Admin Guide Release: 20.1.1 Android 20.1.2 ios Document Version 1.0 Table of Contents 1 About XO Hosted PBX UC Mobile Client...1 2 Use Cases...2 2.1 Placing Outbound Calls... 2 2.2 Receiving

More information

Performance of Various Codecs Related to Jitter Buffer Variation in VoIP Using SIP

Performance of Various Codecs Related to Jitter Buffer Variation in VoIP Using SIP Performance of Various Related to Jitter Buffer Variation in VoIP Using SIP Iwan Handoyo Putro Electrical Engineering Department, Faculty of Industrial Technology Petra Christian University Siwalankerto

More information

Understanding IP Faxing (Fax over IP)

Understanding IP Faxing (Fax over IP) Understanding IP Faxing (Fax over IP) A detailed technical overview of how VoIP technology and IP Faxing (Fax over IP) are changing the way organizations utilize existing network infrastructures for voice

More information

CTX OVERVIEW. Ucentrik CTX

CTX OVERVIEW. Ucentrik CTX CTX FACT SHEET CTX OVERVIEW CTX SDK API enables Independent Developers, VAR s & Systems Integrators and Enterprise Developer Teams to freely and openly integrate real-time audio, video and collaboration

More information

An Introduction to VoIP Protocols

An Introduction to VoIP Protocols An Introduction to VoIP Protocols www.netqos.com Voice over IP (VoIP) offers the vision of a converged network carrying multiple types of traffic (voice, video, and data, to name a few). To carry out this

More information

Mobile Softphone. Mobile softphones. iphone mobile softphone

Mobile Softphone. Mobile softphones. iphone mobile softphone Mobile softphones VoipSwitch Voiceserve offers unrivaled softphones for all popular Smartphone platforms. Support for high rate compression codecs, SMS, VoIP Tunnel solution and more. IPhone/IPod - with

More information

Vehicle Tracking System,

Vehicle Tracking System, Vehicle Tracking System, The Complete Solution What is GPS? Product Review. Complete system. Contact Us. What is GPS? GPS, which stands for Global Positioning System, is the only system today able to show

More information

Indoor Surveillance Security Robot with a Self-Propelled Patrolling Vehicle

Indoor Surveillance Security Robot with a Self-Propelled Patrolling Vehicle C Indoor Surveillance Security Robot with a Self-Propelled Patrolling Vehicle Hou-Tsan Lee, Wei-Chuan Lin, Jing-Siang Huang Department of Information Technology, TakMing University of Science and Technology

More information

Internet Technology Voice over IP

Internet Technology Voice over IP Internet Technology Voice over IP Peter Gradwell BT Advert from 1980s Page 2 http://www.youtube.com/v/o0h65_pag04 Welcome to Gradwell Gradwell provides technology for every line on your business card Every

More information

PortGo 6.0 for Wndows User Guide

PortGo 6.0 for Wndows User Guide PortGo 6.0 for Wndows User Guide PortSIP Solutions, Inc. sales@portsip.com http:// @May 20, 2010 PortSIP Solutions, Inc. All rights reserved. This User guide for PortGo Softphone 6.0. 1 Table of Contents

More information

HMS Industrial Networks

HMS Industrial Networks HMS Industrial Networks Putting industrial applications on the cloud Whitepaper Best practices for managing and controlling industrial equipment remotely. HMS Industrial Networks AB Stationsgatan 37 30245

More information

Remote Monitoring and Controlling System Based on ZigBee Networks

Remote Monitoring and Controlling System Based on ZigBee Networks Remote Monitoring and Controlling System Based on ZigBee Networks Soyoung Hwang and Donghui Yu* Department of Multimedia Engineering, Catholic University of Pusan, South Korea {soyoung, dhyu}@cup.ac.kr

More information

Android Environment SDK

Android Environment SDK Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 2A. Android Environment: Eclipse & ADT The Android

More information

Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser

Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser Remote Desktop Access through Android Mobiles and Android Mobiles Access through Web Browser 1 Karan Sandeep Bhandari, 2 Vishnu Baliram Mandole, 3 Akash Dattatray Munde, 4 Sachin B. Takmare Bharati Vidyapeeth

More information

ANDROID LEVERED DATA MONITORING ROBOT

ANDROID LEVERED DATA MONITORING ROBOT ANDROID LEVERED DATA MONITORING ROBOT 1 HIMANI PATHAK, 2 VIDYALAKSHMI KRISHNAKUMAR, 3 SHILPA RAVIKUMAR, 4 AJINKYA SHINDE 1,2,3,4 Electronics & Telecommunication Engineering, Fr. C. R. Institute of Technology,

More information

CT522-128 LANforge WiFIRE Chromebook 802.11a/b/g/n WiFi Traffic Generator with 128 Virtual STA Interfaces

CT522-128 LANforge WiFIRE Chromebook 802.11a/b/g/n WiFi Traffic Generator with 128 Virtual STA Interfaces 1 of 8 Network Testing and Emulation Solutions http://www.candelatech.com sales@candelatech.com +1 360 380 1618 [PST, GMT -8] CT522-128 LANforge WiFIRE Chromebook 802.11a/b/g/n WiFi Traffic Generator with

More information

SIP Protocol as a Communication Bus to Control Embedded Devices

SIP Protocol as a Communication Bus to Control Embedded Devices 229 SIP Protocol as a Communication Bus to Control Embedded Devices Ramunas DZINDZALIETA Institute of Mathematics and Informatics Akademijos str. 4, Vilnius Lithuania ramunas.dzindzalieta@gmail.com Abstract.

More information

Delivery of Voice and Text Messages over LTE

Delivery of Voice and Text Messages over LTE Delivery of Voice and Text Messages over LTE 1. The Market for Voice and SMS! 2. Third Party Voice over IP! 3. The IP Multimedia Subsystem! 4. Circuit Switched Fallback! 5. VoLGA LTE was designed as a

More information

M2M and the PICtail Plus Daughter Board

M2M and the PICtail Plus Daughter Board M2M and the PICtail Plus Daughter Board By Adam Folts Hello, my name is Adam Folts. I am an Applications Engineer at Microchip. This webinar discusses the machine to machine board, M2M, its features, and

More information

Open Source building blocks for the Internet of Things. Benjamin Cabé JFokus 2013

Open Source building blocks for the Internet of Things. Benjamin Cabé JFokus 2013 Open Source building blocks for the Internet of Things Benjamin Cabé JFokus 2013 Who I am Benjamin Cabé Open Source M2M Evangelist at Sierra Wireless Long-time Eclipse lover M2M? IoT? Technology that supports

More information

Six Questions to Answer When Buying a Phone System

Six Questions to Answer When Buying a Phone System 2016 NEW PHONE SYSTEM BUYER S GUIDE Six Questions to Answer When Buying a Phone System In addition to the most comprehensive portfolio of voice communications, data and wireless networking products in

More information

Understanding IP Faxing (Fax over IP)

Understanding IP Faxing (Fax over IP) A RICOH COMPANY Understanding IP Faxing (Fax over IP) A detailed technical overview of how VoIP technology and IP Faxing (Fax over IP) are changing the way organizations utilize existing network infrastructures

More information

1 VoIP/PBX Axxess Server

1 VoIP/PBX Axxess Server - 1 1 VoIP/PBX Axxess Server The Axxess Server supports comprehensive Voice Over Internet Protocol network services, which are based on the Open Source Asterisk VoIP software. The Axxess Server VoIP telephony

More information

Avaya IP Office Unified Communications for Small Business

Avaya IP Office Unified Communications for Small Business Avaya IP Office Unified Communications for Small Business Unified Communications for Small Business is a suite of applications that: Turns a home phone into an IP Office telephone with the Phone Manager

More information

Introduction to Computer Networks and Data Communications

Introduction to Computer Networks and Data Communications Introduction to Computer Networks and Data Communications Chapter 1 Learning Objectives After reading this chapter, you should be able to: Define the basic terminology of computer networks Recognize the

More information

Wireless Day / Night Cloud Camera TV-IP751WIC (v1.0r)

Wireless Day / Night Cloud Camera TV-IP751WIC (v1.0r) (v1.0r) TRENDnet s Wireless Day / Night Cloud Camera, model, takes the work out of viewing video over the internet. Previously to view video remotely, users needed to perform many complicated and time

More information

Integration of Voice over Internet Protocol Experiment in Computer Engineering Technology Curriculum

Integration of Voice over Internet Protocol Experiment in Computer Engineering Technology Curriculum Integration of Voice over Internet Protocol Experiment in Computer Engineering Technology Curriculum V. Rajaravivarma and Farid Farahmand Computer Electronics and Graphics Technology School of Technology,

More information

This document specifies the software requirements of CrossTalk+ A VoIP softphone. It describes the specifications of all components of CrossTalk.

This document specifies the software requirements of CrossTalk+ A VoIP softphone. It describes the specifications of all components of CrossTalk. 1. Introduction CrossTalk+ is a VoIP (Voice over IP) softphone which lets you call anywhere in the world at nominal rates. CrossChat the chat component of CrossTalk enables you to chat with people speaking

More information

Board also Supports MicroBridge

Board also Supports MicroBridge This product is ATmega2560 based Freeduino-Mega with USB Host Interface to Communicate with Android Powered Devices* like Android Phone or Tab using Android Open Accessory API and Development Kit (ADK)

More information

ShareLink 200 Setup Guide

ShareLink 200 Setup Guide ShareLink 00 Setup Guide This guide provides instructions for installing and connecting the Extron ShareLink 00. The ShareLink USB 00 Wireless Collaboration Gateway allows anyone to present content from

More information

Smart wayside management software

Smart wayside management software Smart wayside management software FleetWise is innovative wayside data management software specifically designed to help transit authorities achieve superior fleet performance by collecting, distributing

More information

[Fig:1 - Block diagram]

[Fig:1 - Block diagram] Wearable live streaming gadget using Raspberry pi Akash Dhamasia Kunal Prajapati Prof. Parita Oza Nirma University Nirma University Nirma University Ahmedabad, India Ahmedabad, India Ahmedabad, India akash.dhamasia12@gmail.com

More information

icall VoIP (User Agent) Configuration

icall VoIP (User Agent) Configuration icall VoIP (User Agent) Configuration 1 General 1.1 Topic General Document summarizing the general requirements for the configuration of VoIP hardware and / or software to utilize the icall service. 1.2

More information

UC-One. Epik. UC-One Quick Guide. Quick Guide For Apps. Why we love UC-One

UC-One. Epik. UC-One Quick Guide. Quick Guide For Apps. Why we love UC-One Quick Guide For Apps Epik UC-One UC-One is part of our Epik suite enabling you to access all your communication services, telephony, video, IM and presence from any supported device. Contact Integration

More information

Enabling Smart Data on M2M Gateways and Aggregators

Enabling Smart Data on M2M Gateways and Aggregators Enabling Smart Data on M2M Gateways and Aggregators How OSGi and Java enables smart data on M2M aggregators and gateways. 3/27/2013 Hitachi Communication Technologies America, Inc. Walt Bowers Chief Architect

More information

Applying Mesh Networking to Wireless Lighting Control

Applying Mesh Networking to Wireless Lighting Control White Paper Applying Mesh Networking to Wireless Lighting Control www.daintree.net Abstract Recent advances in wireless communications standards and energy-efficient lighting equipment have made it possible

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

Wireless PTZ Cloud Camera TV-IP851WC (v1.0r)

Wireless PTZ Cloud Camera TV-IP851WC (v1.0r) (v1.0r) TRENDnet s Wireless PTZ Cloud Camera, model, takes the work out of viewing video over the internet. Previously to view video remotely, users needed to perform many complicated and time consuming

More information

Vonage Business Solutions for Android User Guide

Vonage Business Solutions for Android User Guide Vonage Business Solutions for Android User Guide 1 Vonage Business Solutions, Inc. 1375 Peachtree Street, NE Suite 200 Atlanta, GA 30309 Sales 1-877-862-2562 Support 1-866-901-0242 www.vonagebusiness.com

More information

CMR Journal of Engineering and Technology Vol.1 Issue.1 January 2016

CMR Journal of Engineering and Technology Vol.1 Issue.1 January 2016 VEHICLE TRACKING SYSTEM WITH ANDROID APP SUPPORT ABSTRACT M. Sudhakar Professor Dept of ECE CMR College of Engineering & Technology Kandlakoya, Medchal Rd, Hyderabad e-mail: vp@cmrcet.org K.Kalyani PG

More information

X X X X X. Platinum Edition. Unlimited Extensions. Unlimited Auto Attendants. Unlimited Voicemail Boxes. ACD Features

X X X X X. Platinum Edition. Unlimited Extensions. Unlimited Auto Attendants. Unlimited Voicemail Boxes. ACD Features Feature Name Unlimited Extensions Unlimited Auto Attendants Unlimited Voicemail Boxes ACD Features Feature Description With Evo IP-PB you can add an extension at any time, with no limits and no need to

More information

Linphone based Video Door Entry Intercom System

Linphone based Video Door Entry Intercom System Linphone based Video Door Entry Intercom System Solution description Office: Le Trident Bat D 34, avenue de l Europe 38100 Grenoble France Tel. : +33 (0)9 52 63 65 05 Headquarters: 12, allée des Genêts

More information

CrossTalk is a VoIP (Voice over IP) softphone which lets you call anywhere in the world at nominal rates.

CrossTalk is a VoIP (Voice over IP) softphone which lets you call anywhere in the world at nominal rates. 1. Introduction CrossTalk is a VoIP (Voice over IP) softphone which lets you call anywhere in the world at nominal rates. 1.1 Purpose This document specifies the software requirements of CrossTalk v1.04

More information

Fleet Health Monitoring and Machine Learning Technology for CBM+

Fleet Health Monitoring and Machine Learning Technology for CBM+ Fleet Health Monitoring and Machine Learning Technology for CBM+ Felix Heimes Prognostics and Health Management Chief Engineer felix.o.heimes@baesystems.com (607) 770-5743 The information contained in

More information

The evolution of data connectivity

The evolution of data connectivity Leveraging the Benefits of IP and the Cloud in the Security Sector The CCTV and alarm industry has relied on analogue or Integrated Services Digital Network (ISDN) communications to provide data connectivity

More information

Introduction. Mobile GIS emerged in the mid-1990s to meet the needs of field work such as surveying and utility maintenance.

Introduction. Mobile GIS emerged in the mid-1990s to meet the needs of field work such as surveying and utility maintenance. Mobile GIS Introduction With more than 6.8 billion mobile cellular subscribers, (2013), wireless communication and mobile computing have gained acceptance worldwide with speed that has surpassed many other

More information