Programming the VEX Robot

Size: px
Start display at page:

Download "Programming the VEX Robot"

Transcription

1 Preparing for Programming Setup Before we can begin programming, we have to set up the computer we are using and the robot/controller. We should already have: Windows (XP or later) system with easy-c installed VEX Robot and joystick A to A (male to male) USB connection cable Loading Drivers We need to load the PL-2303 controller driver (if not already done). We do this by running the VEX_USB2 software installed as part of the Easy-C install (or available on the Easy-C CD) Upgrading the Firmware Firmware is a code layer between the hardware and the user software. It is often considered part of the hardware in that it is always available (persistent) but it is special software that runs on the hardware to provide an interface between the hardware and the user-developed software. On your computer, this is the BIOS that you see starting before Window. Vendors occasionally provide updates to their firmware; we need to load these updates onto the devices. The process for upgrading the robot: 1) Power off the robot 2) Remove the VEXnet device from the robot 3) Plug the USB cable into the computer 4) Press the config button on the microcontroller. Plug the USB cable to the microcontroller. Wait for 3 green lights to come on, and then release the config button. You should see the Game light flashing quickly and the Robot light slowly blinking. You may see messages on your Windows machine about a new device being installed. 5) Start the IFI VEXnet Firmware Upgrade utility (Start/All Programs/EasyC v4 for Cortext/iFIVEXnet Firmware Upgrade). a. Click the Search button. Assuming everything is set up correctly, the Search button will change and become disabled, and the Download button will be enabled. b. Click the Download button. The firmware upgrade will begin. A progress bar will show the progress of the upgrade. The controller lights should be that VEXnet is blinking red and Robot is blinking green during the upgrade. c. When done, the dialog should indicate that the Download is complete, and that VEXnet is up-to-date and no further action is necessary. Close this dialog, and unplug the USB cable from the robot. 6) Power off the joystick, and remove the VEXnet USB device

2 7) Press the config button on the joystick and insert the USB cable connection. The joystick light should be blinking red while the VEXnet light is green. You may hear the new device sound from your computer. 8) Start the IFI VEXnet Firmware Upgrade Utility a. Click the Search button. Wait until the Download button becomes enabled. b. Click the Download button. Wait for the firmware upgrade to complete. c. Close the utility, and unplug the USB cable from the joystick. Do not forget to put the VEXnet device back in to the joystick! Programming Introduction Easy-C Introduction Easy-C is a code generator in that we use it to generate C code. Other tools allow us to create C code directly; but it is easiest to use Easy-C as intended; as a way to generate code. Programmers do not need to know C to use it; however, being familiar with C will help, since the end result is C code. Easy-C uses a flowchart approach to creating code. Objects (either programming constructs or robot items) are dragged into the appropriate place. From Easy-C to the Robot The process by which we get our code to the robot is: 1) Turn off the robot and remove the VEXnet device 2) Plug the USB connector into the PC and the robot 3) Using Easy-C, write your program 4) Using Easy-C, get your program onto the robot by using the menu options Build and Download and then Build and Download. This will do the following: a. Easy-C will generate C code b. The C code will be compiled to object code c. A linker will combine your object code and libraries to create a load module d. The load module is then transferred via the USB cable to the robot 5) Remove the USB cable from the robot 6) Turn on the robot and it will run your code Source Control When you are entering code, you will want to periodically save the project to disk (in case the power goes out, there is a connection issue, etc.). However, when you save the project, you will be overwriting the existing one. You may want to develop a naming convention for your projects that allow for incremental changes in versions ; for example, you might decide to just add 1 to a number at the end of the project every time you make a substantial change (what does that mean? Big enough that you might want to be able to

3 go back to the previous version). So the first save would be project001 ; the second, project002, etc. You might want to use dates, or even incorporate which robot (if you have more than one) or which team (if you have more than one) into the name; like Team X Robot A Score Ten Points Version 5. Project Types EasyC allows for the creation of two kinds of projects: StandAlone and Competition. The difference between the two is that the Competition projects have a shell that allows the game board to start autonomous mode and the stop it. We will not go over competition projects because it would be difficult to test them out; however, the programming for a StandAlone project is identical (in terms of what you write) as a Competition project. StandAlone projects have two types: Joystick or Autonomous. If you select to create an Autonomous project, the VEXnet interface will not work when your code is running. This is very helpful in the testing process because you can run the code without anything plugged in to the USB port. However, if you want to be able to interact with the joystick, you need to create that type of project. Reloading the Default Code If you download code to the robot and it end up putting the robot in a bad state, you have to load a program to get it back to a good state. You can (and normally would) do that by fixing the problem with your code and then reloading it. However, if you want to get back to a know state, you can also load a default program provided in easyc. You do this by selecting Download Default Code from the Build and Download menu. Note: this is not a great option if you have changed your input/output ports or motor numbers). Traversing a Square In this example, we want to create a robot that will trace a square. This will be an autonomous program. This is an example of a procedural program in that what you are writing is an exact representation of the steps to take. We should not try to just write the program in full right away. Instead, we should try to build up our program as we go. The process we might use: 1. Think about what we want the program to do and write a simple recipe for it (just in words). For example: a. Go forward for 2 seconds. b. Turn right 90 degrees. c. Go forward for 2 seconds. d. Turn right 90 degrees. e. Go forward for 2 seconds. f. Turn right 90 degrees. g. Go forward for 2 seconds.

