Motion tracking using Matlab, a Nintendo Wii Remote, and infrared LEDs.

Size: px
Start display at page:

Download "Motion tracking using Matlab, a Nintendo Wii Remote, and infrared LEDs."

Transcription

1 Motion tracking using Matlab, a Nintendo Wii Remote, and infrared LEDs. Dr W. Owen Brimijoin MRC Institute of Hearing Research (Scottish Section) Glasgow Royal Infirmary 16 Alexandra Parade Glasgow G31 2ER United Kingdom owen@ihr.gla.ac.uk Introduction This document describes how to use a Wii remote to do simple single-axis motion tracking. The Wii remote is an inexpensive peripheral for a video game system built by Nintendo. It has buttons, a 3-axis accelerometer, and an infrared camera mounted on the front. The Wii remote is a useful tool for researchers: the buttons on the device can be used for recording subject responses, the accelerometers can be used for detecting movement, and the camera can be used to do reasonably accurate motion-tracking of objects such as the head. Combined with Matlab and digital signal processing, it is possible to use this system to (e.g.) adjust signals presented over headphones in real-time so that they appear to remain fixed in space, rather than moving with the head. Note: this code does not do stereoscopic 3D tracking: it can only measure rotations that are in the plane of the camera. This will allow you to track yaw, rotations of the head in the vertical axis (shaking your head no ), but not pitch or roll. If you find this code useful for your science, please cite Brimijoin et al (in press 2013, PLoS One). Requirements 1) 1 or more Nintendo Wii remotes 2) 1 Microphone stand with clip or other mounting hardware for the remote 3) 1 Bluetooth Chip and associated software driver stack 4) 1 array of infrared LEDs (battery powered) 5) 1 copy of Matlab 6) 1 copy of the WiiLAB dynamic link library 7) 7 Matlab files (included here) Detailed Requirements 1) Wii remotes. The most recent iteration of the Nintendo Wii remote has been known to have compatibility problems. We recommend either an original (pre-2010) Wii remote (the ones without the words Motion-Plus printed on the remote), or a first generation Motion-Plus remote. 2) Stand for wii remote. The wii remote should be mounted above the head, pointing down at the participant (see figure 1). Microphone stands can

2 2 be used for this purpose, provided they have a clip style microphone mount with jaws large enough to fit around the body of the remote. Given the limited field of view of the Wii remote s infrared camera, it is recommended that the remote be mounted at least a meter above the head. The height you use will be a tradeoff between tracking accuracy (closer is better), and the area over which you can capture motion (farther is better). Given the size of the infrared LED array you are using (see point 4 below) and typical subject movements, an ideal distance that allows accurate tracking but little loss of the subject s head is about 5 times as far away as the length of the LED array. 3) Bluetooth chip. It is recommended that you use a third-party Bluetooth USB dongle such as those made by Belkin (F8T065) and install the Bluetooth drivers either from the included compact disc or downloaded from the manufacturer. The reasons for this are that the built-in Windows Bluetooth chips and stack have been known to raise compatibility issues. 4) Infrared LED array. (Figure 2). The array must be of 3 infrared LEDs arranged in a single row. The exact dimensions of the array are not critical (the one we use is 0.2 meters in length) but the important thing is that the rear two LEDs must be closer together than they are from the front LED. The reason for this is that this asymmetry allows Matlab to determine the front and back of the array, so making it possible to record 360 of motion. A circuit diagram of a simple version of a suitable LED array is shown in Figure 2. The array can be built by anyone with any soldering experience this example is powered by a single 9 volt battery, has a single on-off switch, one 47 Ohm resistor, and three 1.5 volt infrared LEDs wired in series. The LEDs, resister, battery, and switch can be mounted on anything, provided that this object can in turn be mounted on the head. We recommend using the inside of a construction hard hat, as the adjustable plastic bands inside a hard hat can be made to fit any head and are easily disinfected. 5) A licensed copy of Matlab (r13 or later). 6) WiiLAB library. You will need to download and install the WiiLAB library from Brindza and Szweda at Notre Dame. The installer can also be obtained from its original source here: Download the.zip file containing the installer and source code (currently this link is called Get the zip file (full install). ). Unzip the directory to a spot on the matlab path. Run the installer batch file: InstallWiiLab. The resulting directories will contain a number of files, the critical ones being WiiLAB.dll, WiimoteLib.dll, and WiiLAB.tbl. Either copy these and place them into

3 3 a directory with the matlab functions listed below, or move the Matlab functions to the directory containing them. Compatibility note: For older versions of Matlab (or for instances where installation or connection from Matlab proves to be a problem), an alternative version of the WiiLAB library has been provided by Ian Stevenson and may be found here: Select the link: WiiLab_2007aCompat.zip 7) Matlab functions. The functions included in the zip file are detailed below: Core functions: connect_n_wiimotes(n); %this connects n wiimotes (one for tracking, one for response, etc). disconnect_ wiimotes(); %this disconnects all connected wii remotes. buttons = get_wiimote_buttons(remote_num) %tell it which remote you want and it will return what button(s) are being pressed. accel = get_wiimote_acceleration(remote_num) %tell it which remote you want and it will return the output of the 3 accelerometers [yaw, x, y] = get_wiimote_angle(remote_num) %tell it which remote you want and it will return the angle and xy position of the infrared LED array. Example Functions: test_wiimote(remote_num) %this simply plots all data that is received from the wiimote (buttons, acceleration, LED locations, and angle). It calls the other functions to demonstrate how they are used. [yaws, xvals, yvals] = record_head_angle(duration,remote_num) %this is another example function showing how to use get_wiimote_angle.m to record head motion over a specified time. Motion Tracking Methods: 1) Pairing the Wii Remote to Windows: The Wii remote must first be connected to the computer*. This is accomplished through the Show Bluetooth devices dialog box (typically found in the tray at the bottom right of the screen). Click Add a device then immediately press down buttons (1) and (2) on the wii remote. The LEDs on the remote will begin flashing and the remote will now show up in the list of devices (as something like Nintendo RVL-CNT-01 ). Select this, click next, and then Pair without using a code. These mouse clicks must be performed within about

