CyberOffice: A Smart Mobile Application for Instant Meetings

Size: px
Start display at page:

Download "CyberOffice: A Smart Mobile Application for Instant Meetings"

Transcription

1 , pp CyberOffice: A Smart Mobile Application for Instant Meetings Dong Kwan Kim 1 and Jae Yoon Jung 2 1 Department of Computer Engineering, Mokpo National Maritime University Jeonnam, , Korea 2 Department of Multimedia Engineering, Catholic University of Pusan Pusan, , Korea 1 dongkwan@mmu.ac.kr, 2 abcd4412@gmail.com Abstract Even though web-based conferencing applications enable the user to overcome spatial constraints, they require additional presentation facilities such as beam projectors, computers, and video presentation aids. Most of all, Internet connection is an essential element to connect the participants. Such a Web conferencing may be well suited for formal meetings or presentations rather than small-scale group meetings. To improve the promptness and availability, meeting applications for small-scale group meetings should mitigate communication constraints and reduce initial setup time. In this paper, we present the design and implementation of a smart meeting Android application called CyberOffice which is based on Wi-Fi Direct. Our application enables a presenter to start meetings quickly anywhere at any time without Internet connection. In addition, there is no need for necessary devices except an Android smartphone to join a meeting. The proposed application indicates that the Wi-Fi Direct APIs of the Android platform can be effectively applied for file sharing and event exchanges. Keywords: Smart Meeting Application, Wi-Fi Direct, Android Platform, Real-time Synchronization 1. Introduction The rapid proliferation of mobile devices leads to the development of various mobile applications ranging from entertainment, education, health to business. According to the prediction of Gartner, mobile phones will overtake PCs as the most common Web access device worldwide by 2013 [1]. In addition, the worldwide application stores accelerate the distribution of mobile applications by encouraging software developers to upload their products. In particular, we can find that there is a variety of business applications at Google Play [2] and these applications provide meeting support and schedule management. Among them, we focus on mobile apps for presentations or meetings. Most of Web conferencing products are based on a client/server environment--a presentation file places on a server and a mobile phone is used to control the screen of the shared file at a near distance. While a personal computer as server stores a presentation file and runs a meeting application, a mobile device as client is used to simply browse or remotely control the presentation file on a server. Even though Web conferencing applications have been utilized for daily meetings, they may not be well suited for small-scale group meetings which frequently take place outdoors or at meeting rooms equipped without presentation facilities such as beam projectors, video presentation aids, and Internet connection. For instant and quick meetings, mobile devices can ISSN: IJSEIA Copyright c 2014 SERSC

2 be utilized to minimize complicated and time-consuming configuration installation. Furthermore, such an application needs to offer easy-to-use interfaces and communication capabilities without Internet connection. To this end, we propose an online meeting application called CyberOffice for the smallscale group meetings or business presentations. Our application is based on Wi-Fi Direct [3, 4] which makes it possible to conduct meetings without Internet connection. Wi-Fi Direct is a communication standard that allows Wi-Fi devices to connect to each other without the need for a wireless access point or Internet connection. Therefore, with Wi-Fi Direct, informal meetings or presentations can take place anywhere at any time on campus, outdoor places, etc. The proposed smart meeting application enables presenters to start meetings using mobile phones to invite participants. In addition, it provides screen-sharing functionality which allows presenters to share their screen with their participants during presentations. The rest of this paper is structured as follows. Section 2 briefly summarizes existing online meeting applications. Sections 3 and 4 describe design consideration and implementation issues of our smart meeting application. Section 5 presents concluding remarks and future work. 2. Related Work In most mobile applications for meetings, a mobile device looks like a simple browser or a remote controller namely, a mobile device as client can simply browse or remotely control a presentation file on a server. In contrast, our application supports peer-to-peer communication among mobile devices without any server. Our application is installed on mobile devices directly connected through Wi-Fi Direct and each participated mobile device has a presentation file locally. Furthermore, one technical advantage of our meeting application is that it can control the screen of the client by using real-time page synchronization [5]. The typical architecture of the meeting application is based on the Internet network and a smartphone can remotely move a page of a presentation file on a server during a meeting. The smartphone connects the server through its IP address and port number. They support socket communication and allow for simply changing page numbers. Some applications focus on viewing meeting documents by supporting popular document formats such as Microsoft PowerPoint, Excel, and Word. In general, these applications do not allow the user to edit the document which places on a local storage. AllShare Play by Samsung allows for sharing digital contents among devices including TVs, PCs, Tablets, and mobile phones. It is based on the local network and is implemented by extending file sharing with remote machines. Since this service is not open but proprietary, all the devices need to be registered to get an individual account number. Therefore, the contents sharing service is not supported between Samsung digital products and others. The AllShare Play functionality of Galaxy S III is similar to our method in that mobile devices can share simple comments as well as files. However, our smart meeting application supports device independence namely, it can run on a variety of mobile devices in which the Android platform 4.0 or later is installed. 44 Copyright c 2014 SERSC

3 3. Design of Smart Meeting Application Figure 1. Managing Meeting Groups-making Groups, Getting IP Addresses and Transferring Presentation Files among Participants Figure 1 illustrates three main steps for managing meeting groups--building meeting groups, getting IP addresses from meeting all the participants and transferring presentation files among participants. When the meeting application starts, a group owner (i.e., a presenter) can create a meeting group where meeting participants will join. The group owner waits for join requests from participants. When a participant device enters into the range of the Wi-Fi Direct host (i.e., a group owner), it can be connected with a group owner by the existing ad-hoc protocol. After the connection between them has been established using the Wi- Fi Direct, the participant can ask the group owner to join the meeting group. Once the participant has joined the group, he or she sends an IP address the group owner. For unicast communication, the group owner stores the IP address to an Arraylist. The group owner uses the IP addresses to manage synchronization issues between group owner and participant. The participants wait for a meeting file in PDF format via socket connection. By selecting a meeting file, the group owner can distribute it to the all the waiting participants. The main feature of our application is to control remotely the screen of the participant s mobile device. As shown in Figure 2, the group owner and participants share the same page of the presentation file by using the real-time remote control. To change the page number, the group owner scrolls up and down the screen or pushes the volume key. Whenever the page number changes, a current page number is sent to all the participants via socket connection. As soon as a new page number arrives, the page of the presentation file at the participant side goes to the new one. All participants in the meeting group share the same page as that of the group owner. The participant can also move the page of the presentation PDF file. However, the new page number is not sent to the group owner and the other group members. The remote control of the group owner includes page moving, screen rotation, zoom-in, zoom-out, and comments. To use zoom-in and zoom-out, the group owner enlarges or minimizes the specific area of the presentation file. Such events are sent to the all group members and their screens are synchronized with that of the group owner. Copyright c 2014 SERSC 45