4 h. Turn right 90 degrees. i. Stop. 2. Make sure that last step is there! 3. Create a program that will turn on both motors so we go forward for 2 seconds and stop. Download this program to the robot and test it out. Do not bother going on until this works. 4. Add a step that waits a little bit before starting so that we can get our hand out of the way before the robot starts moving. 5. How do we turn right 90 degrees? 6. We could write our complete program now; however, if we look at our code (often called pseudo-code) we see that steps a and b actually just repeat four times. So we can do this in a loop. Improvements like this are called stepwise refinement The code that is generated by easyc is shown below, and is available via the File/Print Code option. #include "Main.h" void main ( void ) { int go_and_turn; // This program should make the robot go in a square Wait ( 3000 ) ; // give me some time to put the robot down for ( go_and_turn = 0 ; go_and_turn < 4 ; go_and_turn ++ ) { SetMotor ( 2, MOTOR_SPEED ) ; // go forward SetMotor ( 3, -(MOTOR_SPEED) ) ; Wait ( GO_FORWARD_MILLISECONDS ) ; SetMotor ( 3, MOTOR_SPEED ) ; Wait ( TURN_MILLISECONDS ) ; SetMotor ( 3, -(MOTOR_SPEED) ) ; Wait ( GO_FORWARD_MILLISECONDS ) ; } SetMotor ( 2, 0 ) ; // stop SetMotor ( 3, 0 ) ; } The variables can be shown by selecting File/Print Constants & Variables: Constants and Variables for project: MakeSquare Date: 06/24/2010 Time: 10: Constants: #define GO_FORWARD_MILLISECONDS 1000 #define TURN_MILLISECONDS 500 #define MOTOR_SPEED Global Variables: main Function: int go_and_turn ; You may also print the flowchart by using the File/Select & Print Flowchart:

5

6 Bumper Bounce Bumper Switches A bumper switch is a simple digital switch with two states: pressed and not pressed. We can test the state of the switch with the GetDigitalInput () function. Installing the Bumper Switch Install the bumper switch in the front of the robot. For the example here, it is DI7 but you can use whatever digital input port you want. Testing that the Bumper Switch Works easyc provides a simple way to test the inputs and outputs of your robot. With the USB cable attached, after downloading a program, run Tools/On-line Window. The resulting dialog will allow you to monitor your robot. Click the Enable button to start. Then, press your bumper switch and make sure that the digital input that you expect changes state when you press it. Sample Program The sample program we want to write will cause the robot to go straight ahead until it bumps into something. It will then back up a bit and turn to the right a bit and then keep going in the new direction. We want it to be that we only do this 5 times. Interacting with Sensors When we write a program that is event driven (meaning that it reacts to external events), we want to normally test for that event periodically. We do this by putting all of our code in a loop so we are effectively saying see if the bumper was hit. If so, do something. Now, start over..

7

8 Limiting Motion Limit Switches You should already have two limit switches on your robot. These are digital inputs that register as closed (pressed) or open (not pressed). Sample Program We want to use the limit switches to cause the motor to stop when either limit switch is pressed, effectively preventing the motor from going too far in either direction. This would be a very difficult and long program to write, with turning motors on and off, checking the limit switch status, etc. Fortunately, a function is built-in to easyc to do all this for us. JoystickDigitalToMotorAndLimit Under the Joystick function blocks is one named Joystick Digital to Motor & Limit. Using this block will do all the work we want done, but we need to fill in a lot of information. The Program #include "Main.h" void main ( void ) { while ( 1 ) { JoystickDigitalToMotorAndLimit ( 1, 5, 1, 127, 1, 2, -127, 2, 2 ) ; } } Examples easyc comes with a large number of examples, all named fairly well (in that the name of the file often describes the features used). Use them!

EasyC. Programming Tips

EasyC. Programming Tips EasyC Programming Tips PART 1: EASYC PROGRAMMING ENVIRONMENT The EasyC package is an integrated development environment for creating C Programs and loading them to run on the Vex Control System. Its Opening

More information

CONTENTS. What is ROBOTC? Section I: The Basics

CONTENTS. What is ROBOTC? Section I: The Basics BEGINNERS CONTENTS What is ROBOTC? Section I: The Basics Getting started Configuring Motors Write Drive Code Download a Program to the Cortex Write an Autonomous Section II: Using Sensors Sensor Setup

More information

Using the VEX Cortex with ROBOTC

Using the VEX Cortex with ROBOTC Using the VEX Cortex with ROBOTC This document is a guide for downloading and running programs on the VEX Cortex using ROBOTC for Cortex 2.3 BETA. It is broken into four sections: Prerequisites, Downloading

More information

ROBOTC Software Inspection Guide with Additional Help Documentation

ROBOTC Software Inspection Guide with Additional Help Documentation VEX ROBOTICS COMPETITION ROBOTC Software Inspection Guide with Additional Help Documentation VEX Cortex Software Inspection Steps: 1. Cortex Firmware Inspection using ROBOTC 2. Testing Cortex Robots using

More information

Downloading a Sample Program over USB

Downloading a Sample Program over USB Downloading a Sample Program over USB This document is a guide for downloading and running programs on the VEX Cortex using the USB A-to-A cable. You will need: 1 VEX Cortex Microcontroller with one 7.2V

