MAD Gaze x HKCS. Best Smart Glass App Competition Developer Guidelines VERSION 1.0.0

Size: px
Start display at page:

Download "MAD Gaze x HKCS. Best Smart Glass App Competition Developer Guidelines VERSION 1.0.0"

Transcription

1 MAD Gaze x HKCS Best Smart Glass App Competition Developer Guidelines VERSION MAY 2016

2 Table of Contents 1. Objective 2. Hardware Specification 3. Operating MAD Gaze 4. Hardware Sensors 4.1 Accelerometer 4.2 Magnetometer 4.3 Three-Axis Gyroscope 5. Code Sample 5.1 EditText Focus 5.2 Microphone Recording 5.3 Accelerometer 5.4 Layout Builder 5.5 Layout Testing 6. Support

3 1 Objective This technical document outlines the hardware and software specifications of the two models of MAD Gaze - ARES and X5. 2 Hardware Specification MAD Gaze is an innovative device with Android based Operating System. Hardware specification as below: ARES Operating System Android 4.2 CPU 1.2 GHz Dual Core RAM 512MB Capacity 4GB Display 320x240 transparent display screen Audio Speaker Camera 5M pixels Video Playback 720P Wi-Fi b/g/n Bluetooth 4.0 Positioning GPS and Glonass Battery Capacity 370mAH Sensors Three-Axis Gyroscope Accelerometer Magnetometer Connection Micro-USB 2.0 Control Optical Trackpad Voice Control Mobile Control Language English Traditional Chinese Simplified Chinese

4 X5 Operating System Android 5.1 CPU 1.3GHz Quad Core RAM 2GB Capacity 32GB Display 800x480(WVGA) transparent display screen Audio 3.5MM Stereo Audio Speaker Camera 8M pixels Video Playback 1080P Wi-Fi b/g/n Bluetooth 4.0LE Positioning GPS and Glonass Battery Capacity 600mAH Sensors Three-Axis Gyroscope Accelerometer Magnetometer Connection Micro-USB 2.0 Control 4 Button Set Touch Panel Voice Control Mobile Control Language English Traditional Chinese Simplified Chinese

5 3 Operating MAD Gaze This section covers the control of MAD Gaze. The Figure 3.1 illustrates MAD Gaze control. For ARES, Figure 3.1 Control of ARES To control ARES, there are four gestures: Double Tap, Single Click, Double Click and Long Press. Various gesture performs different function and can be tracked by their corresponding Key Code. Figure 3.2 and Figure 3.3 illustrate the detail. Event Function Equivalent Key Code Double Tap Return KEYCODE_BACK Long Press Home KEYCODE_HOME Double Click Switch ON ScrollMode N/A Single Click Click / Switch OFF ScrollMode N/A Figure 3.2 Controls Event of ARES ScrollMode provides alternative controls in scrollable view, user should trigger Double Click event before start scrolling, and quit ScrollMode with Single Click event.

6 For X5, Figure 3.3- Control of MAD Gaze X5 To control X5, there are buttons and touch panel. For the buttons, single click and long press both perform different function and can be tracked by different Key Code. Function Equivalent Key Code A Confirm KEYCODE_ENTER B Forward KEYCODE_DPAD_RIGHT C Backward KEYCODE_DPAD_LEFT D Screen On/Off KEYCODE_SLEEP Figure 3.4 Single click on X5 buttons Function Key Code A Home KEYCODE_HOME B Menu KEYCODE_MENU C Return KEYCODE_BACK D Shut Down KEYCODE_POWER Figure 3.5 Long press on X5 buttons

7 During Android development, onkeydown is invoked while button is clicked or long pressed with Key Code stated in the Figure 3.5 and Figure 3.4, such as KEYCODE_MENU, KEYCODE_HOME etc. Switch case is used to identify the triggering button. Figure 3.6 & 3.7 will provide the detail implementation. Figure 3.6 The implementation of detecting Key Code For touch panel, tap gesture can invoke the element in UI. Since tap gesture only target on focusable button, the elements are needed to set focusable before setting the OnClickListener. setfocusable(true) MANDATORY setfocusableintouchmode(true) OPTIONAL requestfocus() MANDATORY The following example shows the implementation of tap gesture on touch panel. Figure 3.7 The implementation of tap gesture on touch panel

8 4 Hardware Sensors MAD Gaze is embedded with 3 sensors: Accelerometer, Magnetometer and Gyroscope sensor. The Classes SensorManager and Sensor are used to keep tracking on these sensors change. Figure 4.1 is the example of initializing Sensor Manager and Sensor. Figure The example of initializing Sensor Manager and Sensor 4.1 Accelerometer The Accelerometer collects the axis data when motion changed. The following table shows obtained data: Sensor Sensor event data Description TYPE_ACCELEROMETER SensorEvent.values[0] Acceleration force along the x axis (including gravity). SensorEvent.values[1] Acceleration force along the y axis (including gravity). SensorEvent.values[2] Acceleration force along the z axis (including gravity). Figure The obtained data from Accelerometer

9 To keep track of the change in data collected, the following example shows how to access the changing data from the sensor. Figure 4.3 Example to access the changing data from the Accelerometer

10 4.2 Magnetometer The Magnetometer provides raw field strength data (in μt) for each of the three coordinate axes. The following table shows the obtained data: Sensor Sensor event data Description TYPE_MAGNETIC_FIELD SensorEvent.values[0] Geomagnetic field strength along the x axis. SensorEvent.values[1] Geomagnetic field strength along the y axis. SensorEvent.values[2] Geomagnetic field strength along the z axis. Figure The accessed data in Magnetometer Figure 4.5 Example to prepare a gravity sensor listener