4 The group members can share questions or comments on the presentation file. The participant can ask for authorization to question and then the group owner allows or rejects the request. When the group owner accepts the request of the participant, the participant can give a question. The group owner answers to the question of the participant. The questions and answers are shared with the other group members. Figure 2. Synchronizing the Current Page and Notes among Participants Our smart meeting application needs to use relatively frequent data transmission for page and note synchronization during the meeting. For the better performance, the application extends AsyncTask which is an abstract class and allows to perform background operations and publish results on the UI thread. Using AsyncTask enables the participant to receive and process necessary data depending on the situation in an efficient way. The common data set includes page numbers, notes, and IP addresses. Threads are used to receive data in the general mobile programming model a separate and dedicated thread is created and is ready to handle data. The disadvantage of using a thread is that the application should deal with the UI access of the meeting application in a separate way. To use AsyncTask makes it possible to manage thread resources conveniently and improve UI accessibility. Table 1. Extending the AsyncTask Class public class MyAsyncTask extends AsyncTask<Void, Integer, Integer>{ public Integer doinbackground(void... params) { serversocket = new ServerSocket(PORT); Socket client = serversocket.accept(); BufferedReader in = new BufferedReader( new InputStreamReader(client.getInputStream())); String tmp = in.readline(); return data; } public void onpostexecute(integer result){ if (FLAG == PAGE){ Page_AsyncTask_execute(); }else if (FLAG == NOTE) { Note_AsyncTask_execute(); } } } 46 Copyright c 2014 SERSC

5 Table 1 shows class MyAsyncTask extends AsyncTask and overrides the necessary methods including doinbackground and onpostexecute. When MyAsyncTask starts, the doinbackground method deals with data transmission and waits a socket from a client. The method processes the received data and then passes a return value to the UI thread for the next processing. The onpostexecute method visually represents the received return value on the UI screen. If a page number is received, the screen switches to the received page number. If note data is transmitted, it is drawn on the local screen. As seen in Table 1, some flag values are assigned to see if a received data is related to pages or notes. The MyAsyncTask class will run properly according to the data. For the precise note synchronization, we have to consider the resolution mismatch of an Android device. While iphones are produced by only a single company, Android devices are built by different manufacturers. Due to Android s openness, device vendors are free to produce a wide variety of different mobile devices. Hence, even though the product model of devices is the same, their screen sizes might be different. In these circumstances, synchronization problems could occur among devices during a meeting. Due to the screen resolution mismatch, a note of a device may be drawn at the different position on other device. The smart meeting application adjusts for the difference of the screen size by applying a mapping algorithm. According to the mapping algorithm, a device needs to send its screen size as well as a note coordinate to other devices. Each Android device stores the screen size of the sender and calculates the right position where the received note will be drawn. Table 2 shows the mapping algorithm at the source code level. Table 2. Adjusting the Different Screen Resolution double result_rate_x = my_displaysize_x / received_displaysize_x; double result_rate_y = my_displaysize_y / received_displaysize_y; float tmp_x_loc = Float.valueOf(tmp_location_x).floatValue(); float tmp_y_loc = Float.valueOf(tmp_location_y).floatValue(); float my_x_loc = (float) (tmp_x_loc * result_rate_x); float my_y_loc = (float) (tmp_y_loc * result_rate_y); 4. Implementation of Smart Meeting Application We have developed a smart meeting application on the Android platform [6-8] which is one of the major mobile frameworks. Android 4.0 (API level 14) or later provides the Wi-Fi Direct APIs that consist of necessary Java classes and methods. Since our application is based on Wi-Fi Direct, it can be used without Internet connection. It is a useful feature for applications that share presentation files and events among users. The application development environment has included the APV PDF viewer [9], Eclipse Juno [10], JDK, Android SDK, and NDK. An Android smartphone is required to run Android platform 4.0 or higher version for WiFi-Direct API. Once the meeting application starts, an application user tries to search other users around by using the Discover button at the upper right corner. According to search results, the user can choose the connection or disconnection. In the meeting application, there are two roles a group owner and a participant. The group owner is a person who creates a virtual meeting room to discuss some agenda and organizes a meeting. The Copyright c 2014 SERSC 47

6 participant can log in the meeting group and compare notes about the agenda. Therefore, the group owner has the permission to accept or reject a user request to join the meeting group. If the request is accepted, the user becomes a member of the meeting group. After the meeting participants have joined, the group owner can distribute a meeting material among the participants via WiFi-Driect connection. A "File Explorer" button on the main screen of the group owner will be activated and the participants will be waiting for a meeting file in PDF format via socket connection. When the group owner clicks the "File Explorer" button to send the meeting file, the directory structure of the local storage displays in the form of ListView. By selecting the meeting file, the group owner can send it to the all the waiting participants. Figure 3 shows the initial screens of both the group owner and the participant after the meeting material has been transmitted successfully. As soon as the meeting file is received, it will be open immediately on the participant device. After the initial connection setup has been finished, the socket connection remains available between the group owner and the participant. The group owner can wait to receive questions from the participant or transmit the updated page number of the meeting file. Whenever the group owner changes the page number of the meeting file by using the scroll bar or volume button on the device, the updated page number is sent to the participant and then the page of the presentation file on the participant device will switch to that page. (a) Group owner (b) Participant Figure 3. Initial Screen Shots of Group Owner and Participant The participant shown in Figure 4 (b) can ask questions to the group owner using an option menu shown in Figure 4. In Figure 4, the option menu contains four menu items page moving, searching, question/note deleting, and asking. To avoid the communication confusion during the meeting, the only participant who has the permission to ask can send a question to the meeting participants including the group owner. 48 Copyright c 2014 SERSC