More information

Testing Robots Using the VEXnet Upgrade

Testing Robots Using the VEXnet Upgrade Testing Robots Using the VEXnet Upgrade This document is an inspection guide for VEX v1.5 microcontroller-based robots. Use this document to test if a robot using the VEXnet Upgrade is competition ready.

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

Installing the Gerber P2C Plotter USB Driver

Installing the Gerber P2C Plotter USB Driver Installing the Gerber P2C Plotter USB Driver 1 You can install a Gerber P2C plotter using a USB connection and communicate with it using compatible design software. The following procedures describe installing

More information

AIM SOFTWARE AND USB DRIVER INSTALLATION PROCEDURE

AIM SOFTWARE AND USB DRIVER INSTALLATION PROCEDURE AIM SOFTWARE AND USB DRIVER INSTALLATION PROCEDURE CONTENTS AIM software and USB Driver installation Chapter 1 Installing AIM software and AIM USB driver... 2 Chapter 2 Installation under Microsoft Windows

More information

PCLinq2 Hi-Speed USB Bridge-Network Cable. Quick Network Setup Guide

PCLinq2 Hi-Speed USB Bridge-Network Cable. Quick Network Setup Guide PCLinq2 Hi-Speed USB Bridge-Network Cable Congratulations! Quick Network Setup Guide For Windows 98/ME/2000/XP Congratulations for installing the PCLinq2 Hi-Speed USB Bridge-Network Cable. This Quick Network

More information

SA-9600 Surface Area Software Manual

SA-9600 Surface Area Software Manual SA-9600 Surface Area Software Manual Version 4.0 Introduction The operation and data Presentation of the SA-9600 Surface Area analyzer is performed using a Microsoft Windows based software package. The

More information

Keri USB-A Connection and Configuration

Keri USB-A Connection and Configuration Step 1 - Connect the KPC-1 cable to the K-USB. NOTE: The form of the USB converter may vary, so the unit you receive may not be identical to the one displayed here. Step 2 Plug the USB Connector of the

More information

Section 5: Connecting the Laser to Your Computer

Section 5: Connecting the Laser to Your Computer Section 5: Connecting the Laser to Your Computer In This Section Connecting the Laser to your Computer USB Port Ethernet Port Connecting the Laser to Your Computer All Epilog systems are designed to be

More information

Lego Robot Tutorials Touch Sensors

Lego Robot Tutorials Touch Sensors Lego Robot Tutorials Touch Sensors Bumper Cars with a Touch Sensor With a touch sensor and some robot programming, you can make your robot search its way around the room. It can back up and turn around

More information

User's Guide DylosLogger Software Version 1.6

User's Guide DylosLogger Software Version 1.6 User's Guide DylosLogger Software Version 1.6 The DylosLogger software allows users of Dylos Air Quality Monitors equipped with PC interface to easily record, download, and graph data. The COM port is

More information

EVA Drivers 6.1 and TWAIN Installation Guide for EVA Classic Digital Sensors

EVA Drivers 6.1 and TWAIN Installation Guide for EVA Classic Digital Sensors 8 Westchester Plaza, Suite 112, Elmsford, NY 10523 (914) 592-6100 Fax (914) 592-6148 www.imageworkscorporation.com EVA Drivers 6.1 and TWAIN Installation Guide for EVA Classic Digital Sensors Note: This

More information

Quick Start Guide. Installing. Setting up the equipment

Quick Start Guide. Installing. Setting up the equipment Quick Start Guide Installing Download the software package from the Pop Up Play website. Right click on the zip file and extract the files Copy the Pop-Up-Play folder to a location of you choice Run the

More information

Frequently Asked Questions

Frequently Asked Questions FAQs Frequently Asked Questions Connecting your Linksys router to the Internet 1 What computer operating systems does my Linksys router support? 1 Why can t I connect my computer or device to my router?

More information

QUICK START GUIDE. SG2 Client - Programming Software SG2 Series Programmable Logic Relay

QUICK START GUIDE. SG2 Client - Programming Software SG2 Series Programmable Logic Relay QUICK START GUIDE SG2 Client - Programming Software SG2 Series Programmable Logic Relay SG2 Client Programming Software T he SG2 Client software is the program editor for the SG2 Series Programmable Logic

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

Shearwater Research Dive Computer Software Manual

Shearwater Research Dive Computer Software Manual Shearwater Research Dive Computer Software Manual Revision 1.3 Table of Contents 1. Basic overview of components 2. O/S IrDA driver installation 2.1 USB IrDA installation for Windows XP Home/Pro editions

More information

Hi-Speed USB Flash Disk User s Manual Guide

Hi-Speed USB Flash Disk User s Manual Guide Hi-Speed USB Flash Disk User s Manual Guide System Requirements Windows 98, ME, 2000, XP, Mac OS 10.1, Linux 2.4 or above AMD or Intel Pentium 133MHz or better based computer USB 1.1, USB 2.0 or higher

More information

ROBOTC Programming Competition Templates

ROBOTC Programming Competition Templates ROBOTC Programming Competition Templates This document is part of a software inspection guide for VEX v0.5 (75 MHz crystal) and VEX v1.5 (VEXnet Upgrade) microcontroller-based robots. Use this document