11 In order to keep tracking on the changes of sensor data, a sensor event listener should be implemented as follow. Figure 4.6 Example to access the changing data from the Magnetometer

12 4.3 Three-Axis Gyroscope The Three-Axis Gyroscope collects the axis data when motion changed. The following table shows the obtained data: Sensor Sensor event data Description TYPE_GYROSCOPE SensorEvent.values[0] Rate of rotation around the x axis. SensorEvent.values[1] Rate of rotation around the y axis. SensorEvent.values[2] Rate of rotation around the z axis. Figure The accessed data in Gyroscope Sensor In order to keep tracking on the changes of sensor data, a sensor event listener should be implemented as follow. Figure 4.8 Example to access the changing value from Gyroscope Sensor

13 The following example shows how to re-register and unregister the listeners: Figure 4.9 Example re-register and unregister the listener

14 5 Code Sample The Mad Gaze sample project shows four example, the menu layout shown below: Figure 5.1 Layout of Menu As the screen orientation on the Mad Gaze is landscape. So make sure you added that element. The SDK compile version of your android project Device Maximum SDK Version 1 Mad Gaze ARES 16 2 Mad Gaze X5 22

15 5.1 EditText Focus Figure 5.2 Layout of Edittext button There are two steps to change focus between two or more widgets, the following example shows the steps: Figure 5.3 Changing focus step 1

16 Figure 5.4 Changing focus step Microphone Recording Figure 5.5 Layout of Microphone button Declaring the related variable: Figure 5.6 Declaring the variables

17 Method for start and stop recording Figure 5.7 Method for recording audio Method for start and stop playing: Figure 5.8 Method for playing audio

18 5.3 Accelerometer Figure 5.9 Layout of Sensor button (Part 1) Figure 5.10 Layout of Sensor button (Part 2)

19 5.4 Layout Builder It is better to use dimen.xml to solve different resolution problem. Several buttons may need to explicitly show on the layout so that it can be activated by Mad Gaze ARES mouse. The following table shows the dimen.xml location: Device Location 1 Mad Gaze ARES res/value-ldpi 2 Mad Gaze X5 res/value-mdpi Figure 5.11 Mad Gaze ARES (240 x dpi) Figure 5.12 Mad Gaze X5 (480 x dpi)

20 5.5 Layout Testing Here is a way to test your layout which is using Genymotion. After you specify the Android OS, you have to change the screen size value on your virtual device just you added. The following table shows the value of screen size: Device Screen Size 1 Mad Gaze ARES 240 x dpi 2 Mad Gaze X5 480 x dpi Figure 5.13 Configuration for Mad Gaze ARES in visual device

21 Figure 5.14 Configuration for Mad Gaze X5 in visual device

22 6 Support Official Website Official Address Sample Code Download IBM Bluemix Registration IBM Bluemix Tutorial IBM Bluemix provides 30 days free service for each registration. Every participant can reserve another 60 days free service extension by providing us your Bluemix account name through mail at by Aug 19, END

PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd :36

PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd :36 PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd 1 18.12.13 09:36 PD_BlackBerry_Folder_210x210mm_GB_4c_RZ_v4.indd 2 18.12.13 09:36 INTELLIGENCE MEETS SPEED THE P 9982 SMARTPHONE BY BLACKBERRY Porsche Design

More information

Spring Lecture 9 Lecturer: Omid Jafarinezhad

Spring Lecture 9 Lecturer: Omid Jafarinezhad Mobile Programming Sharif University of Technology Spring 2016 - Lecture 9 Lecturer: Omid Jafarinezhad Sensors Overview Most Android-powered devices have built-in sensors that measure motion, orientation,

More information

DEVELOPING APPS FOR. Note: This ebook relies on and uses information from the Google Glass Developers site.

DEVELOPING APPS FOR. Note: This ebook relies on and uses information from the Google Glass Developers site. DEVELOPING APPS FOR Note: This ebook relies on and uses information from the Google Glass Developers site. Table of Contents GLASS What is Google Glass? 3 Technology Basics.... 3 Design for Google Glass

More information

Cost down. Model: C1000 4G. Specification CPU. O/S Android 7.0 Screen Memory Camera. GSM 850/900/1800/1900 LTE/WCD MA Battery Dimension.