4 4 ten seconds or else the wii remote will stop flashing and the pairing will fail. If it works, a dialogue box should now read This device has been successfully added to this computer. The blue LEDs on the wii remote will continue to blink. Click dialogbox at this point. Once you are finished motion tracking, it is recommended that you remove the device (by right clicking and selecting remove device ). *Note that these instructions are based on pairing the device in Windows 7. 2) Connecting to the Wii remote in Matlab: To connect a single Wii remote, open matlab and type the following at the Matlab command line: >> connect_n_wiimotes(1) If the connection is successful, the blue LEDs on the Wii remote will now stop flashing and a single one will light steadily. If this does not happen, remove the device from Windows Bluetooth devices and start again at step 1). To test whether you have a good connection, run test_wiimote(1). The active buttons and the output of the accelerometers should be displayed in the figure window. Once you are finished motion tracking, it is recommended that you disconnect the device by typing >> disconnect_wiimotes at the Matlab command prompt and then remove the device from the Windows Bluetooth devices. Warning! If you shut off the wii remote, disconnnect it from Windows, remove the battery, or let it run down on charge all the way, this will cause Matlab to crash unceremoniously without saving your workspace. 3) Motion tracking: Turn on the LED array and ensure it is in the field of view of the wii remote. You can run >> test_wiimote(1) in Matlab to visualize the output of the wii remote camera. If the remote can see all three LEDs of the array, they will be displayed in real-time on the screen as red green and blue dots. The subtended angle of the array will also be displayed on the figure. The core functions detailed above can be used as components in any Matlab script or function. An example for how to record head movements over time and report them as a vector of head angles is given with the function: >> record_head_angle(duration,remote_num). This example function takes as its input duration (in seconds), and remote number. For example, to record 2 seconds of angle and array position, call the function as follows: >> [yaw,x,y] = record_head_angle(2,1); >> plot(yaw) Other possible uses for the motion tracking system would be to alter in real-time some aspect of a signal being presented, for example the ITD or ILD or to choose a binaural room impulse response. For these applications, one should call

5 5 >> yaw = get_wiimote_angle(1) ; in a loop to query the wii remote for head angle. You may then use this angle to adjust audio playback. We have successfully implemented this system using Windows XP with Matlab r13 and Windows 7 with Matlab versions 2011a and 2013b. We have not tested it on any other system, and we cannot guarantee that it will work on your system.

Lab 2 Sensor Modeling Introduction to the Wiimote and the Wiimote LABVIEW Interface

Lab 2 Sensor Modeling Introduction to the Wiimote and the Wiimote LABVIEW Interface Lab 2 Sensor Modeling Introduction to the Wiimote and the Wiimote LABVIEW Interface 1. Objective In this lab, you will: i. Become familiar with the Wiimote ii. Understand the LABVIEW Bluetooth interface

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

BTH360-S Bluetooth Stereo Headset Specifications & User's Guide

BTH360-S Bluetooth Stereo Headset Specifications & User's Guide BTH360-S Bluetooth Stereo Headset Specifications & User's Guide www.kinivo.com Email: support@kinivo.com Warranty BTH360-S is covered under 1 year limited hardware warranty. Please contact Kinivo technical

More information

RME Driver Install and Update Guide for Windows XP

RME Driver Install and Update Guide for Windows XP RME Driver Install and Update Guide for Windows XP Copyright 2008 Synthax Inc. This step-by-step guide is intended to show RME users how to install drivers and set up a device for the first time under

More information

iloq P10S.10/20 Programming device User's Guide

iloq P10S.10/20 Programming device User's Guide iloq P10S.10/20 Programming device User's Guide CONTENTS CONTENTS... 2 GENERAL... 3 USING THE PROGRAMMING DEVICE... 5 Starting the programming device... 5 Programming of locks... 5 Programming of keys...

More information

How To Control Gimbal

How To Control Gimbal Tarot 2-Axis Brushless Gimbal for Gopro User Manual V1.0 1. Introduction Tarot T-2D gimbal is designed for the Gopro Hero3, which is widely used in film, television productions, advertising aerial photography,

More information

Mirror Mount Video Monitor/Recorder with Front and Rear View Night Cameras PLCMDVR5

Mirror Mount Video Monitor/Recorder with Front and Rear View Night Cameras PLCMDVR5 Mirror Mount Video Monitor/Recorder with Front and Rear View Night Cameras PLCMDVR5 www.pyleaudio.com Instruction Manual Installation and Connection: 1. Please disconnect your car battery. 2. In the contents

More information

Virtual CRASH 3.0 Staging a Car Crash