More information

If this PDF has opened in Full Screen mode, you can quit by pressing Alt and F4, or press escape to view in normal mode. Click here to start.

If this PDF has opened in Full Screen mode, you can quit by pressing Alt and F4, or press escape to view in normal mode. Click here to start. You are reading an interactive PDF. If you are reading it in Adobe s Acrobat reader, you will be able to take advantage of links: where text is blue, you can jump to the next instruction. In addition you

More information

NOTE: PLEASE DO NOT ATTEMPT TO INSTALL THE SOFTWARE BEFORE READING THIS DOCUMENT.

NOTE: PLEASE DO NOT ATTEMPT TO INSTALL THE SOFTWARE BEFORE READING THIS DOCUMENT. INLINE 5 Software INSTALL BULLETIN Page 2: Installing INLINE 5 Page 6: Removing INLINE 5 NOTE: PLEASE DO NOT ATTEMPT TO INSTALL THE SOFTWARE BEFORE READING THIS DOCUMENT. IMPROPER INSTALLATION OR USE CAN

More information

EPIC 950 THERMAL TICKET PRINTER

EPIC 950 THERMAL TICKET PRINTER EPIC 950 THERMAL TICKET PRINTER Software Reference Guide www.transac-tech.com 2 Contacting Information / Serial Plate Info TransAct Technologies Incorporated is the manufacturer of Ithaca brand POS, Banking,

More information

Health Monitoring Demo for ice40 Ultra Wearable Development Platform User Guide. UG103 Version 1.0, September 2015

Health Monitoring Demo for ice40 Ultra Wearable Development Platform User Guide. UG103 Version 1.0, September 2015 ice40 Ultra Wearable Development Platform User Guide UG103 Version 1.0, September 2015 Demo Setup Hardware Requirements ice40 Ultra Wearable Development Platform Android smart phone with Android 4.3 or

More information

Using the Communication Ports on the DG-700 and DG-500 Digital Pressure Gauges

Using the Communication Ports on the DG-700 and DG-500 Digital Pressure Gauges Using the Communication Ports on the DG-700 and DG-500 Digital Pressure Gauges 1. USB and Serial Communication Ports: Newer DG-700 and DG-500 gauges contain both a USB and a DB-9 Serial Communication Port,

More information

BIODEX. ATOMLAB 500/WIPE TEST COUNTER DATA MANAGER SOFTWARE Version 1.10 (and higher). OPERATION MANUAL 086-333

BIODEX. ATOMLAB 500/WIPE TEST COUNTER DATA MANAGER SOFTWARE Version 1.10 (and higher). OPERATION MANUAL 086-333 ATOMLAB 500/WIPE TEST COUNTER DATA MANAGER SOFTWARE Version 1.10 (and higher). OPERATION MANUAL 086-333 BIODEX Biodex Medical Systems, Inc. 20 Ramsey Road, Shirley, New York, 11967-4704, Tel: 800-224-6339

More information

Note that you need to install the driver once on each laptop or desktop PC you use with the LP130.

Note that you need to install the driver once on each laptop or desktop PC you use with the LP130. Windows XP USB Download and Installation When you plug the computer cable into the VESA connector on a computer, Windows XP automatically detects and installs USB drivers for the keyboard and composite

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

Colorfly Tablet Upgrade Guide

Colorfly Tablet Upgrade Guide Colorfly Tablet Upgrade Guide (PhoenixSuit) 1. Downloading the Firmware and Upgrade Tool 1. Visit the official website http://www.colorful.cn/, choose 产 品 > 数 码 类 > 平 板 电 脑, and click the product to be

More information

Driver Installation and Hyperterminal Operation of iload Digital USB Sensors

Driver Installation and Hyperterminal Operation of iload Digital USB Sensors Driver Installation and Hyperterminal Operation of iload Digital USB Sensors Driver Installation Insert the iload Digital USB Driver CD OR the LoadVUE or LoadVUE Lite CD into your computer s drive. If

More information

How do I Check if My Computer is Compatible with Windows 7

How do I Check if My Computer is Compatible with Windows 7 How do I Check if My Computer is Compatible with Windows 7 Enterprise Computing & Service Management 1 Follow this link to download the Windows 7 Upgrade Advisor http://www.microsoft.com/windows/windows-7/get/upgrade-advisor.aspx

More information

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer NXT Generation Robotics Introductory Worksheets School of Computing University of Kent Copyright c 2010 University of Kent NXT Generation Robotics These worksheets are intended to provide an introduction

More information

Table of Contents. Rebit 5 Help

Table of Contents. Rebit 5 Help Rebit 5 Help i Rebit 5 Help Table of Contents Getting Started... 1 Making the First Recovery Point... 1 Don't Forget to Create a Recovery Media... 1 Changing Backup Settings... 1 What Does Rebit 5 Do?...

More information

Congratulations on your purchase of a BPM Microsystems device programmer. Your new device programmer was designe d to provid e years of suppor t for

Congratulations on your purchase of a BPM Microsystems device programmer. Your new device programmer was designe d to provid e years of suppor t for Congratulations on your purchase of a BPM Microsystems device programmer. Your new device programmer was designe d to provid e years of suppor t for thousand s of devices, with the use of optional socket

More information

HOW TO TRANSFER FILES BETWEEN EEN IDL7000 PVR AND USB2 DEVICE