7 (a) Group owner (b) Participant Figure 4. Requesting for Permission to Ask As shown in Figure 5, the group owner can accept or reject the request for questioning by taking into account meeting situations. When the "Asking" menu item is chosen on the participant device, a predefined flag value is transmitted to the group owner. Upon accepting the request for questioning, the group owner enters the standby mode to receive comments or opinions from the authorized participant. (a) Group owner (b) Participant Figure 5. Accepting or Rejecting the Request of the Participant Copyright c 2014 SERSC 49

8 Figure 6 shows the participant shares some notes on the presentation slide with the group owner. The note can be lines, arrows, circles, stars, rectangles, or short text messages. The participant has to send the coordinates as well as the contents of the notes to the group owner. On the basis of the coordinate data, the group owner draws the notes on the slide. For the precise note presentation, we should consider the different size of the screen. Our application could run on mobile devices that occasionally have different screen size. Even if we use mobile devices with the same product model, their screen size would be different. Therefore, some notes of the group owner would be represented at the different location on the audience device. To address this issue, the note producer sends note contents, note location, and screen size information. The note receivers map the note location to the proper position of their screen. The screen size can be acquired from the system information provided by the Android platform. As you see in Figure 6, the notes of the participant are drawn in red and the others are represented in green. The group owner can answer to the question using the same note functionality as the participant asks a question. As mentioned above, the answer notes will be displayed in red on the screen of the group owner. (a) Group owner (b) Participant Figure 6. Sharing Comments on the Presentation Slide 5. Conclusions and Future Work We have introduced a novel meeting Android application based on Wi-Fi Direct which is supported on Android 4.0 or later. The meeting application is applicable for informal and quick group presentations when meeting facilities including beam projectors and computers are not available. The first feature of the application is that Internet connection is not required to use the application. Meeting participants can create a meeting group using Wi-Fi Direct without Internet access. Once all the participants are connected, they can communicate with one another via socket connection. Secondly, as the group owner starts and coordinates the meeting, all the participants share presentation files or comments during a meeting. Finally, the meeting application makes it possible to display the same page and notes on the screen of 50 Copyright c 2014 SERSC

9 the participant using page and note synchronization. We also address the issue of the screen resolution difference across Android devices using the automatic mapping function. As future work, we are going to enhance the remote control functionality by adding new features such as highlighting and word finding. In addition, we plan to develop a new drawing algorithm for the elaborate note presentation. There is still room for improvement in simultaneously sharing complex notes among the participants. One of the most interesting future tasks is to display handwritten Korean characters in an effective way. The current version of the application has a limitation on representing relatively small-size Korean characters. Acknowledgements This research was supported by Basic Science Research Program through the National Research Foundation of Korea (NRF) funded by the Ministry of Education, Science and Technology (2012R1A1A ). References [1] Gartner highlights key predictions for it organizations and users in 2010 and beyond, (2010). [2] Google Play, (2013). [3] Wi-Fi Direct, (2013). [4] Android APIs for Wi-Fi Direct, (2013). [5] J. Y. Jung and D. K. Kim, Development of an Instant Meeting Android Application Using Wi-Fi Direct APIs, Communications in Computer and Information Science, Springer, vol. 340, (2012), pp [6] Android developer site, (2013). [7] N. Gandhewar and R. Sheikh, Google Android: An Emerging Software Platform For Mobile Devices, International Journal on Computer Science and Engineering (IJCSE), (2010). [8] M. Gargenta, Learning Android, O'Reilly, (2011). [9] APV PDF Viewer, (2013). [10] Eclipse Integrated Development Environment, (2013). Authors Dong Kwan Kim is an Assistant Professor in the Department of Computer Engineering at Mokpo National Maritime University. His research interests include dynamic software updating, run-time systems, and mobile programming. Jae Yoon Jung received his B.S. degree from Catholic University of Pusan in He develops mobile applications at a startup company. Copyright c 2014 SERSC 51

10 52 Copyright c 2014 SERSC

Fast Location-based Association of Wi-Fi Direct for Distributed Wireless Docking Services

Fast Location-based Association of Wi-Fi Direct for Distributed Wireless Docking Services Fast Location-based Association of Wi-Fi Direct for Distributed Wireless Docking Services Jina Han Department of Information and Computer Engineering Ajou University Suwon, South Korea hangn0808@ajou.ac.kr

More information

Interactive Distance Learning based on SIP

Interactive Distance Learning based on SIP S. Sae-Wong, T. Kamolphiwong, S. Kamolphiwong, and N. Wittayasirikul Centre for Network Research (CNR), Department of Computer Engineering, Faculty of Engineering, Prince of Songkla University, Hatyai,

More information

Implementation of Smart Car Infotainment System including Black Box and Self-diagnosis Function

Implementation of Smart Car Infotainment System including Black Box and Self-diagnosis Function , pp.267-274 http://dx.doi.org/10.14257/ijseia.2014.8.1.23 Implementation of Smart Car Infotainment System including Black Box and Self-diagnosis Function Minyoung Kim 1, Jae-Hyun Nam 2 and Jong-Wook Jang

More information

NovoConnect B360. Wireless Presentation & Collaboration System. User Manual Version 0.99

NovoConnect B360. Wireless Presentation & Collaboration System. User Manual Version 0.99 NovoConnect B360 Wireless Presentation & Collaboration System User Manual Version 0.99 Copyright 2013 DELTA Electronics, Inc. All rights reserved. Page 1 Table of Contents 1. GETTING STARTED...4 1.1 Package

More information

WebEx User Guide Cloud Connected Audio Service Meeting Centre. Version 0.9

WebEx User Guide Cloud Connected Audio Service Meeting Centre. Version 0.9 WebEx User Guide Cloud Connected Audio Service Meeting Centre Version 0.9 February 19, 2018 Contents 3 Purpose 3 Target Audience 3 WebEx Meeting Room Types 5 Review of Main Pages 6 Log In Page 7 Main Page

More information

Help us make this document better smarttech.com/docfeedback/ SMART Ink 3.1 USER S GUIDE FOR WINDOWS OPERATING SYSTEMS

Help us make this document better smarttech.com/docfeedback/ SMART Ink 3.1 USER S GUIDE FOR WINDOWS OPERATING SYSTEMS Help us make this document better smarttech.com/docfeedback/170830 SMART Ink 3.1 USER S GUIDE F WINDOWS OPERATING SYSTEMS Trademark notice SMART Ink, SMART Notebook, SMART Meeting Pro, Pen ID, smarttech,