Virtual CRASH 3.0 Staging a Car Crash Virtual CRASH 3.0 Staging a Car Crash Virtual CRASH Virtual CRASH 3.0 Staging a Car Crash Changes are periodically made to the information herein; these changes will be incorporated in new editions of

More information

Table of Contents. Use. Troubleshooting. Setup. Welcome. 11 How to arm/disarm system/camera(s) 19 Sync Module setup issues. 3 Installing the Blink app

Table of Contents. Use. Troubleshooting. Setup. Welcome. 11 How to arm/disarm system/camera(s) 19 Sync Module setup issues. 3 Installing the Blink app User Guide Table of Contents Welcome Setup Use Troubleshooting 2 What s in the box 2 What you need 3 Installing the Blink app 4 Setting up the Sync Module 5 Connecting the Sync Module to Your Wi-Fi 7 Adding

More information

IR-PRO IR-PRO. Operation Guide. Professional Infrared Code Capture System

IR-PRO IR-PRO. Operation Guide. Professional Infrared Code Capture System IR-PRO Operation Guide IR-PRO Professional Infrared Code Capture System Introduction The IR-PRO is an infrared code capture system that is specifically designed for system integration professionals. Unlike

More information

How To Use A Magistrate Desktop Computer

How To Use A Magistrate Desktop Computer Windows 7 Tips and Tricks 2013 Fall Magistrates Conference (This page left blank) Magistrate Laptops Page 2 Purpose: Magistrates desktop computers are being replaced with a laptop, external monitor, docking

More information

Watch Your Garden Grow

Watch Your Garden Grow Watch Your Garden Grow The Brinno GardenWatchCam is a low cost, light weight, weather resistant, battery operated time-lapse camera that captures the entire lifecycle of any garden season by taking photos

More information

PS 29M DUAL CHANNEL BELTPACK IN METAL CASE

PS 29M DUAL CHANNEL BELTPACK IN METAL CASE PS 29M DUAL CHANNEL BELTPACK IN METAL CASE USER MANUAL October 2013 This product is designed and manufactured by: ASL Intercom BV Zonnebaan 42 3542 EG Utrecht The Netherlands Phone: +31 (0)30 2411901 Fax:

More information

Advanced Programming with LEGO NXT MindStorms

Advanced Programming with LEGO NXT MindStorms Advanced Programming with LEGO NXT MindStorms Presented by Tom Bickford Executive Director Maine Robotics Advanced topics in MindStorms Loops Switches Nested Loops and Switches Data Wires Program view

More information

Lab 3: Introduction to Data Acquisition Cards

Lab 3: Introduction to Data Acquisition Cards Lab 3: Introduction to Data Acquisition Cards INTRODUCTION: In this lab, you will be building a VI to display the input measured on a channel. However, within your own VI you will use LabVIEW supplied

More information

Bathroom Cabinet. Installation & User Guide. Illuminated Mirrors. www.illuminated-mirrors.uk.com

Bathroom Cabinet. Installation & User Guide. Illuminated Mirrors. www.illuminated-mirrors.uk.com Illuminated Mirrors The UK s Largest LED Mirror Supplier to Trade and Retail Installation & User Guide Bathroom Cabinet www.illuminated-mirrors.uk.com Bathroom Cabinet Installation & User Guide Thank you

More information

Video in Logger Pro. There are many ways to create and use video clips and still images in Logger Pro.

Video in Logger Pro. There are many ways to create and use video clips and still images in Logger Pro. Video in Logger Pro There are many ways to create and use video clips and still images in Logger Pro. Insert an existing video clip into a Logger Pro experiment. Supported file formats include.avi and.mov.

More information

HP Bluetooth Pendant Headphones User Guide

HP Bluetooth Pendant Headphones User Guide HP Bluetooth Pendant Headphones User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. Windows and Windows Vista are either trademarks or registered trademarks of Microsoft Corporation in

More information

2 Vehicle CCTV System with Mini Internal, Mini IR Vehicle Cameras and 4 Camera Recorder with GPS and SD Card Recording (Model: SVC412PS)

2 Vehicle CCTV System with Mini Internal, Mini IR Vehicle Cameras and 4 Camera Recorder with GPS and SD Card Recording (Model: SVC412PS) VEHICLE CCTV AND SAFETY SYSTEMS 2 Vehicle CCTV System with Mini Internal, Mini IR Vehicle Cameras and 4 Camera Recorder with GPS and SD Card Recording (Model: SVC412PS) The SVC412GPS is a modular system,

More information

Alarm Security Kit - NVR