Cost down. Model: C1000 4G. Specification CPU. O/S Android 7.0 Screen Memory Camera. GSM 850/900/1800/1900 LTE/WCD MA Battery Dimension. Cost down Model: C1000 MTK6580A/MTK6737() Android 7.0 5.0 HD IPS 1GB+8GB 2.0MP+5.0MP LTE/WCD MA B1,3,7,20, 3G:2100/900 2100mAh 145.6*71.9*8.8mm Cost down, GPS, Bluetooth 4.0, Micro-USB; 3.5mm Audio Jack,WIFI(802.11

More information

The new maximum security smartphone No Camera - No GPS - No Recorder

The new maximum security smartphone No Camera - No GPS - No Recorder The new maximum security smartphone No Camera - No GPS - No Recorder The new maximum security smartphone DASS H-ONE Smartphone is your smart choice to be protected and connected the whole time. What is

More information

Iconia One 10 [B3-A20] PRODUCT BRIEF VERSION 1.2, AUG

Iconia One 10 [B3-A20] PRODUCT BRIEF VERSION 1.2, AUG Iconia One 10 [B3-A20] PRODUCT BRIEF VERSION 1.2, AUG. 14 2015 ICONIA ONE 10 B3-A20 1 Value Proposition & Key Features With ease of viewing, ease of use and access to many free content, this 10 Android

More information

Iconia Talk 7 (B1-723) PRODUCT BRIEF VERSION 1.0 JUN

Iconia Talk 7 (B1-723) PRODUCT BRIEF VERSION 1.0 JUN Iconia Talk 7 (B1-723) PRODUCT BRIEF VERSION 1.0 JUN. 22 2015 PRODUCT 1.2. TARGET AUDIENCE POSITIONING 2 Profile Business people Frequent travelers Price sensitive Attitude Towards Technology: Staying

More information

Limited Edition Product Overview

Limited Edition Product Overview Limited Edition Product Overview INTRODUCTION REDEFINING LUXURY beléci is built with impeccable craftsmanship and is designed to meet the 21st century mobile security challenges with its built-in CodeTel

More information

Smart Glasses & Applications. Presenter: Xu Qiu! Advisor: C.-C. (Jay) Kuo!

Smart Glasses & Applications. Presenter: Xu Qiu! Advisor: C.-C. (Jay) Kuo! Smart Glasses & Applications Presenter: Xu Qiu Advisor: C.-C. (Jay) Kuo 1 1 Outline Introduction Comparison of Smart Glasses Apps for Developing Platform Development and Implementation of Computer Vision

More information

Open your package. Your phone at a glance EN-1. Micro USB port. Headset. jack Rear camera. Earpiece. Front camera. Volume. button. Power.

Open your package. Your phone at a glance EN-1. Micro USB port. Headset. jack Rear camera. Earpiece. Front camera. Volume. button. Power. Open your package Prestigio MultiPhone Battery Travel charger Headset USB cable Quick start guide Your phone at a glance Earpiece Front camera Headset jack Rear camera Micro USB port Touch screen Volume

More information

Mobile Tablets. Promate lumitab Tablet PC

Mobile Tablets. Promate lumitab Tablet PC Mobile Tablets 1 Xtouch / Vodafone Tablets Product Description Packaging Warranty XTouch PF1sV2 1.1 inch Wifi Only, Bluetooth 4., MS Windows 1 Professional Tablet PC Series - Intel BayTrail-T Z3735G Quad

More information

For Model No. MPG7. User Manual

For Model No. MPG7. User Manual For Model No. MPG7 EN User Manual This manual contains important safety precautions and information of correct use. Please be sure to read this manual carefully before use so as to avoid any accidents.

More information

Qpad X5 User Guide Hi-Target Surveying Instrument Co., Ltd. All Rights Reserved

Qpad X5 User Guide Hi-Target Surveying Instrument Co., Ltd. All Rights Reserved Qpad X5 User Guide Hi-Target Surveying Instrument Co., Ltd. All Rights Reserved Manual Revision Preface File number: Revision Date Revision Level Description 2016-06-03 1 Qpad X5 User Guide II Qpad X5

More information

Honor 3C (H30-U10) Mobile Phone V100R001. Product Description. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD.

Honor 3C (H30-U10) Mobile Phone V100R001. Product Description. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD. V100R001 Issue 01 Date 2014-03-12 HUAWEI TECHNOLOGIES CO., LTD. . 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written

More information

VR Development Platform

VR Development Platform VR Development Platform The Qualcomm Snapdragon VR820 headset is a VR development platform based on the Qualcomm Snapdragon 820 (APQ8096) processor by Qualcomm Technologies, Inc. Quick Start Guide Most

More information

For Model No. MP709 User Manual

For Model No. MP709 User Manual For Model No. MP709 EN User Manual This manual contains important safety precautions and information of correct use. Please be sure to read this manual carefully before use so as to avoid any accidents.

More information

1. Notes. 2. Accessories. 3. Main Functions

1. Notes. 2. Accessories. 3. Main Functions Contents 1. Notes... 2 2. Accessories... 2 3. Main Functions... 2 4. Appearance And Buttons... 3 5. MID Hardware Parameters... 4 6. MID Use And Preparation... 4 7. Keys Functions... 4 8. Start-up And Shutdown...

More information

BlackBerry KEYone Specifications

BlackBerry KEYone Specifications BlackBerry KEYone Specifications Fully Android Access to over a million apps on Google Play 4.5 scratch-resistant display Convenience Key 8MP front camera with flash 12MP auto-focus large pixel rear camera

More information

PENDOPAD 10.1 QUICKSTART T GUIDE USER MANUAL PNDPP42DG10BLK. > Please read carefully before use

PENDOPAD 10.1 QUICKSTART T GUIDE USER MANUAL PNDPP42DG10BLK. > Please read carefully before use PENDOPAD 10.1 PNDPP42DG10BLK QUICKSTART T GUIDE & USER MANUAL > Please read carefully before use This manual contains important safety precautions and information of correct use. Please be sure to read

More information

Tablet PC. Android 5.1 User Manual

Tablet PC. Android 5.1 User Manual Tablet PC Android 5.1 User Manual Tablet of Contents Specifications. What s inside the box Tablet Parts Getting started... How to use TF card How to connect to PC Connection to Internet.. Camera. Trouble

More information

WCDMA Qualcomm Snapdragon

WCDMA Qualcomm Snapdragon LTE NFC LTE WiFi Router Any device, Anywhere Connection LTE Burst Mode Capturing IPS Screen CDMA AWS Band 4 LTE CDMA f/2.0 Aperture, Blue Lens Filter WCDMA Qualcomm Snapdragon WCDMA Super Thin YOUR INTERNATIONAL

More information

10.1" Quad Core 3G. 1.2 GHz " 1280x800 IPS 3G. Specification: Optional: GPS OTA TABLET L10C1

10.1 Quad Core 3G. 1.2 GHz  1280x800 IPS 3G. Specification: Optional: GPS OTA TABLET L10C1 10.1" Quad Core 3G TABLET L10C1 Specification: CPU: MT8389WK Quad core A7 1.2 GHz LCD Screen: 10.1 IPS 1280 x 800 Memory/Storage: 1GB DDR3/8G EMMC Camera: Dual camera (0.3M+2M) Connectivity: Wi-Fi 802.

More information

Manual For Android Tablet 4.0 3g Sim Slot Gps Capacitive Touch Hdmi

Manual For Android Tablet 4.0 3g Sim Slot Gps Capacitive Touch Hdmi Manual For Android Tablet 4.0 3g Sim Slot Gps Capacitive Touch Hdmi Cheap Tablet Android 3G SIM card slot 10 inch Capacitive Quad Core Tablet PC Android 10 inch Dual Camera Android 4.0 Tablet PC 3G SIM

More information

Key features: PN & UPC Codes: PN ITEM UPC

Key features: PN & UPC Codes: PN ITEM UPC Powered by Android 6.0 Marshmallow Key features: 13.3 Full HD Display, IPS Processor Octa Core RK3368 Cortex A53 Android 6.0, Marshmallow Premium aluminium casing Front and back cameras PN & UPC Codes:

More information

Mevo. 1. Control Button f2.8 Glass Lens 3. Stereo Microphones 4. Speaker 5. Magnetic Base

Mevo. 1. Control Button f2.8 Glass Lens 3. Stereo Microphones 4. Speaker 5. Magnetic Base Mevo 1. Control Button 2. 150 f2.8 Glass Lens 3. Stereo Microphones 4. Speaker 5. Magnetic Base 1. Wi-Fi Strength 2. Battery Level 3. 24 Multi-color LED Light Ring 4. Internal 1,200mAh Li-ion Battery 5.

More information

xtab 7Q Tablet PC User s manual

xtab 7Q Tablet PC User s manual xtab 7Q Tablet PC User s manual TABLE OF CONTENTS INTRODUCTION... 3 I - GETTING STARTED... 3 Important Safety Precautions... 3 Cleaning the Panel... 3 Cleaning the Tablet... 3 Features... 4 Buttons Overview...

More information

Exclusive pricing for UW students, faculty, staff and UWAA members!

Exclusive pricing for UW students, faculty, staff and UWAA members! Exclusive pricing for UW students, faculty, staff and UWAA members! MacBook Pro with Retina Display (mid 2017) 720p FaceTime HD Camera; stereo speakers & dual microphones; backlit keyboard with ambient

More information

FOR ALL YOUR GADGET REQUIREMENTS

FOR ALL YOUR GADGET REQUIREMENTS FOR ALL YOUR GADGET REQUIREMENTS Tel: 011 867 6453 Email: info@gadgetemporium.co.za Web: www.gadgetemporium.co.za Facebook: gadgetemporium COMPANY PORTFOLIO Gadget Emporium is a young vibrant company that

More information

For Model No. MPQC 994 IPS. User Manual

For Model No. MPQC 994 IPS. User Manual For Model No. MPQC 994 IPS EN User Manual This manual contains important safety precautions and information of correct use. Please be sure to read this manual carefully before use so as to avoid any accidents.

More information

HEXIWEAR COMPLETE IOT DEVELOPMENT SOLUTION

HEXIWEAR COMPLETE IOT DEVELOPMENT SOLUTION HEXIWEAR COMPLETE IOT DEVELOPMENT SOLUTION NXP SEMICONDUCTORS PUBLIC THE ONLY SUPPLIER TO PROVIDE COMPLETE IoT SOLUTIONS DSPs, MCUs & CPUs Suite of Sensors NFC, BLE, Thread, zigbee, sub-ghz Wireless Interconnects

More information

TALK 5H USER S MANUAL

TALK 5H USER S MANUAL TALK 5H USER S MANUAL 2 INTRODUCTION... 5 GETTING STARTED... 5 Important Safety Precautions... 5 Cleaning the Panel... 6 Cleaning the Phone... 6 Features... 6 Buttons overview... 7 What s int he Box...

More information

ipad Basics Hannah Digital Literacy Specialist December 6 th, 2017

ipad Basics Hannah Digital Literacy Specialist December 6 th, 2017 ipad Basics Hannah Digital Literacy Specialist December 6 th, 2017 What We ll Cover What is an ipad? Basic features Swiping and hand gestures Settings Built-In Apps The App Store Tips and Tricks Questions

More information

PENDOPAD 9.7 QUICKSTART GUIDE & USER MANUAL PNDPP42DG9BLK. > Please read carefully before use

PENDOPAD 9.7 QUICKSTART GUIDE & USER MANUAL PNDPP42DG9BLK. > Please read carefully before use PENDOPAD 9.7 PNDPP42DG9BLK QUICKSTART GUIDE & USER MANUAL > Please read carefully before use This manual contains important safety precautions and information of correct use. Please be sure to read this

More information

BEAT 2.0 USER MANUAL

BEAT 2.0 USER MANUAL BEAT 2.0 USER MANUAL FCC ID: 2ADLJBEAT20 The device complies with part 15 of the FCC Rules. Operation is subject to the following two conditions: (1) This device may not cause harmful interference, and

More information

HP TouchPad Overview. 7. Touchscreen

HP TouchPad Overview. 7. Touchscreen Overview 1. 3.5mm headset jack 6. Volume 2. Power: Press to turn the screen on/off. When the screen is on, press and hold to shut down your device completely. When your device is shut down, press and hold

More information

User Manual. Wireless IP Camera

User Manual. Wireless IP Camera User Manual Wireless IP Camera Introduction Hi. Thank you for purchasing the AUKEY VT-CM1 Wireless Security IP Camera. Please read this user manual carefully and keep it in a safe place for future reference.

More information

BLC Series HD LCD Digital Cameras

BLC Series HD LCD Digital Cameras BLC Series HD LCD Digital Cameras 1. BLC-200 HD LCD Digital Camera(2.0MP) Introduction BLC-200 is a revolutionary product in microscope area which combines of tablet PC and a digital camera, it can preview,

More information

Preface...3 Acknowledgments...4. Contents...5. List of Figures...17

Preface...3 Acknowledgments...4. Contents...5. List of Figures...17 Contents - 5 Contents Preface...3 Acknowledgments...4 Contents...5 List of Figures...17 Introduction...23 History of Delphi...24 Delphi for mobile platforms...27 About this book...27 About the author...29

More information

Sony Smart headset products Developer specifications

Sony Smart headset products Developer specifications November 2013 Sony Smart headset products Developer specifications Copyright 2013 Sony Mobile Communications AB. All rights reserved. Xperia is a trademark of Sony Mobile Communications AB. Other brands,

More information

EMBEDDED SYSTEMS PROGRAMMING Accessing Hardware

EMBEDDED SYSTEMS PROGRAMMING Accessing Hardware EMBEDDED SYSTEMS PROGRAMMING 2016-17 Accessing Hardware HARDWARE LIST Accelerometer Vector magnetometer (compass) Gyroscope GPS and/or other location facilities (Front/rear) camera Microphone Speaker Battery

More information

Electronics Corporation of Tamil Nadu Limited

Electronics Corporation of Tamil Nadu Limited Electronics Corporation of Tamil Nadu Limited Rate Contract Tender S u p p l y, I n s t a l l a t i o n a n d C o m m i s s i o n i n g o f D i s p l a y M o n i t o r & T V Tender Ref. ELCOT/PROC/OT/33189/

More information

RECO Smart Cam. Quick Start Guide

RECO Smart Cam. Quick Start Guide RECO Smart Cam Quick Start Guide E11074 / Revised Edition V2 / November 2015 NOTE: The screenshots in this Quick Start Guide are for reference only. 2 Hardware Micro USB port MicroSD card slot GPS port

More information

Always with You, Always On. With LG, it s all possible.

Always with You, Always On. With LG, it s all possible. Always with You, Always On With LG, it s all possible. Live without limits and take your smart world to go. LG and Google combined forces to bring you their next innovation the LG G Watch. View important

More information

Model: AMI-TT4 USER MANUAL

Model: AMI-TT4 USER MANUAL Model: AMI-TT4 EN USER MANUAL Introduction This manual contains detailed instructions and notes on the operation and use of this device. For your safety and bene it, read this manual carefully before using

More information

SPARK. Quick Start Guide V1.6

SPARK. Quick Start Guide V1.6 SPARK Quick Start Guide V1.6 SPARK The DJI SPARK is DJI's smallest flying camera featuring a stabilized camera, Intelligent Flight Modes, and Obstacle Avoidance inside a light, portable body. Equipped

More information

Nautiz Handheld Mobile Phone Comparison

Nautiz Handheld Mobile Phone Comparison Nautiz Handheld Mobile Phone Comparison NAUTIZ 2X, 4X, 8X MANGOESMAPPING PTY LTD Nautiz 2X Nautiz 4X Nautiz 8X Size 150 mm x 73.5 mm x 16 mm 156 mm x 74 mm x 25.5 mm (6.1" x 2.9" x 1.0") 190.9 mm x 79.7

More information

Tablet MODECOM FreeTAB1004 IPS X4

Tablet MODECOM FreeTAB1004 IPS X4 MODECOM FreeTAB 1004 IPS X4 new member of Quad-Core family MODECOM FreeTAB 1004 IPS X4 is a tablet PC of outstanding technical parameters, efficiency and design and excellent price. This high-end device

More information

See K600. Product Specification

See K600. Product Specification ID : Golden See K600 Product Specification Product Highlights 4G Android smartphone operating system, WiFi, BT, camera, GPS, gsensor, OTG, back touch, compass, fingerprint identification, etc. Technical

More information

Introduction. See page #6 for device requirements.

Introduction. See page #6 for device requirements. W-FI CAMERA USER MANUAL Contents Introduction 4 Camera LED Indicators 5 Wi-Fi Requirements 6 Mobile Device Requirements 6 Download the Momentum App 7 Create an Account 8 Setup 10 Pairing 10 Connecting

More information

REQUEST FOR QUOTATIONS: SUPPLY AND DELIVERY OF SMART TABLET DEVICES REFERENCE: CS/SCM/R15-16/59

REQUEST FOR QUOTATIONS: SUPPLY AND DELIVERY OF SMART TABLET DEVICES REFERENCE: CS/SCM/R15-16/59 REQUEST FOR QUOTATIONS: SUPPLY AND DELIVERY OF SMART TABLET DEVICES REFERENCE: CS/SCM/R15-16/59 1. BACKGROUND INFORMATION 1.1. The Sci-Bono Discovery Centre is an independent Non Profit Company set up

More information

Gravity X. Applications Oil and Gas Petrochemical Mining Pharmaceutical

Gravity X. Applications Oil and Gas Petrochemical Mining Pharmaceutical Intrinsically Safe Cam Easy to use, high quality IECEx Zone 1 camera Ex Certified Sync to USB Rugged / Waterproof Zone 1 Gravity X Do you need a user friendly point and shoot HD camera when you work in

More information

No.1 OMA/MCPTT based Smart Walkie Talkie Solution! Bittium Tough Mobile (SD-42 & Hybrid X)

No.1 OMA/MCPTT based Smart Walkie Talkie Solution! Bittium Tough Mobile (SD-42 & Hybrid X) No.1 OMA/MCPTT based Smart Walkie Talkie Solution! (SD-42 & Hybrid X) Concept Stability - Supplied to Government Org., High ranking officials, Directors, NATO, USA National FirstNet approved. Durability

More information

Xperia sola from Sony the smartphone with a sense of magic

Xperia sola from Sony the smartphone with a sense of magic Press Release Xperia sola from Sony the smartphone with a sense of magic Introducing floating touch navigation for magic web browsing without touching the screen Easily open apps and launch actions in

More information

Technical Specifications

Technical Specifications Overview Tech Specs Warranties Services Main Features Core i7 2.2 GHz macos 10.13 High Sierra 16 GB RAM 256 GB SSD 15.4" IPS 2880 x 1800 (WQXGA+) Radeon Pro 555X / UHD Graphics 630 Wi-Fi Bluetooth space

More information

Wiltronic Corporation

Wiltronic Corporation 2018 Wiltronic Corporation Wiltronic Corporation was founded in 2002 and for over 16 years it has been aiming to provide our customers with a better life by our consumer IT electronics and home entertainment

More information

SE 3S03 - Tutorial 1. Zahra Ali. Week of Feb 1, 2016

SE 3S03 - Tutorial 1. Zahra Ali. Week of Feb 1, 2016 SE 3S03 - Tutorial 1 Department of Computer Science McMaster University naqvis7@mcmaster.ca Week of Feb 1, 2016 testing vs Software Devices and s Devices and s App Device Outline testing vs Software Devices

More information

B-191 B-191s B-192 B-192S. B-190 Series - Range. 1000x. 600x. 1000x. 600x

B-191 B-191s B-192 B-192S. B-190 Series - Range. 1000x. 600x. 1000x. 600x B-190 Series - Range B-191 B-191s 1 1 600x Entry level model with monocular head up to total magnification, mechanical stage and exclusive X-LED 2 for unmatchable performance, powerful and uniform illumination.

More information

1. Introduction. 1.1 Cosmo Specifications

1. Introduction. 1.1 Cosmo Specifications 1. Introduction 1.1 Cosmo Specifications Details CPU Memory Storage Operating System Connectivity Sensor Camera Display Video Formats Description Quad Core 1.3 GHz ARM Cortex A7 Processor 512MB RAM 8 GB

More information

Thank you for purchasing a Danew product. Your DSlide Has been designed to offer you a unique game experience on a touch tablet.

Thank you for purchasing a Danew product. Your DSlide Has been designed to offer you a unique game experience on a touch tablet. USER GUIDE Thank you for purchasing a Danew product. Your DSlide Has been designed to offer you a unique game experience on a touch tablet. Before using your device, read carefully the use instructions

More information

PCAP Touch Screen with Dual OS

PCAP Touch Screen with Dual OS PCAP Touch Screen with Dual OS Overview Audio The screen has two integrated speakers but also has an audio out port for connecting headphones or external speakers. 10-Point PCAP Touch Technology Using

More information

Every day is an adventure and life is your playground.

Every day is an adventure and life is your playground. Every day is an adventure and life is your playground. Introducing the LG G Pad 7.0 LTE, a tablet that s big enough to accomplish each endeavor and small enough to carry around on every journey. With convenient

More information

Sleek And Sociable. The new BlackBerry Curve 9350 smartphone

Sleek And Sociable. The new BlackBerry Curve 9350 smartphone Sleek And Sociable. The new BlackBerry Curve 9350 smartphone Staying social has never looked this cool, or been this easy. Sleek style meets simplicity with the new BlackBerry Curve 9350 smartphone. The

More information

32 PCAP Touch Screen with Dual OS

32 PCAP Touch Screen with Dual OS 32 PCAP Touch Screen with Dual OS Overview Audio The screen has two integrated speakers but also has an audio out port for connecting headphones or external speakers. 10-Point PCAP Touch Technology Using

More information

Inspiron Series. Views. Specifications

Inspiron Series. Views. Specifications Inspiron 15 5000 Series Views Copyright 2015 Dell Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. Dell and the Dell logo are trademarks

More information

POS Specifications Sl. Description Specifications No. Secure Processor capable of performing at least 10 transactions per minute in laboratory environment (Each Transaction consists of 1. Perform Biometric

More information

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply.

Introduction. Built-in speaker. Infrared lights. Camera lens. Reset button. Indicator light. Micro- USB port for power supply. Axel USER MANUAL Contents Introduction 4 LED Indicators 5 What s Included 6 Wi-Fi Requirements 7 Mobile Device Requirements 7 Download the Momentum App 8 Pairing 9 Pairing additional Momentum Devices 11

More information

User Manual. Product Model: MiTraveler 7D-8B. OS: Android 4.1

User Manual. Product Model: MiTraveler 7D-8B. OS: Android 4.1 User Manual Product Model: MiTraveler 7D-8B OS: Android 4.1 Tablet of Contents Specifications.1 What s inside the box 2 Tablet Parts 2 Getting started...2 Connection to Internet..6 Task Bar..8 Install

More information

Mixed Reality with Microsoft HoloLens

Mixed Reality with Microsoft HoloLens Mixed Reality with Microsoft HoloLens Philipp Bauknecht, 11/15/2016 goto; conference Berlin Image: microsoft.com/hololens Philipp Bauknecht Founder & CEO medialesson GmbH @GrillPhil 4x AR vs. VR vs. MR

More information

Surface Go for Education

Surface Go for Education Surface Go for Education Unlock limitless learning with Surface Go Spark creativity in students with Surface Go, a powerful, versatile device that s great for education and exploration. As versatile as

More information

XYCOM CATALOGUE 2014

XYCOM CATALOGUE 2014 Xytrad XYCOM CATALOGUE 2014 XYCOM CATALOGUE 2014 Xytrad XYTRAD Corporation Corporate Office: 401 Block 9 Heritage City MG Road DLF Gurgaon Haryana 122002 India Tel: (91 124) 4363331 Mobile: (91) 9873958673

More information

Switch One SW1-011 (Win10 BTS) Specifications (v5-0-4)

Switch One SW1-011 (Win10 BTS) Specifications (v5-0-4) Category Description Footnotes Operating 1 Windows 10 Home 32-bit system CPU and chipset 1 Intel Atom TM x5-z8300 processor (quad-core, 2MB L2 cache, 1.44 GHz with Turbo Boost up to 1.84 GHz, DDR3L 1600

More information

Quad Core 1.7GHz Processor for Lightning-Fast 2D and 3D Graphics. Simplify IT needs

Quad Core 1.7GHz Processor for Lightning-Fast 2D and 3D Graphics. Simplify IT needs The ViewSonic SD-A245 is a 24" (23.8" viewable) multi-touch smart display client with 1920x1080 Full HD resolution, and a powerful NVIDIA Tegra 3 1.7GHz processor. With Citrix XenMobile pre-installed,

More information

ANDROID TABLETS & SMARTPHONES. JB Burke Your OLLI Android Facilitator/Teacher/Moderator/etc (Cell)

ANDROID TABLETS & SMARTPHONES. JB Burke Your OLLI Android Facilitator/Teacher/Moderator/etc (Cell) ANDROID TABLETS & SMARTPHONES JB Burke Your OLLI Android Facilitator/Teacher/Moderator/etc. JB2001@Q.com 928-925-9354 (Cell) Components of an Android device Adding a microsd card Not available on all devices

More information

Capturing data. Integrating efficiency. Enabling digitization. Handheld Computer CT50 -Ex for Ex-Hazardous Areas

Capturing data. Integrating efficiency. Enabling digitization. Handheld Computer CT50 -Ex for Ex-Hazardous Areas Capturing data. Integrating efficiency. Enabling digitization. Handheld Computer CT50 -Ex for Ex-Hazardous Areas Handheld Computer CT50 -Ex With support for either Windows or Android operating systems,

More information

TRIPonist Car Mirror N2P900. Smart Vehicle Surveillance & Security System. User manual Version 3.0

TRIPonist Car Mirror N2P900. Smart Vehicle Surveillance & Security System. User manual Version 3.0 TRIPonist Car Mirror N2P900 Smart Vehicle Surveillance & Security System User manual Version 3.0 Welcome N2P900 combines world-class performance with a 5-inch display that integrates Live Streaming, GPS

More information

3G/WiFi In-Vehicle Surveillance & GPS Tracking System

3G/WiFi In-Vehicle Surveillance & GPS Tracking System Model: MDVR-J200 3G/WiFi In-Vehicle Surveillance & GPS Tracking System Quick Start Guide Thank you for purchasing a Securview Vehicle Surveillance & Tracking System This Quick Start Guide covers basic

More information

Ultra-Compact & Super Light-weight

Ultra-Compact & Super Light-weight Ultra-Compact & Super Light-weight Set-top Box Perfect size to fit into the glove compartment. Front & Rear Cameras Total weight of the cameras are less than 45grams. Front camera is more 50% smaller than

More information

Adjust keyboard height/layout and position of the keypad for onehanded. Window

Adjust keyboard height/layout and position of the keypad for onehanded. Window Technical Specifications Carrier Boost Mobile Design Stylus Pen Display Exclusive Rear Key Customizable Keyboard Customizable Home Touch Buttons Customizable Settings for Writing and Drawing Large 5.7"

More information

Touch technology and collaboration are brought to life with the brilliance of our 4K ultra high-definition LCD flat panel Android display.

Touch technology and collaboration are brought to life with the brilliance of our 4K ultra high-definition LCD flat panel Android display. ProColor 652 Touch technology and collaboration are brought to life with the brilliance of our 4K ultra high-definition LCD flat panel Android display. Features Up to 20 single-point users or 10 dual-touch

More information

From Boolean Algebra to Smart Glass

From Boolean Algebra to Smart Glass From Boolean Algebra to Smart Glass George Tai 2014/03 Boolean Algebra Why mathematics is the base for today s computer technology? In mathematics and mathematical logic, Boolean algebra is the subarea

More information

Using GIGABYTE Notebook for the First Time

Using GIGABYTE Notebook for the First Time Congratulations on your purchase of the GIGABYTE Notebook. This manual will help you to get started with setting up your notebook. The final product configuration depends on the model at the point of your

More information

Che2-L11 & Che2-L12 & Che2-L23 Smartphone V100R001. Product Description. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD.

Che2-L11 & Che2-L12 & Che2-L23 Smartphone V100R001. Product Description. Issue 01. Date HUAWEI TECHNOLOGIES CO., LTD. V100R001 Issue 01 Date 2014-10-08 HUAWEI TECHNOLOGIES CO., LTD. . 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written

More information

ENGLISH. User Manual. Congratulations for buying EasyPad Junior 4.0! Thank you very much for your trust and your decision to buy an Easypix product!

ENGLISH. User Manual. Congratulations for buying EasyPad Junior 4.0! Thank you very much for your trust and your decision to buy an Easypix product! ENGLISH User Manual Congratulations for buying EasyPad Junior 4.0! Thank you very much for your trust and your decision to buy an Easypix product! As we constantly update and improve EasyPad there may

More information

Android Tablets Netbook. Samsung Galaxy Tab GT-P7510/M " 16 GB Wi-Fi NVIDIA Tegra 2 - WXGA Display - 1 GB RAM - Bluetooth -

Android Tablets Netbook. Samsung Galaxy Tab GT-P7510/M  16 GB Wi-Fi NVIDIA Tegra 2 - WXGA Display - 1 GB RAM - Bluetooth - Greeneville City Schools Parent / Student Purchase Program To place orders email Doug Carswell doug@centralknox.com with what you would like to order, the shipping address and your complete contact information.

More information

EMBEDDED SYSTEMS AND MOBILE SYSTEMS

EMBEDDED SYSTEMS AND MOBILE SYSTEMS EMBEDDED SYSTEMS AND MOBILE SYSTEMS Embedded systems Sensors, actuators, devices 8-bit uc, sensors, actuators Mobile systems: Portable PC (powerfull, WiFi connected, heavy, cumbersome, about 4h of battery

More information

1. Table Parts. Public

1. Table Parts. Public Contents 1. Tablet Parts 2. Key Layouts and Definitions 3. Getting Started 4. The Start Screen 5. Applications 6. Charm Menu 7. Using Two Application at Once 8. Factory Reset 9. Safety Information 10.

More information

Highly Portable, Perfectly Paired. With LG, it s all possible.

Highly Portable, Perfectly Paired. With LG, it s all possible. Highly Portable, Perfectly Paired With LG, it s all possible. Every day is an adventure and life is your playground. Introducing the LG G Pad 7.0 LTE, a tablet that s big enough to accomplish each endeavor

More information

Android SmartTV initial manual

Android SmartTV initial manual Android SmartTV initial manual This guide contains explicit steps to follow in activating the Android SmartTV and navigate through the android based menu. Table of contents 1. Remote control 2.Switch to

More information

So let s see if the MS Surface has given Apple Corp some ghostly shivers to worry about...

So let s see if the MS Surface has given Apple Corp some ghostly shivers to worry about... Last Friday saw the MS Surface released by Microsoft. Running Windows 8 RT it's being marketed in the same marketplace as the Apple ipad. So we at Prolateral thought we would look at them both and, as

More information

Iconia W1-810 Specifications (v6-0-6)

Iconia W1-810 Specifications (v6-0-6) Category Description Footnotes Operating 1 Windows 8.1 32-bit system Dimensions and 2 Dimensions weight 128 (W) x 214 (D) x 9.75 (H) mm (5.04 x 8.43 x 0.38 inches) Weight 0.37 kg (0.82 lbs.) with 1-cell

More information

1.1 1.2 2.1 2.2 2.3 3.1 3.2 INTRODUCING YOUR MOBILE PHONE Learn about your mobile phone s keys, display and icons. Keys From the front view of your phone you will observe the following elements: (See 1.1

More information

User manual of WIFI camcorder

User manual of WIFI camcorder User manual of WIFI camcorder 一 Attention: 1. Please strictly abide by the relevant national laws; this product may not be used for illegal purposes, otherwise take the consequence by yourself. 2. Please

More information

ThinkPad X1 Tablet (2 nd Gen) Platform Specifications

ThinkPad X1 Tablet (2 nd Gen) Platform Specifications ThinkPad X1 Tablet (2 nd Gen) Platform Specifications Processor 7th Generation Intel Core Processor Processor # of # of Clock Burst Number Cores Threads Speed Frequency Cache Memory Processor vpro Types

More information

55 PCAP Touch Screen Kiosk with Dual OS

55 PCAP Touch Screen Kiosk with Dual OS 55 PCAP Touch Screen Kiosk with Dual OS Overview 10-Point PCAP Touch Technology Using the most responsive and sensitive commercial touch technology available. Not affected by dust or debris on the screen

More information

Phone info. Peering into Mobile. HUAWEI Honor 6(H60-L02) HUAWEI Honor 6(H60-L02) Teardown

Phone info. Peering into Mobile. HUAWEI Honor 6(H60-L02) HUAWEI Honor 6(H60-L02) Teardown Phone info The -honor 6(H60-L02) is a dual-band GSM and TD-SCDMA smart phonefeaturing a5.0-in. TFT LTPS display with a1080p (1920x1080) resolution capacitive multi-touch screen. With the Android 4.4,Emotion

More information

Karbonn All rights reserved

Karbonn All rights reserved User Manual V97 HD Table of Contents Safety instructions ------------------------------------------------------------------ 3 Device overview --------------------------------------------------------------------

More information

Exclusive pricing for UW students, faculty, staff and UWAA members!

Exclusive pricing for UW students, faculty, staff and UWAA members! Exclusive pricing for UW students, faculty, staff and UWAA members! MacBook Pro with Retina display (mid 2017) 720p FaceTime HD Camera; stereo speakers & dual microphones; backlit keyboard with ambient

More information

Point of View Android 2.3 Tablet - User s Manual PlayTab Pro

Point of View Android 2.3 Tablet - User s Manual PlayTab Pro Contents Contents... 1 1. General notes... 2 2. Box contents... 2 3. Product outlook... 3 4. Startup and shut down... 4 5. Desktop... 4 6. Buttons... 5 7. System Settings... 5 8. HDMI... 7 9. Install,

More information

XDK HARDWARE OVERVIEW

XDK HARDWARE OVERVIEW XDK HARDWARE OVERVIEW Agenda 1 General Overview 2 3 4 Sensors Communications Extension Board 2 General Overview 1. General Overview What is the XDK? The Cross-Domain Development Kit, or XDK, is a battery

More information

AXONE 5.

AXONE 5. AXONE 5 www.texa.com AXONE 5: easy and complete diagnosis Repairing vehicles is ever more complex. To help mechanics in their everyday work, TEXA presents AXONE 5, the complete, easy-to-use diagnostic

More information