More information

TIS/App Delivery Mobility Job Aid: Install and Configure Microsoft Outlook on Your iphone. Overview. Job Aid: Outlook for Mobile - iphone

TIS/App Delivery Mobility Job Aid: Install and Configure Microsoft Outlook on Your iphone. Overview. Job Aid: Outlook for Mobile - iphone TIS/App Delivery Mobility Job Aid: Install and Configure Microsoft Outlook on Your iphone Overview The job aid is for Colleagues that want to access Outlook (part of Office O365) work email on their mobile

More information

NovoConnect B360. Wireless Presentation & Collaboration System. User Manual Version 0.98

NovoConnect B360. Wireless Presentation & Collaboration System. User Manual Version 0.98 NovoConnect B360 Wireless Presentation & Collaboration System User Manual Version 0.98 Copyright 2013 DELTA Electronics, Inc. All rights reserved. Page 1 Table of Contents TABLE OF CONTENTS... 2 1. GETTING

More information

Ringling College ShareLink Devices

Ringling College ShareLink Devices Ringling College ShareLink Devices Accessing the Device from a Mac or PC Laptop 1. Turn on the monitor in the room 2. You should see a welcome screen similar to the one shown below Figure 1- ShareLink

More information

Business Products Quick Reference Bundle

Business Products Quick Reference Bundle Business Products Quick Reference Bundle TABLE OF CONTENTS Section 1 Getting Started with Your SMART Board 800 Series Interactive Whiteboard 4 Subsection 1.1 Turning On Your Interactive Whiteboard 4 Subsection

More information

Mobile App Guide Utility Telecom Accession Communicator

Mobile App Guide Utility Telecom Accession Communicator Mobile App Guide Utility Telecom Accession Communicator This guide is intended to help you understand how to set up Accession Communicator V2.28 for your smartphone. If you have any questions, call us

More information

CommzGate Cloud SMS User Guide

CommzGate Cloud SMS User Guide CommzGate Cloud SMS User Guide 2014 Welcome! This User Guide takes a visual approach to introducing you to the features found on the CommzGate Cloud SMS Web Portal. Each major part of the User Interface

More information

RVC3000 User Guide VERSION 1.2. Vytru, Inc. 0

RVC3000 User Guide VERSION 1.2. Vytru, Inc. 0 2015 RVC3000 User Guide VERSION 1.2 Vytru, Inc. 0 Contents 1.1 Vytru RVC3000 System... 2 1.2 About Vytru RVC3000 User Guide... 2 2. Getting Started with the RVC3000... 2 2.1 Powering the System On and

More information

ShareLink 200 N Setup Guide

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

More information

E-Training Content Delivery Networking System for Augmented Reality Car Maintenance Training Application

E-Training Content Delivery Networking System for Augmented Reality Car Maintenance Training Application E-Training Content Delivery Networking System for Augmented Reality Car Maintenance Training Application Yu-Doo Kim and Il-Young Moon Korea University of Technology and Education kydman@koreatech.ac.kr

More information

SMART Board Interactive Whiteboard Basics

SMART Board Interactive Whiteboard Basics SMART Board Interactive Whiteboard Basics This Quick Reference Guide provides an overview of the information you need to begin using a SMART Board interactive whiteboard. Before you begin, make sure the

More information

OnView Mobile Monitoring

OnView Mobile Monitoring User Manual OnView Mobile Monitoring Table of Contents 1. Introduction...2 1.1 Application Description...2 1.2 Phone Compatibility...2 1.3 Where to Download the App...2 2. Application Function...2 2.1

More information

How to use this monitor screen

How to use this monitor screen How to use this monitor screen You connect to this monitor wirelessly using Extron ShareLink 200. You can mirror your computer or show content from your tablet computer IOS 9Apple) or Android. Please keep

More information

2 Kickle : User Guide

2 Kickle : User Guide User guide 2 Kickle : User Guide Contents Meet Kickle 5 Introduction 6 Presentation of the Kickle interface 8 The Kickle meeting room interface 10 Whiteboard 13 Launching the whiteboard 14 Using the whiteboard

More information

Create Interactive Signage with Discover Video s DEVOS Solution

Create Interactive Signage with Discover Video s DEVOS Solution Digital Signage WITH DISCOVER VIDEO Create Interactive Signage with Discover Video s DEVOS Solution Easily Create Custom Signage Experience how simple it is to create digital signs with custom content

More information

WebEx Meeting Center TM Pro 6.2

WebEx Meeting Center TM Pro 6.2 BT Web Conferencing Powered by WebEx TM WebEx Meeting Center TM Pro 6.2 For collaborative meetings with 2 to 500 participants USER GUIDE Version 1.0. Last revised January 7, 2005 With BT Web Conferencing

More information

Blackboard Collaborate Ultra 2018 UT DALLAS USER MANUAL

Blackboard Collaborate Ultra 2018 UT DALLAS USER MANUAL Blackboard Collaborate Ultra 208 UT DALLAS USER MANUAL UT Dallas elearning ELEARNING@UTDALLAS.EDU SPRING 208 Table of Contents Introduction... 3 Browser Support... 3 Blackboard Collaborate Ultra inside

More information

QUICK START GUIDE NTS HOSTED PBX CALL MANAGER. Welcome. Getting Oriented

QUICK START GUIDE NTS HOSTED PBX CALL MANAGER.   Welcome. Getting Oriented QUICK START GUIDE NTS HOSTED PBX Welcome Welcome to NTS Hosted PBX! This guide is intended to get you up and running with the basic features associated with the product. For more in-depth information,

More information

DOWNLOAD OR READ : MY SAMSUNG GALAXY TAB 3 PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : MY SAMSUNG GALAXY TAB 3 PDF EBOOK EPUB MOBI DOWNLOAD OR READ : MY SAMSUNG GALAXY TAB 3 PDF EBOOK EPUB MOBI Page 1 Page 2 my samsung galaxy tab 3 my samsung galaxy tab pdf my samsung galaxy tab 3 Legal Notices ii Samsung KNOX Samsung KNOXâ is Samsungâ

More information

TIS/App Delivery Mobility Job Aid: Install and Configure Microsoft Outlook on Your Android Phone. Overview. Job Aid: Outlook for Mobile - Android