Alarm Security Kit - NVR Alarm Security Kit - NVR EN The alarm configuration menu (see above right screenshot) allows you to configure and change settings for the PIR movement sensors, window/door sensors, remote controls (key

More information

APPLICATION NOTE: Designing a User Friendly Automatic registration system for use with MDM David Wilson- Michigan State University

APPLICATION NOTE: Designing a User Friendly Automatic registration system for use with MDM David Wilson- Michigan State University April 1, 2010 APPLICATION NOTE: Designing a User Friendly Automatic registration system for use with MDM David Wilson- Michigan State University Abstract: This document will outline design practices that

More information

INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM

INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM Revised: August 28, 2014 PRODUCT REFERENCE MOUNTING ACCESSORIES PIR / MOTION DETECTION UNIT MAIN UNIT POWER ADAPTER MOUNTING ACCESSORIES

More information

MXL 990 Virtual Preamp Installation

MXL 990 Virtual Preamp Installation MXL 990 Virtual Preamp Installation The MXL 990 USB will operate without MXL s Virtual Preamp software using the standard drivers included in your computer's operating system. However, the MXL 990 USB

More information

Renewable Energy Monitor User Manual And Software Reference Guide. sales@fuelcellstore.com (979) 703-1925

Renewable Energy Monitor User Manual And Software Reference Guide. sales@fuelcellstore.com (979) 703-1925 Renewable Energy Monitor User Manual And Software Reference Guide sales@fuelcellstore.com (979) 703-1925 1 Introducing the Horizon Renewable Energy Monitor The Renewable Energy Monitor is an educational

More information

Tutorial for Tracker and Supporting Software By David Chandler

Tutorial for Tracker and Supporting Software By David Chandler Tutorial for Tracker and Supporting Software By David Chandler I use a number of free, open source programs to do video analysis. 1. Avidemux, to exerpt the video clip, read the video properties, and save

More information

Page 1 S5.5 Monitoring Software Manual Rev 1.2 for Software Ver 1.0

Page 1 S5.5 Monitoring Software Manual Rev 1.2 for Software Ver 1.0 Trantec S5.5 Monitoring Software Manual Initial Setup Minimum PC Requirements 1.6 GHz CPU, 256 MB Memory, 1 available USB port, Windows XP Recommended PC >2.0 GHz CPU, 512 MB (XP) 1 GB (Vista) memory,

More information

TekBots TM Oregon State University. usb_cam ------------------------------- User Guide. Version 1.0 By Adriaan Smit OSU EE Graduate Student

TekBots TM Oregon State University. usb_cam ------------------------------- User Guide. Version 1.0 By Adriaan Smit OSU EE Graduate Student usb_cam ------------------------------- User Guide TekBots TM Oregon State University Version 1.0 By Adriaan Smit OSU EE Graduate Student Copyright 2004 - Oregon State University Page 2 of 2 Table of Contents

More information

Audio Only Broadcast through Flash Media Live Encoder On Windows

Audio Only Broadcast through Flash Media Live Encoder On Windows Audio Only Broadcast through Flash Media Live Encoder On Windows This user guide will take you through the steps of setting up an audio-only broadcast on a Windows PC. Other user-guides are available at

More information

This Document Contains:

This Document Contains: Instructional Documents Video Conference >> PolyCom >> VSX 7000 Extension Computing Technology Unit This Document Contains: A Device Description An Installation Guide Instructions for Use Best Practices

More information

TS1 Ultra Sonic Tank Sender Training. 27 November 2007

TS1 Ultra Sonic Tank Sender Training. 27 November 2007 1 TS1 Ultra Sonic Tank Sender Training 27 November 2007 2 Topics TS1 Tank Sender TS1-PK Programming Kit TS1 Programming Software Programming TS1 Troubleshooting 3 TS1 TS1 is an advanced tank sender based

More information

Contents Contents Contents Overview Charging your headset Wearing the headset Powering on the headset Connecting your headset for dictation

Contents Contents Contents Overview Charging your headset Wearing the headset Powering on the headset Connecting your headset for dictation 1 Contents Contents Contents 2 Overview 3 Charging your headset 4 Wearing the headset 4 Powering on the headset 4 Connecting your headset for dictation 5 The adapter 5 Adjusting your computer's audio settings

More information

BIG BLUE BUTTON TRAINING

BIG BLUE BUTTON TRAINING BIG BLUE BUTTON TRAINING Contents Introduction... 2 Objectives... 2 Connecting to BigBlueButton Through Canvas... 2 Using BigBlueButton... 6 Saving Your BigBlueButton Conference... 15 Minimum Requirements

More information

DAKTON µ BOX MANUAL µbox User Manual 1

DAKTON µ BOX MANUAL µbox User Manual 1 µbo User Manual 1 DAKTON µ BO: compact data logger and sensor µ BO is a sensor and a data logger together. It records data processed by DAKTON DASHBOARD with the addition of lateral and longitudinal accelerations.

More information

User Manual. www.thescorpionstore.com

User Manual. www.thescorpionstore.com User Manual www.thescorpionstore.com Table Of Contents Packing Contents...2 Overview...3 Features...3 Product Structure...4 Installation...5 Operation Guide...6-7 Saving and Playing Files...8 PC Camera...9

More information

Nighthawk AC1900 WiF Range Extender

Nighthawk AC1900 WiF Range Extender Nighthawk AC1900 WiF Range Extender Model EX7000 User Manual December 2014 202-11469-01 350 East Plumeria Drive San Jose, CA 95134 USA Nighthawk AC1900 WiF Range Extender Support Thank you for selecting

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

Firmware & Software update procedures Amicroe TouchTAB IV.

Firmware & Software update procedures Amicroe TouchTAB IV. Firmware & Software update procedures Amicroe TouchTAB IV. Important note: The steps & procedures outlined below may be of assistance if you are experiencing difficulties with your Amicroe TouchTAB 9.7

More information

CinePlay 1.1.2. User Manual

CinePlay 1.1.2. User Manual CinePlay User Manual 1 CinePlay 1.1.2 User Manual CinePlay is a professional ios video player complete with timecode overlays, markers, masking, safe areas and much more. It is ideal for dailies, portfolios,

More information

Videoconferencing from Home with ViaVideo

Videoconferencing from Home with ViaVideo Videoconferencing from Home with ViaVideo A. Set up and Installation of ViaVideo Conferencing Device IMPORTANT NOTE: If you have already successfully set up and used your ViaVideo system in a video conference

More information

How to setup a serial Bluetooth adapter Master Guide

How to setup a serial Bluetooth adapter Master Guide How to setup a serial Bluetooth adapter Master Guide Nordfield.com Our serial Bluetooth adapters part UCBT232B and UCBT232EXA can be setup and paired using a Bluetooth management software called BlueSoleil

More information

User Guide. Introduction to 3M Digital Designs. User Guide Contents: Installing 3M Digital Designs Software. Setting up a Plotter

User Guide. Introduction to 3M Digital Designs. User Guide Contents: Installing 3M Digital Designs Software. Setting up a Plotter User Guide June 2008 Introduction to 3M Digital Designs 3M Digital Designs provides you with a convenient system for precision cutting of paint protection film kits. When these cut pieces are applied to

More information

STEREO BLUETOOTH WIRELESS HEADPHONES

STEREO BLUETOOTH WIRELESS HEADPHONES STEREO BLUETOOTH WIRELESS HEADPHONES model: AF32 USER MANUAL part of the series PACKAGE CONTENTS Runaway AF32 Stereo Bluetooth Wireless Headphones Charging cable (USB 3.5mm) Stereo audio cable (3.5mm 3.5mm)

More information

SMART CONSOLE Software and Firmware Upgrade Procedure

SMART CONSOLE Software and Firmware Upgrade Procedure Smart Console Technical Document 114-01 20/04/07 SMART CONSOLE Software and Firmware Upgrade Procedure Overview Professional and Elite Series This document describes the process of upgrading both the software

More information

www.ginchamp.com Product Description Product structure www.ginchamp.com

www.ginchamp.com Product Description Product structure www.ginchamp.com User Manual of Car DVR GC-K6000 Product Description Product structure 1) up select button 2) menu button 3) select the button down 4) USB data interface 5) bracket mounting holes 6) HDMI output 7) Power