HOW TO TRANSFER FILES BETWEEN EEN IDL7000 PVR AND USB2 DEVICE HOW TO TRANSFER FILES BETWEEN EEN IDL7000 PVR AND USB2 DEVICE CONTENTS CONTENTS...2 FOREWORD...3 TRANSFERRING FILES BETWEEN IDL7000M PVR AND USB2 DEVICE...4 CONNECTING AN EXTERNAL USB2 DEVICE...4 COPYING

More information

Honeywell Internet Connection Module

Honeywell Internet Connection Module Honeywell Internet Connection Module Setup Guide Version 1.0 - Page 1 of 18 - ICM Setup Guide Technical Support Setup - Guide Table of Contents Introduction... 3 Network Setup and Configuration... 4 Setting

More information

[Setup procedure for Windows 95/98/Me]

[Setup procedure for Windows 95/98/Me] [Setup procedure for Windows 95/98/Me] a. One Print Server. b. One external AC power adapter. c. One setup CD. (For Windows 95/98/Me/NT/2000/XP). d. One user s manual (included quick guide). a. Turn off

More information

Movie Cube. User s Guide to Wireless Function

Movie Cube. User s Guide to Wireless Function Movie Cube User s Guide to Wireless Function Table of Contents 1. WLAN USB Adapter Connection...3 2. Wireless Setup...4 2.1 Infrastructure (AP)...5 2.2 Peer to Peer (Ad Hoc)...7 2.3 Settings for PC...8

More information

Dual-boot Windows 10 alongside Windows 8

Dual-boot Windows 10 alongside Windows 8 Most of the people are very much interested to install the newly launched Operating System Windows 10 on their devices. But, it is not recommended to directly use Windows 10 as the primary OS because it

More information

Centran Version 4 Getting Started Guide KABA MAS. Table Of Contents

Centran Version 4 Getting Started Guide KABA MAS. Table Of Contents Page 1 Centran Version 4 Getting Started Guide KABA MAS Kaba Mas Welcome Kaba Mas, part of the world-wide Kaba group, is the world's leading manufacturer and supplier of high security, electronic safe

More information

How to Download Images Using Olympus Auto-Connect USB Cameras and Olympus Master

How to Download Images Using Olympus Auto-Connect USB Cameras and Olympus Master How to Download Images Using Olympus Auto-Connect USB Cameras and Olympus Master Introduction Auto-Connect USB is a feature that allows Olympus digital cameras to emulate a Hard disk drive when connected

More information

October 2011 3726 07897 601 Rev. B Page 1

October 2011 3726 07897 601 Rev. B Page 1 Upgrading Polycom SoundStation2W software to Version 1.607 and CVM to Version 1.85 Installer for Microsoft Windows Vista and Windows 7 (32 and 64 bit) Operating Systems NOTE: Two versions of upgrader are

More information

USB 2.0 3.5 External Hard Disk Drive

USB 2.0 3.5 External Hard Disk Drive USB 2.0 3.5 External Hard Disk Drive System Requirements Notebook or Desktop PC with USB2.0 or USB1.1 port. Windows 98SE/Me/2000, or Windows XP (Make sure the device driver for USB Host controller has

More information

Running the R4 Software on a USB Port

Running the R4 Software on a USB Port Tech Note Running the R4 Software on a USB Port Like a lot of other engine management software programs that have been around for a while, the R4 program is designed to communicate through a 9-pin serial

More information

PN 100-06843L, Revision B, October 2013. Epic 950 TM. Master Programmer User s Guide

PN 100-06843L, Revision B, October 2013. Epic 950 TM. Master Programmer User s Guide PN 100-06843L, Revision B, October 2013 Epic 950 TM Master Programmer User s Guide This page intentionally left blank Change History Rev A Initial release Feb 2007 Rev B Update Oct 2013 100-06843L Rev

More information

USB Flash Drive User s Manual

USB Flash Drive User s Manual USB Flash Drive User s Manual V4.01 Introduction Thank you for your purchasing the USB Drive. This manual will guide you through the usages of the USB Drive and of all management tools coming with it.

More information

istar User Manual for Comsol USB Flash Drive

istar User Manual for Comsol USB Flash Drive istar User Manual for Comsol USB Flash Drive Format Utility Introduction Type of Format Quick: Full: Configure device only: Erase and check blocks at the same time. If there are any Bad blocks, mark them

More information

Sky Broadband upgrading your router software

Sky Broadband upgrading your router software Sky Broadband upgrading your router software Why upgrade to the new software? As with all aspects of the services we provide, we have been working to enhance the performance of the software in your wireless

More information

Midland BT Updater BTUpdater Program Program file (x86) ), Midland

Midland BT Updater BTUpdater Program Program file (x86) ), Midland Midland BT Updater After you downloaded the BT Updater setup application from the web site, double click on it and follow the installation procedure. The BTUpdater application is automatically installed

More information

User Manual. 2 ) PNY Flash drive 2.0 Series Specification Page 3

User Manual. 2 ) PNY Flash drive 2.0 Series Specification Page 3 User Manual Table of Contents 1 ) Introduction Page 2 2 ) PNY Flash drive 2.0 Series Specification Page 3 3 ) Driver Installation (Win 98 / 98 SE) Page 4 4 ) Driver Installation (Win ME / 2000 / XP) Page