TIS/App Delivery Mobility Job Aid: Install and Configure Microsoft Outlook on Your Android Phone. Overview. Job Aid: Outlook for Mobile - Android TIS/App Delivery Mobility Job Aid: Install and Configure Microsoft Outlook on Your Android Phone Job Aid: Outlook for Mobile - Android Overview The job aid is for Colleagues that want to access Outlook

More information

Dragon Printer ver. 1.0

Dragon Printer ver. 1.0 1 Dragon Printer ver. 1.0 Printing Everything To Any Printer...2 Documents Management...3 Printing Documents...4 Printing Photos, Pictures from Camera Roll...7 Printing Web Pages...8 Printing Clipboard

More information

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Glossary A B C D E F G H I J K L M N O P Q R S T U V W X Y Z A App See Application Application An application (sometimes known as an app ) is a computer program which allows the user to perform a specific

More information

Using SFB Web App for Windows

Using SFB Web App for Windows Using SFB Web App for Windows Table of Contents What Is It?... 3 Required Plug ins... 3 Information for Online Meetings and Conference Calls... 4 Join a Meeting... 5 Access Meeting Audio... 7 View Information

More information

Zoom User Manual. developed. Gary P. Davis. and. David J. Ayersman. for. Students and Employees of New River Community and Technical College

Zoom User Manual. developed. Gary P. Davis. and. David J. Ayersman. for. Students and Employees of New River Community and Technical College Zoom User Manual developed by Gary P. Davis and David J. Ayersman for Students and Employees of Zoom manual.docx Page 1 of 35 Last Updated: August 13, 2018 PREFACE AND OVERVIEW For the fall 2018 term,

More information

AAG Mobile App User Manual

AAG Mobile App User Manual AAG Mobile App User Manual Tired of carrying a large printed program around the AAG Annual Meeting? Want to easily organize your AAG session schedule in a digital calendar format? Looking to save some

More information

Info Input Express Network Edition

Info Input Express Network Edition Info Input Express Network Edition Administrator s Guide A-61892 Table of Contents Using Info Input Express to Create and Retrieve Documents... 9 Compatibility... 9 Contents of this Guide... 9 Terminology...

More information

AV Guide for 2306 McGavran-Greenberg

AV Guide for 2306 McGavran-Greenberg AV Guide for 2306 McGavran-Greenberg AV Services: (919) 966-6536, Rosenau 233 Table of Contents (click on a topic to skip to that section) Getting Started... 2 To Display the Computer Desktop... 4 To Display

More information

Emergency Contact for Real World Social Community

Emergency Contact for Real World Social Community Emergency Contact for Real World Social Community 1 M. KISHORE ANAND, 2 Dr.P.MARIKKANNU 1,2 DEPARTMENT OF INFORMATION TECHNOLOGY, COIMBATORE, INDIA Abstract: Android is a java based operating system which

More information

Message Processing at Integrated PHD Gateways for Servicing Various PHDs

Message Processing at Integrated PHD Gateways for Servicing Various PHDs , pp.367-374 http://dx.doi.org/10.14257/ijmue.2014.9.3.35 Message Processing at Integrated PHD Gateways for Servicing Various PHDs KeeHyun Park and Seunghyeon Lim Department of Computer Engineering, Keimyung

More information

Office 365. Quick Start User Guide

Office 365. Quick Start User Guide Office 365 Quick Start User Guide Contents What is Office 365?... 5 How to Sign In to Office 365... 5 To Sign Out when you are done... 5 Why Use Office 365?... 5 Office 365 Home Page... 6 Top right-hand

More information

Getting Started with Lync 2010 for iphone

Getting Started with Lync 2010 for iphone Getting Started with Lync 2010 for iphone Getting started with Lync 2010 on the iphone» Requirements» Installing Lync» Removing Lync» Signing in to Lync» Signing out of Lync Requirements iphone 3GS, iphone

More information

Software solutions. Enrich your display solution

Software solutions. Enrich your display solution Software solutions Enrich your display solution Turn your displays into solutions Take advantage of our specialist software solutions and benefit from increased capabilities, confidence and control. As

More information

Table of Contents. iii

Table of Contents. iii TECHNICAL GUIDE Table of Contents MobileMeet Overview... 1 From MobileMeet, you can:... 1 Setup... 2 System requirements... 2 Bandwidth and Data Transfer... 3 Downloading MobileMeet... 4 Starting MobileMeet

More information

How to use Video Conferencing & Desktop Sharing on Magnet Voice

How to use Video Conferencing & Desktop Sharing on Magnet Voice How to use Video Conferencing & Desktop Sharing on Magnet Voice Video Conferencing and Collaboration CONTENTS User Guide... 1 1. How to set up a video session... 2. Running a video conference... 4 3. Screen

More information

Accession Communicator for Mobile

Accession Communicator for Mobile Accession Communicator for Mobile Quick Start Guide ACCESSION COMMUNICATOR FOR MOBILE Your AireSpring phone service can be used to make or receive calls from your desk phone, your PC or MAC, and your mobile

More information

Workshop #10 Wifi & WhatsApp

Workshop #10 Wifi & WhatsApp Workshop #10 Wifi & WhatsApp What is Wi-Fi exactly, what s the big deal & how do I connect to it? WhatsApp Messenger explained Terms you will hear today What is WhatsApp? How do I send a message on WhatsApp

More information

Design and Implementation of HTML5 based SVM for Integrating Runtime of Smart Devices and Web Environments

Design and Implementation of HTML5 based SVM for Integrating Runtime of Smart Devices and Web Environments Vol.8, No.3 (2014), pp.223-234 http://dx.doi.org/10.14257/ijsh.2014.8.3.21 Design and Implementation of HTML5 based SVM for Integrating Runtime of Smart Devices and Web Environments Yunsik Son 1, Seman

More information

PerkinElmer s Force Multiplier Pilot Program

PerkinElmer s Force Multiplier Pilot Program PerkinElmer s Force Multiplier Pilot Program This document is intended to provide the first-time user with the needed information to conduct a Virtual Product Lab session using Connectivity s Advanced

More information

Reservation Line: (866)

Reservation Line: (866) WebEx Meeting Center Users Guide Prov vided by Ameriprise & ConferencePlus Reservation Line: (866) 402-2673 1 WebEx Users Guide This guide provides tips and techniques that you can use to conduct effective

More information