More information

2.0 AUDIO RECORDING INTERFACE

2.0 AUDIO RECORDING INTERFACE 24-Bit/96kHz USB 2.0 AUDIO RECORDING INTERFACE USER MANUAL 1 of 13 Contents: 1. Instruction 03 2. Key Features 03 3. Front Panel 03 4. Rear Panel 04 5. Minimum System Requirements 04 6. Installation Process

More information

OVERVIEW Playbacks: Shortcuts: Memories: Data Entry Wheels: Touchpad: Master and Blackout:

OVERVIEW Playbacks: Shortcuts: Memories: Data Entry Wheels: Touchpad: Master and Blackout: OVERVIEW The MIDIcon is a USB MIDI control panel designed to work alongside the Elation lighting software packages. The Midicon is USB powered and uses the USB class drivers so that no driver needs to

More information

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual

Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Installing a hard disk 1. Power off the unit. 2. Remove the bottom cover from the unit by removing four screws. 3. Insert the 2.5 HDD to the

More information

Cassette2CD Wizard User's Manual

Cassette2CD Wizard User's Manual Cassette2CD Wizard User's Manual Table of Contents 1. Installation Instructions a. Connecting tape-deck to the computer b. Installing the Software 2. Using Cassette2CD Wizard a. Setting up and Testing

More information

F-Series Desktop User Manual F20. English - Europe/New Zealand

F-Series Desktop User Manual F20. English - Europe/New Zealand F-Series Desktop User Manual F20 en English - Europe/New Zealand Contents Key to icons and text...3 What is F-Series Desktop?...4 How do I install F-Series Desktop onto my computer?...4 How do I subscribe

More information

Procedure for updating Firmware of EZ4 W or ICC50 W

Procedure for updating Firmware of EZ4 W or ICC50 W Procedure for updating Firmware of EZ4 W or ICC50 W 1. Download the Firmware file for your camera to your PC 2. Download the Leica Camera Configuration program to your PC 3. Install Leica Camera Configuration

More information

USING THE RECORDING KIT By hakon.kvidal@nmh.no Version: 23 January 2015

USING THE RECORDING KIT By hakon.kvidal@nmh.no Version: 23 January 2015 USING THE RECORDING KIT By hakon.kvidal@nmh.no Version: 23 January 2015 This document is a short introduction on how to use the recording kit. Reading thru this document will save you valuable time and

More information

LDG DTS-4/4R Desktop Coaxial Switch / Remote

LDG DTS-4/4R Desktop Coaxial Switch / Remote LDG DTS-4/4R Desktop Coaxial Switch / Remote LDG Electronics 1445 Parran Road, PO Box 48 St. Leonard MD 20685-2903 USA Phone: 410-586-2177 Fax: 410-586-8475 ldg@ldgelectronics.com www.ldgelectronics.com

More information

Bluetooth Installation

Bluetooth Installation Overview Why Bluetooth? There were good reasons to use Bluetooth for this application. First, we've had customer requests for a way to locate the computer farther from the firearm, on the other side of

More information

FMT600BT Transmitter

FMT600BT Transmitter Technaxx FMT600BT Transmitter User Manual Transfer of music and calls directly from your Bluetooth device to your car radio This device complies with the requirements of the standards referred to the Directive