More information

iportal2 Mouse Mover Quick Start Guide GBK52984 V1.0

iportal2 Mouse Mover Quick Start Guide GBK52984 V1.0 iportal2 Mouse Mover Quick Start Guide GBK52984 V1.0 Introduction... 3 Pairing iportal2 with a PC or laptop... 3 Pairing iportal2 with an Apple imac (OS X)... 7 Using iportal2 Mouse Mover... 11 Mouse-click

More information

Software Manual LSeries Manager V1.2 Software Manual June 18, 2013. LSeries Manager 1.2. Software Manual

Software Manual LSeries Manager V1.2 Software Manual June 18, 2013. LSeries Manager 1.2. Software Manual LSeries Manager 1.2 Software Manual Website: www.arri.com/service-lighting Page 1 of 14 Table of Contents 1 Download and Installation... 3 2 Start the LSeries Manager... 4 3 Lamphead Overview... 5 4 DMX

More information

HITT101 H-ITT Audience Response System 101

HITT101 H-ITT Audience Response System 101 HITT101 H-ITT Audience Response System 101 Hardware Setup First Time Hardware Setup - WARNING this does take a few minutes Please note that the first time you insert the USB cable from the H-ITT receiver

More information

LandAirSea Tracking Key READ THIS BEFORE USING THE LANDAIRSEA TRACKING KEY

LandAirSea Tracking Key READ THIS BEFORE USING THE LANDAIRSEA TRACKING KEY LandAirSea Tracking Key READ THIS BEFORE USING THE LANDAIRSEA TRACKING KEY 1. KNOW HOW GPS WORKS. The LandAirSea Tracking Key uses GPS to find its location. In order to lock onto the location, the GPS

More information

Animated Lighting Software Overview

Animated Lighting Software Overview Animated Lighting Software Revision 1.0 August 29, 2003 Table of Contents SOFTWARE OVERVIEW 1) Dasher Pro and Animation Director overviews 2) Installing the software 3) Help 4) Configuring the software

More information

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples

Networking. General networking. Networking overview. Common home network configurations. Wired network example. Wireless network examples Networking General networking Networking overview A network is a collection of devices such as computers, printers, Ethernet hubs, wireless access points, and routers connected together for communication

More information

USB PC Adapter V4 Configuration

USB PC Adapter V4 Configuration Programming PC adapter V4 USB PC Adapter V4 Configuration PC adapter with USB cable Flat Ribbon Cable Power Supply Unit Device Driver General The USB PC adapter V4 is used for communication between a PC

More information

GW-7552 PRIFIBUS/MODBUS GATEWAY

GW-7552 PRIFIBUS/MODBUS GATEWAY GW-7552 PRIFIBUS/MODBUS GATEWAY Quick Start User Guide 1. Introduction This manual introduces the GW-7552's basic setting and operating quickly, the user can refer to the user manual in the ICP DAS companion

More information

CANON FAX L360 SOFTWARE MANUAL

CANON FAX L360 SOFTWARE MANUAL CANON FAX L360 SOFTWARE MANUAL Before You Begin the Installation: a Checklist 2 To ensure a smooth and successful installation, take some time before you begin to plan and prepare for the installation

More information

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9

SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 Learning Goals: At the end of this lab, the student should have basic familiarity with the DataMan

More information

Brady IP Printer Installation Instructions

Brady IP Printer Installation Instructions Brady IP Printer Installation Instructions Ensure the following are available before commencing installation: The IP Printer and accessories (Printer, power cable, Product CD including Windows printer

More information

AC612 XUB/XUF/DIN sidekick too

AC612 XUB/XUF/DIN sidekick too AC612 XUB/XUF/DIN sidekick too 512 channel houselight / architectural controller and universal wing Users Manual for Software version 2.05 Including Editor Software AC 612 XU and sidekick too The AC612

More information

Installation Guide Wireless 4-Port USB Sharing Station. GUWIP204 Part No. M1172-a

Installation Guide Wireless 4-Port USB Sharing Station. GUWIP204 Part No. M1172-a Installation Guide Wireless 4-Port USB Sharing Station 1 GUWIP204 Part No. M1172-a 2011 IOGEAR. All Rights Reserved. PKG-M1172-a IOGEAR, the IOGEAR logo, MiniView, VSE are trademarks or registered trademarks

More information

Quick Start Guide Vodafone Mobile Connect USB Stick. Designed for Vodafone

Quick Start Guide Vodafone Mobile Connect USB Stick. Designed for Vodafone Quick Start Guide Vodafone Mobile Connect USB Stick Designed for Vodafone Welcome to the world of mobile communications 1 Welcome 2 Set up your USB Stick 3 Start the software 4 Software overview 5 Connect

More information

An Introduction to MPLAB Integrated Development Environment

An Introduction to MPLAB Integrated Development Environment An Introduction to MPLAB Integrated Development Environment 2004 Microchip Technology Incorporated An introduction to MPLAB Integrated Development Environment Slide 1 This seminar is an introduction to

More information

NSA-220 Series. SOP of firmware ver. 3.12 upgrade

NSA-220 Series. SOP of firmware ver. 3.12 upgrade NSA-220 Series SOP of firmware ver. 3.12 upgrade Content... 3 General purpose... 3 Chapter 2 Troubleshooting... 8 Troubleshooting... 8 1. What should I do if users encounter failure in recovering firmware

More information

CurveMaker v2.1 DYNAFS programmable ignition software

CurveMaker v2.1 DYNAFS programmable ignition software CurveMaker v2.1 DYNAFS programmable ignition software Dynatek 164 S Valencia St. Glendora CA 91741 phone (626)963-1669 fax (626)963-7399 Contents 1) Installation...1 2) Overview...1 3) Programming a Curve...4