SmileTiger emeeting Server 2008 Client Guide

SmileTiger emeeting Server 2008 Client Guide SmileTiger emeeting Server 2008 Client Guide SmileTiger Software Corporation 11615 Sir Francis Drake Drive Charlotte, NC 28277 USA Phone: + 1 704 321 9068 Email: info@smiletiger.com http://www.smiletiger.com

More information

QUICK GUIDE. Camera Installation for iphone, ipad, Android smart phone and tablet

QUICK GUIDE. Camera Installation for iphone, ipad, Android smart phone and tablet QUICK GUIDE Camera Installation for iphone, ipad, Android smart phone and tablet For Technical questions, please email: info@trivisiontech.com 1 Contents 1.0 Introduction ----------------------------------------------------------------------3

More information

Google Chromebook Starting Guide

Google Chromebook Starting Guide Google Chromebook Starting Guide Now that you have received your Chromebook you will notice that it looks exactly like a laptop, but there are several differences between both devices. Chromebooks are

More information

The Design of Real-time Display Screen Control Techniques for Mobile Devices 1

The Design of Real-time Display Screen Control Techniques for Mobile Devices 1 , pp.189-193 http://dx.doi.org/10.14257/astl.2016.133.36 The Design of Real-time Display Screen Control Techniques for Mobile Devices 1 Jungsoo Hwang 1, Ji Hee Jeong 1, Soon-Bum Lim 1, 1 Dept. of Multimedia

More information

Was this document helpful? smarttech.com/docfeedback/ SMART Ink 5.2 USER S GUIDE

Was this document helpful? smarttech.com/docfeedback/ SMART Ink 5.2 USER S GUIDE Was this document helpful? smarttech.com/docfeedback/171190 SMART Ink 5.2 USER S GUIDE Trademark notice SMART Ink, SMART Notebook, SMART Meeting Pro, Pen ID, smarttech, the SMART logo and all SMART taglines

More information

First-Time Employee Registration

First-Time Employee Registration How to HighFive 1 First-Time Employee Registration 1. Open a browser and go to: adcomm.highfive.com 2. Choose Download Highfive App Choose run when the download starts 3. Choose open the Highfive App 4.

More information

Revision 1.2 November 2016 MT CANVUS USER MANUAL

Revision 1.2 November 2016 MT CANVUS USER MANUAL Revision 1.2 November 2016 MT CANVUS 1.2.2 USER MANUAL MT CANVUS 1.2.2 USER MANUAL 2 Copyright 2016 MultiTaction. All rights reserved. This manual is intended for the owners and operators of MT Canvus.

More information

ONSIGHT HOW TO: USE EXTERNAL GUEST INVITES WITH A CUSTOMER WHAT THE INVITER NEEDS TO KNOW

ONSIGHT HOW TO: USE EXTERNAL GUEST INVITES WITH A CUSTOMER WHAT THE INVITER NEEDS TO KNOW ONSIGHT HOW TO: USE EXTERNAL GUEST INVITES WITH A CUSTOMER This step-by-step guide features how to conduct an Onsight collaboration session using an external guest invite. The steps highlight what the

More information

ShareLink 200 N Setup Guide

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

More information

Offline Location Based Services Using Android OS Implemented In Smartphone and Beagleboard Xm

Offline Location Based Services Using Android OS Implemented In Smartphone and Beagleboard Xm ORIENTAL JOURNAL OF COMPUTER SCIENCE & TECHNOLOGY An International Open Free Access, Peer Reviewed Research Journal Published By: Oriental Scientific Publishing Co., India. www.computerscijournal.org ISSN:

More information

SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC)

SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC) SASKTEL INTEGRATED BUSINESS COMMUNICATIONS (IBC) DESKTOP CLIENT USER GUIDE Version 4 January 2018 TABLE OF CONTENTS About the SaskTel IBC Desktop Client...3 Requirements...3 How to download and install

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide 1 First-Time Employee Registration 1. Open a browser and go to: adcomm.highfive.com 2. Choose Download Highfive App Choose run when the download starts 3. Choose open the Highfive

More information

Application of Fuzzy Logic Control to Dynamic Channel Allocation of WiMedia UWB Networks

Application of Fuzzy Logic Control to Dynamic Channel Allocation of WiMedia UWB Networks , pp.60-64 http://dx.doi.org/10.14257/astl.2015.108.14 Application of Fuzzy Logic Control to Dynamic Channel Allocation of WiMedia UWB Networks Dong-Keun Jeon 1, Yeonwoo Lee *2 1 Dept. of Mechatronics,

More information

Room 4 User Guide. Version 1.0

Room 4 User Guide. Version 1.0 Room 4 User Guide Version 1.0 Contents 1. About Room 4... 2 2. Getting Started with Room 4... 2 2.1 Powering Room 4 On... 2 2.2 Meeting Room Identity and Calendar... 3 2.3 Room sign-in... 6 2.4 Signing-In

More information

Android App for Smooth Multimedia Recording Service via the Frame Buffer

Android App for Smooth Multimedia Recording Service via the Frame Buffer , pp.46-51 http://dx.doi.org/10.14257/astl.2014.51.11 Android App for Smooth Multimedia Recording Service via the Frame Buffer Sang-Min Seo 1, Hyeon seok Oh 1, Yoon-Ho Choi 2 1 Department of Computer Science,

More information

Vision Exchange TM Frequently asked questions

Vision Exchange TM Frequently asked questions Vision Exchange TM Frequently asked questions Vision Exchange is our powerful yet intuitive active learning solution for universities, colleges and meeting rooms. These FAQs answer some of your questions

More information

User manual. 1. Overview of MultiPresenter Features Operating conditions... 4

User manual. 1. Overview of MultiPresenter Features Operating conditions... 4 Application MultiPresenter (for Android/for ios) User manual Compatible with Ver. 1.0.0 Table of contents 1. Overview of MultiPresenter... 2 1-1. Features... 2 1-2. Operating conditions... 4 2. Transfer

More information

Best practices for Skype for Business meetings. Sharing during meetings Recording a meeting For more information

Best practices for Skype for Business meetings. Sharing during meetings Recording a meeting For more information SUCCESSFUL MEETINGS WITH Traditional meetings can be a challenge when people are spread out over long distances. Communication technology can overcome this physical boundary by allowing people to attend

More information