More information

User Guide. Soft-Touch TM Bluetooth Laser Mouse N2953

User Guide. Soft-Touch TM Bluetooth Laser Mouse N2953 Soft-Touch TM Bluetooth Laser Mouse 410-XXXXXXXXXXX 1 YEAR LIMITED WARRANTY: We pride ourselves on the quality of our products. For complete warranty details and a list of our worldwide offices, please

More information

User Guide. VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003. Jun 13 2007 Revision 1.1e

User Guide. VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003. Jun 13 2007 Revision 1.1e VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003 Jun 13 2007 Revision 1.1e VT1708A VIA HD Audio Adeck For Windows 2000, Windows XP & Server 2003 Revision History Rev Date Initial Note

More information

Lenovo Miix 2 8. User Guide. Read the safety notices and important tips in the included manuals before using your computer.

Lenovo Miix 2 8. User Guide. Read the safety notices and important tips in the included manuals before using your computer. Lenovo Miix 2 8 User Guide Read the safety notices and important tips in the included manuals before using your computer. Notes Before using the product, be sure to read Lenovo Safety and General Information

More information

SCDSB Video Conferencing

SCDSB Video Conferencing Video Conferencing Video Conferencing Page 1 of 10 SCDSB Video Conferencing SCDSB VIDEO CONFERENCING... 1 SETTING UP THE VSX 7000S... 2 WITHOUT PC CONTENT... 2 Typical Setup without PC Content Diagram...

More information

Recording Audio to a Flash Drive

Recording Audio to a Flash Drive Recording Audio to a Flash Drive 1. Turn on the main power supply. This is the Middle Atlantic power supply it is located near the bottom of the equipment rack. 2. Power on the Denon Recorder. 3. Watch

More information

USB 2.0 4-Port Extender Kit

USB 2.0 4-Port Extender Kit USB 2.0 4-Port Extender Kit 500072 MuxLab Inc. 2014 94-000760-A / SE-000760-A Table of Contents 1. Introduction... 2 2. Features... 2 3. Specifications... 2 4. Package Contents... 3 5. Physical Diagram...

More information

BLU Vivo 4.3 User Manual

BLU Vivo 4.3 User Manual BLU Vivo 4.3 User Manual 1 Table of Contents Phone Safety Information... 3 Appearance and Key Functions... 4 Installation and Charging... 5 Phone Operation... 7 Communication... 10 Camera... 11 Gallery...

More information

Dension BTA1500 Bluetooth Module

Dension BTA1500 Bluetooth Module USER MANUAL Dension BTA1500 Bluetooth Module DEBTA-9201-2 1 www.dension.com USER MANUAL - BTA1500 Contents 1. Introduction... p.2 2. Useful Information... p.2 3. Package contents... p.3 4. Car compatibility...

More information

Basics. How can I use the Internet to make free calls?

Basics. How can I use the Internet to make free calls? Basics Use this document with the glossary A helper should take you through this guide Keeping in touch 4.3 Making calls on Skype How can I use the Internet to make free calls? Skype is a free service

More information

TOSR0X-D. USB/Wireless Timer Relay Module. User Manual. Tinysine Electronics @ 2013 Version 1.0

TOSR0X-D. USB/Wireless Timer Relay Module. User Manual. Tinysine Electronics @ 2013 Version 1.0 TOSR0X-D USB/Wireless Timer Relay Module User Manual Tinysine Electronics @ 2013 Version 1.0 INTRODUCTION This USB/Wireless Timer Relay Module allows computer control switching of external devices by using

More information

MJPEG Camera Client User Manual

MJPEG Camera Client User Manual MJPEG Camera Client User Manual CONTENTS User Manual 1 WELCOME... 3 1.1Features... 3 1.2Installation Requirements... 3 1.3 Software Installation... 3 2 Software Operation... 5 2.1 Tab bar... 6 2.2 Device

More information

Device Diagram Compatible with: Charging your wristband

Device Diagram Compatible with: Charging your wristband Device Diagram Compatible with: iphone 4S/5/5C/5S/6/6 Plus, ipad 3/4/Air/Mini, ipod touch 5 th Gen. Running Apple ios 6 or higher. Samsung Galaxy S3, S4, S5. Running Android 4.3 or higher. Charging your

More information

Flight Controller. Mini Fun Fly