More information

EASE Scan Tool Customers. SECTION I - Installation

EASE Scan Tool Customers. SECTION I - Installation Please Install Your EASE Scan Tool DVD Before Installing Any Other Software That Came With Your Package. SECTION I - Installation ATTENTION: Do NOT connect an EASE Vehicle Interface Device to your Computer

More information

SOFTWARE USER GUIDE. Aleratec. Part No. 330113, 330113EU. 1:10 USB 3.0 Copy Cruiser Mini

SOFTWARE USER GUIDE. Aleratec. Part No. 330113, 330113EU. 1:10 USB 3.0 Copy Cruiser Mini SOFTWARE USER GUIDE Aleratec 1:10 USB 3.0 Copy Cruiser Mini Part No. 330113, 330113EU Copyright/Model Identification The content of this manual is for informational purposes only and is subject to change

More information

Diamante WiFi Wireless Communication User Guide. Linksys E1200

Diamante WiFi Wireless Communication User Guide. Linksys E1200 Diamante WiFi Wireless Communication User Guide Linksys E1200 Release: February 2012; August 2011; February 2011 Patent Pending. Copyright 2012, Stenograph, L.L.C. All Rights Reserved. Printed in U.S.A.

More information

E-Blocks Easy Internet Bundle

E-Blocks Easy Internet Bundle Page 1 Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with the course

More information

USB Guide Port Adapter User Manual Model GPUSB

USB Guide Port Adapter User Manual Model GPUSB USB Guide Port Adapter User Manual Model GPUSB Revision 1.2 Copyright 2005-2006, Shoestring Astronomy www.shoestringastronomy.com Page 1 Introduction The Shoestring Astronomy USB Guide Port Adapter is

More information

Yamaha 01V96 Version2 Upgrade Guide

Yamaha 01V96 Version2 Upgrade Guide Yamaha 01V96 Version2 Upgrade Guide This document explains how to upgrade the 01V96 system software to V2.00 or later. Precautions (please be sure to read these precautions) The user assumes full responsibility

More information

Contents. Hardware Configuration... 27 Uninstalling Shortcuts Black...29

Contents. Hardware Configuration... 27 Uninstalling Shortcuts Black...29 Contents Getting Started...1 Check your Computer meets the Minimum Requirements... 1 Ensure your Computer is Running in Normal Sized Fonts... 7 Ensure your Regional Settings are Correct... 9 Reboot your

More information

Manual IB-3620 Series

Manual IB-3620 Series IB-RD3620SU3 1 IB-3620U3 CONTENT 1. Introduction... 3 1.1 General Information... 3 2. Hardware IB-3620 Series... 4 2.1 LED Indication / Button Front Panel... 4 2.2 Rear View... 5 3. HDD Installation...

More information

Mobile Broadband Manager Guide Huawei E8278

Mobile Broadband Manager Guide Huawei E8278 Mobile Broadband Manager Guide Huawei E8278 What s mobile broadband? Mobile broadband means you can surf the internet when you re out and about. 4G mobile broadband is the same but using our glorious 4G

More information

E-Blocks Easy RFID Bundle

E-Blocks Easy RFID Bundle Page 1 Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting with the course

More information

Tutorial How to upgrade firmware on Phison S5 controller MyDigitalSSD

Tutorial How to upgrade firmware on Phison S5 controller MyDigitalSSD Tutorial How to upgrade firmware on Phison S5 controller MyDigitalSSD Version 1.3 This tutorial will walk you through how to create a bootable USB drive and how to apply the newest firmware S5FAM030 to

More information

OSM 2007 MONITORING SOFTWARE

OSM 2007 MONITORING SOFTWARE OSM 2007 MONITORING SOFTWARE Contents Preparation...3 Software Installation...4 Configuring OSM...6 Connecting a Device...16 Connecting to Station Monitoring Software...19 Troubleshooting...23 Installing

More information

TX3 Series TELEPHONE ACCESS SYSTEMS. Configurator Quick Start. Version 2.2 Mircom Copyright 2014 LT-973

TX3 Series TELEPHONE ACCESS SYSTEMS. Configurator Quick Start. Version 2.2 Mircom Copyright 2014 LT-973 TX3 Series TELEPHONE ACCESS SYSTEMS Configurator Quick Start Version 2.2 Mircom Copyright 2014 LT-973 Copyright 2014 Mircom Inc. All rights reserved. Mircom Configurator Software Guide v.2.2 for Windows

More information

Table of Contents. Hardware Installation...7 Push Button Security... 8. Using the Setup Wizard...10. Configuration...11 Main... 12 Security...

Table of Contents. Hardware Installation...7 Push Button Security... 8. Using the Setup Wizard...10. Configuration...11 Main... 12 Security... Table of Contents Table of Contents Product Overview...3 Package Contents...3 System Requirements... 3 Introduction...4 Features... 4 Hardware Overview...5 LEDs... 5 Connection... 6 Hardware Installation...7