MeetingCentre Getting Started Guide

MeetingCentre Getting Started Guide MeetingCentre Getting Started Guide This guide introduces MeetingCentre TM, powered by WebEx TM,and provides basic information about using its many features. Refer to the table below to locate the feature

More information

The Design and Implementation of a BLE-based WebD2D Service for Android Smartphone

The Design and Implementation of a BLE-based WebD2D Service for Android Smartphone , pp.1-5 http://dx.doi.org/10.14257/astl.2017.146.01 The Design and Implementation of a BLE-based WebD2D Service for Android Smartphone Do-Hyung Kim 1, Seok-Jin Yoon 1, Hyung-Seok Lee 1 and Jae-Ho Lee

More information

65, 75, or 32 touch 4K resolution, LED Display Integrated WIFI Router

65, 75, or 32 touch 4K resolution, LED Display Integrated WIFI Router SmartMedia Interactive Tables LED 4K, with Player Android Built-in Perfect for offices, architectural firms, accountant firms, surveyors, medical firms, hospitals, notary offices, museums, banks Player

More information

APPROVER GUIDE. November Cloud Approval Workflows for Finance and Accounting

APPROVER GUIDE. November Cloud Approval Workflows for Finance and Accounting APPROVER GUIDE November 2017 Agenda Basic Setup Accept the invitation Change user name, contact details and notifications Reset password Set a Delegate Work in Progress Approver Request Lists Approval

More information

GLOBALMEET USER GUIDE

GLOBALMEET USER GUIDE GLOBALMEET USER GUIDE Release 3.8.1 July 2016 TABLE OF CONTENTS GlobalMeet Overview 4 Get the GlobalMeet Desktop Tools 5 Download and Install GlobalMeet 5 System Requirements 5 Getting Started 6 Sign in

More information

USMA Library Tutorial: How to search the USMA Digital Collections Created July 5, 2017

USMA Library Tutorial: How to search the USMA Digital Collections Created July 5, 2017 USMA Library Tutorial: How to search the USMA Digital Collections Created July 5, 2017 What are digital collections? When some people think about library collections, physical collections of books on shelves

More information

Instant Net Conference with Cisco WebEx Meeting Center

Instant Net Conference with Cisco WebEx Meeting Center Instant Net Conference with Cisco WebEx Meeting Center Setting up an Instant Net Conference Subscription (first time only) Go to https://e-meetings.verizonbusiness.com Select the Manage My Meetings login

More information

argusoft A66, Sector 25, GIDC Electronic Estate, Gandhinagar, Gujarat , India Dumbarton Court, Newark, CA 94560, USA

argusoft A66, Sector 25, GIDC Electronic Estate, Gandhinagar, Gujarat , India Dumbarton Court, Newark, CA 94560, USA ROOBROO DESKTOP COLLABORATION PLATFORM ARCHITECTURAL OVERVIEW AND CONFIGURATION HIGHLIGHTS PRESENTED BY: argusoft A66, Sector 25, GIDC Electronic Estate, Gandhinagar, Gujarat 382016, India 35463 Dumbarton

More information

Welcome to Foxit MobilePDF Business

Welcome to Foxit MobilePDF Business Welcome to Instructions: Main Interface... 2 File Management Tools... 4 Public Cloud Services... 5 Viewing and Tools... 8 Annotation Tools... 10 Form Tools... 12 Signature... 13 Text Selection... 14 Gestures...

More information

Mobile Internet Devices and the Cloud

Mobile Internet Devices and the Cloud Mobile Internet Devices and the Cloud What Is a Smartphone? Mobile Operating Systems for Smartphones 1. iphone 2. Google (Android) 3. Blackberry 4. Windows Mobile 5. Ubuntu Mobile Internet Device (MID)

More information

AT&T Connect Mobile and iphone User Guide

AT&T Connect Mobile and iphone User Guide Version 2.0 May 2010 AT&T Connect Mobile and iphone User Guide 2010 AT&T Intellectual Property. All rights reserved. AT&T, 1 the AT&T logo and all other AT&T marks contained herein are trademarks of AT&T

More information

Briefcase for Android. User Guide

Briefcase for Android. User Guide Briefcase for Android User Guide Contents Introduction... 4 About this Guide... 4 Installation and First Launch... 5 Technical Requirements... 5 Installation... 5 First launch... 5 Managing SharePoint

More information

Table of Contents. The Home and More screens... 14

Table of Contents. The Home and More screens... 14 Table of Contents SmartMeet Overview...1 From SmartMeet, you can:...1 Setup... 2 System requirements... 2 Downloading SmartMeet....3 Starting SmartMeet for the first time... 4 Add user details...5 To add

More information

Using the SHARP touchscreen

Using the SHARP touchscreen Click a menu link to jump straight to that section: SHARP touchscreen essentials Accessing & saving files Annotation with SHARP touchscreens Connecting other devices SHARP touchscreens with Adobe Troubleshooting

More information

If you require assistance please contact the IT Centre at ext or

If you require assistance please contact the IT Centre at ext or Using the SMART Board in the Dean s Conference Room In this booklet you will find information on how to use the SMART board in the Dean s conference room at Ivey. Basic requirements: Laptop computer with

More information

One of the primary features of 5-Star Students is the ability to capture and store attendance data during school events.

One of the primary features of 5-Star Students is the ability to capture and store attendance data during school events. Conducting Events This guide will assist you with planning and conducting events using 5-Star Students Determine which events you ll track using 5-Star Students Understand requirements and options for

More information

YOUR COMMUNITY WITH NABR NETWORK

YOUR COMMUNITY WITH NABR NETWORK YOUR COMMUNITY WITH NABR NETWORK Thank you for your interest in Nabr Network This exciting mobile app and website are designed to keep communication flowing in your community association. Many communities

More information

Hosted PBX QUICK START GUIDE. Customer Portal, Unified Desktop, Mobile and Meeting

Hosted PBX QUICK START GUIDE. Customer Portal, Unified Desktop, Mobile and Meeting Hosted PBX QUICK START GUIDE Customer Portal, Unified Desktop, Mobile and Meeting HOSTED PBX CUSTOMER PORTAL WELCOME Welcome to Hosted PBX. This guide is intended to get you up and running with the Customer

More information

TRAINING INTRODUCTION