Flight Controller. Mini Fun Fly Flight Controller Mini Fun Fly Create by AbuseMarK 0 Mini FunFly Flight Controller Naze ( Introduction 6x6mm. 6 grams (no headers, 8 grams with). 000 degrees/second -axis MEMS gyro. auto-level capable

More information

igadgitz Bluetooth Audio Transmitter & Receiver (BTT009 / U3442) User Guide

igadgitz Bluetooth Audio Transmitter & Receiver (BTT009 / U3442) User Guide igadgitz Bluetooth Audio Transmitter & Receiver (BTT009 / U3442) User Guide For more instructions in English please visit: Eine Anleitung in Deutsch nden Sie unter: Para obtener instrucciones en Español

More information

Kiva Technology User s Manual

Kiva Technology User s Manual 2009 Kiva Technology User s Manual For Support Contact Call Center (816) 235-2000: Monday Friday 7:00 am 7:00 pm ILE Support E-Mail: ILESupport@UMKC.EDU URL: http://www.umkc.edu/is/cts/ilesupport/ctssupporttext.asp

More information

COBRA 18R2 Wired Reprogramming Instructions

COBRA 18R2 Wired Reprogramming Instructions COBRA 18R2 Wired Reprogramming Instructions The purpose of this document is to perform a wired reprogram of an 18R2 using the COBRA wired reprogrammer. Please note that this process requires only a wired

More information

For assistance, contact CASL Tech : casltech@ucd.ie. Usage Requirements 1. System capabilities 5 Instructions for Use.. 6

For assistance, contact CASL Tech : casltech@ucd.ie. Usage Requirements 1. System capabilities 5 Instructions for Use.. 6 CASL Video Conference Guide For assistance, contact CASL Tech : casltech@ucd.ie Table of Contents Usage Requirements 1 - Hardware Requirements 2 - Physical connectivity of the Polycom HDX 7000 unit 3 -

More information

Gotcha! Catch every moment. Find thousands more great ideas online

Gotcha! Catch every moment. Find thousands more great ideas online Find thousands more great ideas online Gotcha! Catch every moment 909434 Merrimack, New Hampshire USA 03054 800-846-3000 Brookstone.com HD Video Pen MAKES CAPTURING EVERYDAY MOMENTS EASY AND FUN Merrimack,

More information

Installing/Uninstalling Logitech desktop for Bluetooth on my computer

Installing/Uninstalling Logitech desktop for Bluetooth on my computer Installing/Uninstalling Logitech desktop for Bluetooth on my computer 2005 Logitech, Inc. Contents Introduction 3 Before you start 3 I have a computer without Bluetooth. What should I do? 4 I have or I

More information

Breathe. Relax. Here Are the Most Commonly Asked Questions and Concerns About Setting Up and Programming the SurroundBar 3000.

Breathe. Relax. Here Are the Most Commonly Asked Questions and Concerns About Setting Up and Programming the SurroundBar 3000. Breathe. Relax. Here Are the Most Commonly Asked Questions and Concerns About Setting Up and Programming the SurroundBar 3000. Our Customer Service Department has compiled the most commonly asked questions

More information

Getting Started: Creating the Backdrop

Getting Started: Creating the Backdrop Adding ipad Animations to Green Screen Videos: Step 1 Getting Started: Creating the Backdrop 1. To start a new project: b. Select the + symbol on the top right of the screen. 2. To add a static background

More information

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign Mbox Basics Guide Version 6.7 for LE Systems on Windows XP or Mac OS X Digidesign 2001 Junipero Serra Boulevard Daly City, CA 94014-3886 USA tel: 650 731 6300 fax: 650 731 6399 Technical Support (USA)

More information

How can I use the internet to make free calls?

How can I use the internet to make free calls? Keeping in touch 4.3 Making calls on Skype How can I use the internet to make free calls? Skype is a free service that enables anyone to make free voice or video calls between computers regardless of location.

More information

Welcome to the Adobe Connect Basic Troubleshooting Techniques training class.

Welcome to the Adobe Connect Basic Troubleshooting Techniques training class. Welcome to the Adobe Connect Basic Troubleshooting Techniques training class. 1 In this training session we will discuss: 1) Troubleshooting connections issues (Flash, Plug-in, Firewall) 2) Troubleshooting

More information

Digital Video Recorder

Digital Video Recorder EN Digital Video Recorder Hardware Quick Start Guide Welcome! Lets get started. QH16_42000914E Swann 2014 1 1 Getting to know your DVR Congratulations on your purchase of Swann s latest DVR security system!

More information

The main imovie window is divided into six major parts.

The main imovie window is divided into six major parts. The main imovie window is divided into six major parts. 1. Project Drag clips to the project area to create a timeline 2. Preview Window Displays a preview of your video 3. Toolbar Contains a variety of

More information

Tutorials Drawing a 555 timer circuit

Tutorials Drawing a 555 timer circuit Step 1 of 10: Introduction This tutorial shows you how to make an electronic circuit using Livewire and PCB Wizard 3. You should follow this tutorial to learn the basic skills you will need to use Livewire

More information

DCT-16 USB HD Audio Converter

DCT-16 USB HD Audio Converter DCT-16 USB HD Audio Converter Operation Manual DISCLAIMERS The information in this manual has been carefully checked and is believed to be accurate. Cypress Technology assumes no responsibility for any

More information

User Manual. NETGEAR, Inc. 350 East Plumeria Drive San Jose, CA 95134, USA. December 2014 202-11380-01

User Manual. NETGEAR, Inc. 350 East Plumeria Drive San Jose, CA 95134, USA. December 2014 202-11380-01 User Manual December 2014 202-11380-01 NETGEAR, Inc. 350 East Plumeria Drive San Jose, CA 95134, USA Support For product updates and web support, visit http://support.arlo.com. Trademarks NETGEAR, Inc.

More information

Determining Your MAC Address in Windows XP