More information

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment

Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment Tutorial How to upgrade firmware on Phison S8 controller MyDigitalSSD using a Windows PE environment Version 2.0 This tutorial will walk you through how to create a bootable USB drive to enter into a WINPE

More information

Guide to Installing BBL Crystal MIND on Windows 7

Guide to Installing BBL Crystal MIND on Windows 7 Guide to Installing BBL Crystal MIND on Windows 7 Introduction The BBL Crystal MIND software can not be directly installed on the Microsoft Windows 7 platform, however it can be installed and run via XP

More information

User Manual. Thermo Scientific Orion

User Manual. Thermo Scientific Orion User Manual Thermo Scientific Orion Orion Star Com Software Program 68X637901 Revision A April 2013 Contents Chapter 1... 4 Introduction... 4 Star Com Functions... 5 Chapter 2... 6 Software Installation

More information

CD/DVD Disc Duplicator Controller

CD/DVD Disc Duplicator Controller CD/DVD Disc Duplicator Controller USERS MANUAL Introduction Features Model & Specification Control Panel Menu Overview Operation Guide 1. Copy 2. Test 3. Copy & Verify 4. Copy & compare 5. Verify 6. Compare

More information

System update procedure for Kurio 7 (For build number above 110)

System update procedure for Kurio 7 (For build number above 110) System update procedure for Kurio 7 (For build number above 110) IMPORTANT NOTE: Before starting the procedure, please check your current Android build number, that can be found as follows: exit the Kurio

More information

Getting to Know Your Mobile Internet Key

Getting to Know Your Mobile Internet Key Thank you for choosing the Huawei E3276 4G LTE Mobile Internet Key. With your Mobile Internet Key, you can enjoy a full high speed Internet experience on the go. This guide shows you how to set-up and

More information

USB VoIP Dialpad Quick Start Guide

USB VoIP Dialpad Quick Start Guide USB VoIP Dialpad Quick Start Guide Thank you for purchasing the USB VoIP Dialpad. This guide will show you how to quickly connect your new purchase and make free calls over the internet with ease. TABLE

More information

ACCESS CONTROL SYSTEMS USER MANUAL

ACCESS CONTROL SYSTEMS USER MANUAL Ritenergy Pro (Version 3.XX) ACCESS CONTROL SYSTEMS USER MANUAL 1 User Manual Ritenergy International, LLC TABLE OF CONTENTS RITENERGY PRO PROGRAMMING GUIDE 3 System Requirement 3 System Components 3 Basic

More information

Installation and Setup Guides

Installation and Setup Guides Installation and Setup Guides For Bar Code Label Printers with Freezerworks Unlimited 5.2 Freezerworks Basic version 7 PO Box 174 Mountlake Terrace, WA 98043 www.dwdev.com support@dwdev.com 425-673-1974

More information

This document is intended to make you familiar with the ServersCheck Monitoring Appliance

This document is intended to make you familiar with the ServersCheck Monitoring Appliance ServersCheck Monitoring Appliance Quick Overview This document is intended to make you familiar with the ServersCheck Monitoring Appliance Although it is possible, we highly recommend not to install other

More information

DIRECT INTERNET 3. Install Guide for the Windows XP Operating System

DIRECT INTERNET 3. Install Guide for the Windows XP Operating System DIRECT INTERNET 3 Install Guide for the Windows XP Operating System Iridium Communications Inc. Rev. 1; October 15, 2010 Overview Iridium s Direct Internet Data Service allows customers to connect directly

More information

Compressor Supreme Force Feedback User Manual

Compressor Supreme Force Feedback User Manual 1. Setting up Compressor Supreme 1. Connect the gear shifter to the back panel of the steering wheel column. 2. Connect the foot pedals to the back panel of the steering wheel column. 3. Connect the A.C.

More information

DIRECT INTERNET 3. Install Guide for the Windows 7 Operating System

DIRECT INTERNET 3. Install Guide for the Windows 7 Operating System DIRECT INTERNET 3 Install Guide for the Windows 7 Operating System Iridium Communications Inc. Rev. 1; October 15, 2010 Overview Iridium s Direct Internet Data Service allows customers to connect directly

More information

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive

Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive Reboot the ExtraHop System and Test Hardware with the Rescue USB Flash Drive This guide explains how to create and use a Rescue USB flash drive to reinstall and recover the ExtraHop system. When booting

More information

Installation Guide (No Router)

Installation Guide (No Router) Installation Guide (No Router) This installation guide will show you how to get your voip phone service working. This installation guide should be used if you have a standard DSL or cable modem and no

More information

Taurus - RAID. Dual-Bay Storage Enclosure for 3.5 Serial ATA Hard Drives. User Manual

Taurus - RAID. Dual-Bay Storage Enclosure for 3.5 Serial ATA Hard Drives. User Manual Dual-Bay Storage Enclosure for 3.5 Serial ATA Hard Drives User Manual v1.0 August 23, 2007 EN Table of Contents CHAPTER 1 - INTRODUCTION 1 CHAPTER 3 - SYSTEM SET UP 9 ICON KEY 1 THE TAURUS RAID 1 AVAILABLE

More information