TRAINING INTRODUCTION TRAINING INTRODUCTION To access and download applicable software: Navigate to the URL listed on the Novo Homescreen For additional information and support documents, please refer to the vivitek.com website

More information

How to configure SmartPhone or Tablet with AirVideo-100v2?

How to configure SmartPhone or Tablet with AirVideo-100v2? This installation guide will teach you how to use AirVideo-100v2 to play the document from Smartphone or Tablet to the projector. At first, it is necessary to download MobiShow app on your Smartphone or

More information

A Kinect Sensor based Windows Control Interface

A Kinect Sensor based Windows Control Interface , pp.113-124 http://dx.doi.org/10.14257/ijca.2014.7.3.12 A Kinect Sensor based Windows Control Interface Sang-Hyuk Lee 1 and Seung-Hyun Oh 2 Department of Computer Science, Dongguk University, Gyeongju,

More information

An Efficient P2P-based Mobile Social Media Delivery for Real-time MobileCast

An Efficient P2P-based Mobile Social Media Delivery for Real-time MobileCast , pp.151-158 http://dx.doi.org/10.14257/ijseia.2014.8.2.15 An Efficient P2P-based Mobile Social Media Delivery for Real-time MobileCast Changhee Cho 1, Ha Tran-Thi-Thu 2, Sanghyun Park 2 and Jinsul Kim

More information

Video Everywhere. What is it? Why Would I use it? How do I use it?

Video Everywhere. What is it? Why Would I use it? How do I use it? Video Everywhere use Video Everywhere allows you to record videos from your webcam and post them to any area of the course that uses the text editor. This includes: Discussion Boards Items within your

More information

Internet. Network Settings GPRS/3G Wi-Fi Connecting to a VPN

Internet. Network Settings GPRS/3G Wi-Fi Connecting to a VPN Internet 11 Network Settings...11-2 GPRS/3G... 11-2 Wi-Fi... 11-2 Connecting to a VPN... 11-3 Using Browser...11-4 Opening Browser... 11-4 View Webpages... 11-5 Setting Browser Options... 11-9 11-1 Network

More information

Electronic Document and Records Management System. End User Tips and Tricks for SharePoint Online

Electronic Document and Records Management System. End User Tips and Tricks for SharePoint Online Electronic Document and Records Management System End User Tips and Tricks for SharePoint Online Title EDRMS End User Tips and Tricks for SharePoint Online Creation Date 7th November 2018 Version 1.0 TABLE

More information

1. Introduction P Package Contents 1.

1. Introduction P Package Contents 1. 1 Contents 1. Introduction ------------------------------------------------------------------------------- P. 3-5 1.1 Package Contents 1.2 Tablet Overview 2. Using the Tablet for the first time ---------------------------------------------------

More information

Network Deployment Guide

Network Deployment Guide WC-COA WC-COA-I Network Deployment Guide Contact Information FREE 24/7 technical support or order toll-free in the U.S. Call 877-877-BBOX (outside U.S.: call 724-746-5500) www.blackbox.com info@blackbox.com

More information

The Mobilization of Cash Management The Journey, the Destination and the Future

The Mobilization of Cash Management The Journey, the Destination and the Future The Mobilization of Cash Management The Journey, the Destination and the Future Brian Burke CTP, Senior Vice President, Global Technology Solutions The Royal Bank of Scotland Stacy Allen Vice President

More information

AV Guide for Mayes Center (232 Rosenau Hall)

AV Guide for Mayes Center (232 Rosenau Hall) AV Guide for Mayes Center (232 Rosenau Hall) AV Services: (919) 966-6536, Rosenau 233 Table of Contents (click on a topic to skip to that section) Getting Started... 2 To Display the Room Computer... 4

More information

Presenting a Live Meeting Session

Presenting a Live Meeting Session Presenting a Live Meeting Session LIVE MEETING CONSOLE COMPONENTS The Live Meeting console is made up of multiple components: Presentation area in the middle of the console. Control panels (panes) accessible

More information

Nintendo Consoles/Handhelds

Nintendo Consoles/Handhelds How to find MAC Addresses Please follow the instructions below to find the MAC Address of game consoles, streaming devices, smart TVs, smart phones, tablets, or computers. Nintendo 3DS To locate the MAC

More information

The J.P. Morgan Insights app: User s guide to key features and functions

The J.P. Morgan Insights app: User s guide to key features and functions For professional clients only - not for retail use or distribution. The J.P. Morgan Insights app: User s guide to key features and functions Getting started with the app Welcome to the J.P. Morgan Insights

More information

Android Samsung Galaxy S6 Edge

Android Samsung Galaxy S6 Edge Android 6.0.1 Samsung Galaxy S6 Edge Access your quick menu by using two fingers to pull down the menu from the top-center of the screen. You can use this to quickly turn your Wi-Fi, Location, Bluetooth,

More information

Microsoft Office 365: Tips to Save You Time and Improve Productivity

Microsoft Office 365: Tips to Save You Time and Improve Productivity Microsoft Office 365: Tips to Save You Time and Improve Productivity Empower every person and every organization on the planet to achieve more As we think about empowering everyone, and helping them achieve

More information

CONTENTS PAGE. Top Tip: Hold down the Ctrl key on your keyboard and using your mouse click on the heading below to be taken to the page

CONTENTS PAGE. Top Tip: Hold down the Ctrl key on your keyboard and using your mouse click on the heading below to be taken to the page USER GUIDE CONTENTS PAGE Top Tip: Hold down the Ctrl key on your keyboard and using your mouse click on the heading below to be taken to the page Part 1) How to create a new account...2 Part 2) How to

More information

NHSmail Skype for Business

NHSmail Skype for Business NHSmail Skype for Business Mobile device installation guide Published December 2017 Version 3 Copyright 2017Health and Social Care Information Centre. The Health and Social Care Information Centre is a

More information

A short guide to the Whova app:

A short guide to the Whova app: A short guide to the Whova app: 2018 Beyond Academia Conference Introduction This is a short guide for the use of the Whova app, which is going to be used as the official information and networking app

More information

i3allsync Wireless Presentation System User Manual

i3allsync Wireless Presentation System User Manual i3allsync Wireless Presentation System User Manual Table of Contents Chapter 1: Product Introduction... 4 1-1 Introduction... 4 1-2 Hardware Recommendation... 5 Chapter 2: Description of Functions... 6

More information