Determining Your MAC Address in Windows XP Determining Your MAC Address in Windows XP 1. Click Start then choose Run. 2. Type cmd into the Open: field and press the Enter key. 3. Type ipconfig /all at the prompt and press the Enter key. (Note:

More information

ImagineWorldClient Client Management Software. User s Manual. (Revision-2)

ImagineWorldClient Client Management Software. User s Manual. (Revision-2) ImagineWorldClient Client Management Software User s Manual (Revision-2) (888) 379-2666 US Toll Free (905) 336-9665 Phone (905) 336-9662 Fax www.videotransmitters.com 1 Contents 1. CMS SOFTWARE FEATURES...4

More information

Introduction Configuring Your HP Mouse Batteries Replacing the Batteries Mouse Sensor Technology Navigating the HP Mouse Control Center

Introduction Configuring Your HP Mouse Batteries Replacing the Batteries Mouse Sensor Technology Navigating the HP Mouse Control Center Introduction Congratulations on your purchase of an HP mouse. This mouse is the latest in a wide range of computer peripherals manufactured by HP. It is designed to provide you with the highest level of

More information

Quick Installation Guide

Quick Installation Guide V2.01 Model: FI9821W Quick Installation Guide Indoor HD Pan/Tilt Wireless IP Camera Black White For Windows OS ------- Page 1 For MAC OS ------- Page 16 ShenZhen Foscam Intelligent Technology Co., Ltd

More information

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 1 Introducing Hardware

A+ Guide to Managing and Maintaining Your PC, 7e. Chapter 1 Introducing Hardware A+ Guide to Managing and Maintaining Your PC, 7e Chapter 1 Introducing Hardware Objectives Learn that a computer requires both hardware and software to work Learn about the many different hardware components

More information

Call Recorder Oygo Manual. Version 1.001.11

Call Recorder Oygo Manual. Version 1.001.11 Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8

More information

Video Baby Monitor System. User Guide

Video Baby Monitor System. User Guide Video Baby Monitor System User Guide What s inside Welcome!... 2 Getting started... 3 Tour of the system... 7 Everyday use...13 Cameras... 14 Motion/Alerts... 18 Recording... 21 Playing Back Pictures and

More information

HDCVI Series DVR Quick Start Guide

HDCVI Series DVR Quick Start Guide HDCVI Series DVR Quick Start Guide Version 1.1.0 Welcome Thank you for purchasing our HDCVI DVR! This quick start guide will help you become familiar with our HDCVI DVR in a very short time. Before installation

More information

Scripting Language Reference. SimpleBGC 32bit

Scripting Language Reference. SimpleBGC 32bit Scripting Language Reference SimpleBGC 32bit Firmware ver.: 2.5x Updated: 05.08.2015 Overview Scripting language is intended to control a gimbal by user-written program. This program is uploaded to controller

More information

What s in the Box? Welcome. The GymAware Kit. Congratulations on your purchase of a GymAware PowerTool POWERTOOL CHARGER.

What s in the Box? Welcome. The GymAware Kit. Congratulations on your purchase of a GymAware PowerTool POWERTOOL CHARGER. Quick Start Guide What s in the Box? 1 The GymAware Kit Welcome Congratulations on your purchase of a GymAware PowerTool You have now joined the community of GymAware users who are all benefitting from

More information

ezsystem elab16m Project 1F: Alarm System (Full Project description)

ezsystem elab16m Project 1F: Alarm System (Full Project description) ezsystem elab16m Project 1F: Alarm System (Full Project description) ezsystem The aim of ezsystem is to enable Creativity and Innovation at an early age in a Problem Based Learning (PBL) approach. ezsystem

More information

RC8061 Pan and Tilt Camera Installation Guide

RC8061 Pan and Tilt Camera Installation Guide RC8061 Pan and Tilt Camera Installation Guide P/N: 956YM801GJ Document Version: 1.07 Copyright 2011 All Rights Reserved. All trademarks and trade names are the properties of their respective owners. i

More information

Lenovo IdeaPad Yoga11

Lenovo IdeaPad Yoga11 Lenovo IdeaPad Yoga11 User Guide V1.0 Read the safety notices and important tips in the included manuals before using your computer. Notes Before using the product, be sure to read Lenovo Safety and General

More information

Wireless Joey High/Standard Definition Uses Wireless Joey Access Point. Receivers Wireless Joey

Wireless Joey High/Standard Definition Uses Wireless Joey Access Point. Receivers Wireless Joey High/Standard Definition Uses Access Point Receivers 01 Installation Rules Installing a Whole-Home System Installing a Receiver Follow this procedure to install a receiver. To ensure a proper installation,

More information

DSB-100 Portable Premium Bluetooth Speaker Owner s Manual

DSB-100 Portable Premium Bluetooth Speaker Owner s Manual . DSB-100 Portable Premium Bluetooth Speaker Owner s Manual You can print more than one page of a PDF onto a single sheet of paper. 1 Index Preparation Unpacking 3 Overview 4 Sound Quality 4 Design 4 Operation

More information

BlueGate. Your easy to use reference for getting the most out of your product USER GUIDE. Enjoy FREE REGISTRATION

BlueGate. Your easy to use reference for getting the most out of your product USER GUIDE. Enjoy FREE REGISTRATION TM BlueGate Your easy to use reference for getting the most out of your product USER GUIDE Enjoy FREE REGISTRATION Thank you for purchasing the Accessory Power GOgroove BlueGate Bluetooth audio receiver.

More information

Xbox LIVE Vision. english

Xbox LIVE Vision. english Xbox LIVE Vision Thanks for choosing the Xbox LIVE Vision camera. Xbox LIVE Vision adds video to your Xbox 360 system and games, including: Video chat and picture messages. Photo snapshots. Family Settings

More information