Software User's Manual

Size: px
Start display at page:

Download "Software User's Manual"

Transcription

1 Software User's Manual Mission Science irobots Team 07 Jiashuo Li Project Manager, Life Cycle Planner, Developer Chen Li Requirements Engineer, Software Architect, Developer Farica Mascarenhas Operational Concept Engineer, IV&V, Quality Analyst Hanadi Mardah Tester Sergey Mukhin Prototyper, Developer Yun Shao Feasibility Analyst, Developer

2 Version History Date Autho r Version Changes made Rationale 03/25/15 CL 1.0 Add Introduction and Operational For CCD Procedures 04/08/15 CL 1.1 Add Installation Procedures and Examples According to TRR feedback 04/12/15 CL 1.2 Add more function description According to changes in the system 04/19/15 CL 1.3 Update functions and pictures According to changes in the system 04/29/15 CL 1.4 Add functions According to updates in the system 05/03/15 CL 2.0 Final Version UM_ASBUILT_S15b_T07_V2.0.docx ii Version Date: 06/27/12

3 Table of Contents VERSION HISTORY... II TABLE OF CONTENTS... III TABLE OF FIGURES... IV 1. Introduction... v 1.1 System Overview... v 1.2 System Requirements... v 2. Installation Procedures First-time installation Re-installation De-installation Operational Procedures System Menu Instructions File Build Examples Example 1: LED & Song Example 2: Drive forward until bump UM_ASBUILT_S15b_T07_V2.0.docx iii Version Date: 06/27/12

4 Table of Figures Figure 1 Installation - Extract File... 1 Figure 2 System Menu... 3 Figure 3 Showing Description... 4 Figure 4 Reorder... 5 Figure 5 Source Code... 6 Figure 6 Selected Instruction and Clipboard... 7 Figure 7 Move... 8 Figure 8 Rotate... 9 Figure 9 Drive Figure 10 LED Figure 11 Song Figure 12 If Example Figure 13 Loop Example Figure 14 File Figure 15 Build Figure 16 [Debug] WinAVR Figure 17 [Debug] Emulator Figure 18 WinAVR Configuration Figure 19 Preferences and Emulator Figure 20 Example: LED & Song Figure 21 Example: Drive forward until bump Figure 22 Example: Loop UM_ASBUILT_S15b_T07_V2.0.docx iv Version Date: 06/27/12

5 1. Introduction 1.1 System Overview Mission Science irobots is a drag-and-drop graphical user interface, which allows users to control the behavior of an irobot. The system aims to inspire elementary school kids to learn the logic and control systems and generate higher funds for Mission Science. 1.2 System Requirements Hardware Requirements None Software Requirements Windows 7 or above Other Requirements None UM_ASBUILT_S15b_T07_V2.0.docx v Version Date: 06/27/12

6 2. Installation Procedures 2.1 First-time installation Download the.zip file Download the.zip file from Extract the.zip file Right click on the.zip file and select Extract ALL Figure 1 Installation - Extract File Install WinAVR Download WinAVR from and install as instructed. UM_ASBUILT_S15b_T07_V2.0.docx 1 Version Date: 06/27/12

7 2.1.4 Run irobotgui.exe 2.2 Re-installation Download the.zip file again and follow the first-time installation 2.3 De-installation Delete the whole folder UM_ASBUILT_S15b_T07_V2.0.docx 2 Version Date: 06/27/12

8 3. Operational Procedures 3.1 System Menu The system contains 3 main sections: Instruction Panel, Program List and Debugging Info. An instruction can be dragged from Instruction Panel to Program List. Instruction can also be added to Program List by clicking Load Example Code on the right-hand side. Debugging info also includes information including source code, selected instruction and clipboard. Figure 2 System Menu UM_ASBUILT_S15b_T07_V2.0.docx 3 Version Date: 06/27/12

9 3.1.1 Instruction Panel In the Instruction Panel, there are 9 different instructions grouped in 4 sections. The Navigation section contains Move, Rotate, and Drive. The LED and Sound section contains Turn on/off the LED and Define a song. The Logic section contains If and Loop. The Other section contains Play a demo and Delay. Each icon represents a specific instruction. If a user cannot tell which instruction the icon stands for, then he/she can pause the mouse pointer over an icon and a description will pop up with the name of the corresponding instruction. Figure 3 Showing Description Program List A Program List shows the current instruction list that the program contains. Each instruction is shown using an icon together with a text description. Below are the functions a user can do inside Program List: Add Instruction An instruction can be added to Program List from Instruction Panel by dragging and dropping. Another way to add an instruction is to double click an icon in Instruction Panel. Change Parameters UM_ASBUILT_S15b_T07_V2.0.docx 4 Version Date: 06/27/12

10 When an instruction in the Program List is double clicked, then a new window will pop up so that parameters can be adjusted or new instructions can be added. By default, the parameter window pops up automatically when an instruction is added to instruction panel. This function can be turned off in Build->Preferences and Emulator. Reorder Instructions can also be dragged and dropped inside Program List, as Figure 4 shows. Remove Pressing Delete key on the keyboard will remove the selected instruction. In another way, a use can select an instruction and choose File->Delete. Copy/Cut Select an instruction and choose Edit->Copy or Edit->Cut. An alternative way is to press Ctrl + C or Ctrl + X. Paste Copy/Cut an instruction (A) first, then choose Edit->Paste or press Ctrl + V. If an instruction (B) is selected, A will be pasted just before B. Otherwise, instruction A will be pasted to the end of the program. Figure 4 Reorder UM_ASBUILT_S15b_T07_V2.0.docx 5 Version Date: 06/27/12

11 3.1.3 Debugging Info Source code When an instruction is added to or updated in the Program List, the corresponding source code will be updated automatically. Source code can also be updated by clicking Refresh Source. Source code can be modified inside the textbox. By loading into graph, Program List will be updated according to the changes. However, this is not a recommended operation since it might be dangerous if the code is not written properly. Figure 5 Source Code Selected Instruction In the lower left corner, there shows the code of the selected instruction. Clipboard If an instruction is copied or cut, then its code will show in the lower right corner. UM_ASBUILT_S15b_T07_V2.0.docx 6 Version Date: 06/27/12

12 Figure 6 Selected Instruction and Clipboard 3.2 Instructions Move For the Move instruction, distance and duration can be changed in the popped up window. A user can drag the icon up and down to reset the value. The exact value is shown under the scroll bar. If distance is positive, then the robot will move forward; otherwise, it will move backward. o Range: -500 ~ 500cm o Default value: 150cm (forward) Duration means how long the robot will move. o Range: 0 ~ 5s o Default value: 3s UM_ASBUILT_S15b_T07_V2.0.docx 7 Version Date: 06/27/12

13 By setting both distance and duration, the velocity will be updated accordingly, since velocity = distance / duration. Figure 7 Move Rotate For the rotation instruction, there is a virtual irobot in the newly opened window. By rotating the virtual robot, a user can specify in which direction and how much the real irobot will rotate. The robot can rotate up to 90 degrees in both left and right directions. UM_ASBUILT_S15b_T07_V2.0.docx 8 Version Date: 06/27/12

14 Figure 8 Rotate Drive The drive instruction controls irobot s drive wheels. Velocity is the average velocity of the drive wheels in millimeters per second (cm/s). o Range: -50cm/s ~ 50cm/s o Default: 10cm/s Radius can also be specified, in millimeters, at which Roomba should turn. The longer radii make Roomba drive straighter; shorter radii make it turn more. o Default: 32767cm (equivalent to moving forward straightly) UM_ASBUILT_S15b_T07_V2.0.docx 9 Version Date: 06/27/12

15 Figure 9 Drive Turn on/off the LED The LED instruction, by its name, controls the LEDs. There are 3 LEDs on the robot: Power LED, Play LED and Advance LED. A user can choose whether to turn on the last two LEDs by checking the box. Color is to control the color of Power LED. Color of Play and Advance LEDs cannot be changed. The color is changed as the color scroll bar is being dragged. Intensity is to change the intensity of Power LED. Intensity of Play and Advance LEDs cannot be changed. Intensity can be set to 0 to turn off the Power LED. UM_ASBUILT_S15b_T07_V2.0.docx 10 Version Date: 06/27/12

16 Figure 10 LED Define a song In the Song window, a user can create a song within 16 notes. The song will play automatically on the robot. New: clear the current contents and create a new song Up: swap the current note with the upper one Down: swap the current note with the lower one Cross: remove the selected note Scroll bar: change the duration of each note UM_ASBUILT_S15b_T07_V2.0.docx 11 Version Date: 06/27/12

17 Figure 11 Song If The if window contains 3 sections: condition, true and false. If only checks the sensor only once. If the condition is true at the moment, the instructions in the True panel are executed. Otherwise, the execution continues in the following branch either in the False panel, or if there is no else branch, then it will do nothing. UM_ASBUILT_S15b_T07_V2.0.docx 12 Version Date: 06/27/12

18 Figure 12 If Example In this example, there is a moment when the robot reads from data. If irobot meets the bump at this specific moment (which is a really small chance since nobody knows the exact time when irobot checks the sensor), then it will move forward 30cm in 3s. Otherwise, the robot will start to play the song Loop Loop is repeating some instructions under certain condition. The irobot will repeat the loop until the condition changes. The loop windows looks a little similar to the if window, both of which has the condition panel. What s different from the if window is that the loop window only has 1 Program List. A more important difference is that loop checks the sensor repeatedly while if only checks once. UM_ASBUILT_S15b_T07_V2.0.docx 13 Version Date: 06/27/12

19 Figure 13 Loop Example In this example, if the robot meets a bump, then it will delay for 100ms, which is equivalent to the situation where irobot checks the bump every 100ms. 3.3 File New: a new program will be created without saving current work UM_ASBUILT_S15b_T07_V2.0.docx 14 Version Date: 06/27/12

20 Save: save the file in igp format for future use or study Open: open an existing file 3.4 Build Figure 14 File Figure 15 Build Load to Microcontroller: all-in-one function, translates the source code, builds the program and loads to Microcontroller UM_ASBUILT_S15b_T07_V2.0.docx 15 Version Date: 06/27/12

21 Run in Emulator: all-in-one function, translates the source code, builds the program and loads to irobot directly without use of Microcontroller. This function skips the step of loading program to Microcontroller, so it is very easy to use and learn and suitable for debugging. [Debug] WinAVR o Translate to Microcontroller C File: translate from high-level program to C code o Show C Code: show the translated file o Build: Build: build the program o Load: load the program to Microcontroller o Clean: clean the program inside Microcontroller which was previously loaded Figure 16 [Debug] WinAVR [Debug] Emulator: this function is similar to the previous one, which just skip the use of Microcontroller o Translate to Emulator C File: translate from high-level program to C code o Build Emulator: Build: build the program o Run Emulator: run the program UM_ASBUILT_S15b_T07_V2.0.docx 16 Version Date: 06/27/12

22 Figure 17 [Debug] Emulator WinAVR Configuration: COM Port needs configuration before program is loaded. The system can detect COM port automatically. However, if multiple devices is connected to the computer, manual configuration is needed. To configure the COM Port, first click the button Device Manager, and then find the item Ports (COM & LPT). Figure 18 WinAVR Configuration Preferences and Emulator o Pop up parameter window for new instruction: if turned on, every time an instruction is dropped in the program list, the parameter window will pop up automatically. o Show C file after translation: if turned on, every time when translation is done, the C file will be shown automatically. This function is mainly for future developers or administrators. o Emulator path: specify the emulator path UM_ASBUILT_S15b_T07_V2.0.docx 17 Version Date: 06/27/12

23 o Emulator COM Port: set the COM port for emulator Figure 19 Preferences and Emulator UM_ASBUILT_S15b_T07_V2.0.docx 18 Version Date: 06/27/12

24 4. Examples 4.1 Example 1: LED & Song Figure 20 Example: LED & Song In this example, there are 4 instructions in total. First, both Play LED and Advance LED are turned on. Second, a specified song is played. Then, after 5000ms, both Play LED and Advance LED are turned off automatically. UM_ASBUILT_S15b_T07_V2.0.docx 19 Version Date: 06/27/12

25 4.2 Example 2: Drive forward until bump Figure 21 Example: Drive forward until bump First, we drive the irobot forward at the speed 300mm/s with a really large radius 32768mm. Then, we go into the bump. The instruction inside the loop is shown below in Figure 21. The loop says the irobot will keep delaying for 100ms when a bump is not met. This means that the irobot will check whether it hits a bump every 100ms. After the bump is met, the robot will move backward 10cm and turn left by 180 degrees. UM_ASBUILT_S15b_T07_V2.0.docx 20 Version Date: 06/27/12

26 Figure 22 Example: Loop UM_ASBUILT_S15b_T07_V2.0.docx 21 Version Date: 06/27/12

Software User's Manual

Software User's Manual Software User's Manual Mission Science irobots Team 07 Jiashuo Li Project Manager, Life Cycle Planner, Developer Chen Li Requirements Engineer, Software Architect, Developer Farica Mascarenhas Operational

More information

Release Description. Mission Science irobot. Team 07

Release Description. Mission Science irobot. Team 07 Release Description Mission Science irobot Team 07 Jiashuo Li Chen Li Farica Mascarenhas Hanadi Mardah Sergey Mukhin Yun Shao Project Manager, Life Cycle Planner, Developer Requirements Engineer, Software

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) Mission Science irobots 12/06/2014 Team 07 Ashwini Ramesha Chen Li Farica Mascarenhas Jiashuo Li Ritika Khurana Siddhesh Rumde Sowmya Sampath Yun Shao

More information

System and Software Architecture Description (SSAD)

System and Software Architecture Description (SSAD) System and Software Architecture Description (SSAD) Mission Science irobots 11/26/2014 Team 07 Ashwini Ramesha Chen Li Farica Mascarenhas Jiashuo Li Ritika Khurana Siddhesh Rumde Sowmya Sampath Yun Shao

More information

Schoolwires Website How to Access and Modify Content of Teacher Pages

Schoolwires Website How to Access and Modify Content of Teacher Pages Schoolwires Website How to Access and Modify Content of Teacher Pages Accessing Teacher Pages 1. To access your WebPages to modify or change content, go to: http://palisadessd.org 2. In the top right navigation

More information

Programming with the NXT using the touch and ultrasonic sensors. To be used with the activity of the How do Human Sensors Work?

Programming with the NXT using the touch and ultrasonic sensors. To be used with the activity of the How do Human Sensors Work? Programming with the NXT using the touch and ultrasonic sensors To be used with the activity of the How do Human Sensors Work? lesson How do you incorporate sensors into your programs? What you know: You

More information

Microsoft PowerPoint 2010 Beginning

Microsoft PowerPoint 2010 Beginning Microsoft PowerPoint 2010 Beginning PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 File Tab... 3 Quick Access Toolbar... 3 The Ribbon... 4 Keyboard Shortcuts...

More information

File Management Tutorial

File Management Tutorial Just a reminder... Files: any individual item on your computer that contains data. E.g. document, photo, spreadsheet, email, PowerPoint, etc. File Management Tutorial Folders: containers for your files

More information

Drawing Tools. Drawing a Rectangle

Drawing Tools. Drawing a Rectangle Chapter Microsoft Word provides extensive DRAWING TOOLS that allow you to enhance the appearance of your documents. You can use these tools to assist in the creation of detailed publications, newsletters,

More information

Right and Left Click. Basic Computer Skills Tutorial

Right and Left Click. Basic Computer Skills Tutorial Right and Left Click To use the mouse, usually you click the left button. However you can also right-click to display a hidden menu related to the object you are in when clicking. This menu can vary depending

More information

Technical Learning. To Get Started. 1. Follow the directions in the Constructopedia to build Robo 1.

Technical Learning. To Get Started. 1. Follow the directions in the Constructopedia to build Robo 1. Technical Learning Divide your team into groups of builders, programmers, and possibly testers. The builders will build 2 of the Constructopedia robots and the programmers will write a program to drive

More information

VI ViewerPlus Copyright 2018 Panasonic System Solutions Company of North America Version Last updated:

VI ViewerPlus Copyright 2018 Panasonic System Solutions Company of North America Version Last updated: VI ViewerPlus Copyright 2018 Version 7.3.0 Last updated: 11.15.2018 Panasonic VI ViewerPlus TABLE OF CONTENTS TABLE OF CONTENTS... 0 OVERVIEW... 1 USER INTERFACE... 1 WORKSPACE... 2 LAYOUTS... 2 Setting

More information

SLAMWARE. RoboStudio. User Manual. Shanghai Slamtec.Co.,Ltd rev.1.1

SLAMWARE. RoboStudio. User Manual. Shanghai Slamtec.Co.,Ltd rev.1.1 www.slamtec.com 2017-11-06 rev.1.1 SLAMWARE RoboStudio User Manual Shanghai Slamtec.Co.,Ltd Contents CONTENTS... 1 INTRODUCTION... 3 USER GUIDE... 4 OFFLINE/ONLINE MODE... 4 CONNECT/DISCONNECT ROBOT...

More information

Premiere Pro Desktop Layout (NeaseTV 2015 Layout)

Premiere Pro Desktop Layout (NeaseTV 2015 Layout) Premiere Pro 2015 1. Contextually Sensitive Windows - Must be on the correct window in order to do some tasks 2. Contextually Sensitive Menus 3. 1 zillion ways to do something. No 2 people will do everything

More information

You ll notice at the bottom of the file menu there is a list of recently opened files. You can click a file name in the list to re-open that file.

You ll notice at the bottom of the file menu there is a list of recently opened files. You can click a file name in the list to re-open that file. Using Microsoft Word A word processor is all about working with large amounts of text, so learning the basics of text editing is essential to being able to make the most of the program. The first thing

More information

Mouse. Mouse Action Location. Image Location

Mouse. Mouse Action Location. Image Location Mouse The Mouse action group is intended for interacting with user interface using mouse (move, click, drag, scroll). All the Mouse actions are automatically recorded when you manipulate your mouse during

More information

Part A: Monitoring the Rotational Sensors of the Motor

Part A: Monitoring the Rotational Sensors of the Motor LEGO MINDSTORMS NXT Lab 1 This lab session is an introduction to the use of motors and rotational sensors for the Lego Mindstorm NXT. The first few parts of this exercise will introduce the use of the

More information

Table of content. User manual BlueprintEasy PDF tagger. version: P a g e

Table of content. User manual BlueprintEasy PDF tagger.   version: P a g e Table of content TABLE OF CONTENT... 1 INTRODUCTION... 2 INSTALLATION... 2 MAKE PRODUCT LIST / PICTURES... 2 CHOOSE A DIRECTORY...2 MAKE PICTURES / ICONS / SYMBOLS...3 EXCEL SHEET / PRODUCT LIST...3 WEB

More information

Development Authority of the North Country (DANC) Internet Mapping Application Instructions Public Viewer 1. Purpose. 2. Logging-in. 3.

Development Authority of the North Country (DANC) Internet Mapping Application Instructions Public Viewer 1. Purpose. 2. Logging-in. 3. Development Authority of the North Country (DANC) Internet Mapping Application Instructions Public Viewer 1. Purpose The purpose of this document is to outline basic functionality of the DANC Internet

More information

NATIONAL SPORT SCHOOL

NATIONAL SPORT SCHOOL NATIONAL SPORT SCHOOL Mark HALF-YEARLY EXAMINATION 2016 FORM 1 ICT TIME: 1h 30min Question 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Max. Mark Mark Global Mark 2 5 4 15 4 6 4 4 14 6 5 10 4 3 8 6 100 DO NOT

More information

Microsoft PowerPoint 2013 Beginning

Microsoft PowerPoint 2013 Beginning Microsoft PowerPoint 2013 Beginning PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 File Tab... 3 Quick Access Toolbar... 3 The Ribbon... 4 Keyboard Shortcuts...

More information

Robotics Study Material School Level 1 Semester 2

Robotics Study Material School Level 1 Semester 2 Robotics Study Material School Level 1 Semester 2 Contents UNIT-3... 4 NXT-PROGRAMMING... 4 CHAPTER-1... 5 NXT- PROGRAMMING... 5 CHAPTER-2... 6 NXT-BRICK PROGRAMMING... 6 A. Multiple choice questions:...

More information

Media Control Station 3

Media Control Station 3 Media Control Station 3 USB/RS232 For Windows98/2000/XP User's Manual Second Edition 2000-2002 JLCooper Electronics 142 Arena Street El Segundo, CA 90245 U.S.A. MCS, Media Control Station, MCS 3 and Media

More information

Velocity: A Bat s Eye View of Velocity

Velocity: A Bat s Eye View of Velocity Name School Date Purpose Velocity: A Bat s Eye View of Velocity There are a number of ways of representing motion that we ll find useful. Graphing position, velocity, and acceleration vs. time is often

More information

VSPlayer Software User Manual

VSPlayer Software User Manual VSPlayer Software User Manual UD.6L0202D1505A01 Thank you for purchasing our product. This manual applies to VSPlayer software, please read it carefully for the better use of this software. This manual

More information

DW DIGs Model Windows Tricks

DW DIGs Model Windows Tricks Window Menu 1. Window > Cascade Windows All open windows that aren't minimized at the bottom of the screen will be offset diagonally so you can see the title bar of each. 2. Window > Tile Windows All open

More information

Top Producer 7i Tips & Tricks Volume 1

Top Producer 7i Tips & Tricks Volume 1 Top Producer 7i Tips & Tricks Volume 1 TOP PRODUCER Systems Inc. 1 Table of Contents 1 Using Quick Action Commands...3 1.1 Use the Commands Instead of the Menu s...3 2 Scrolling Within a Long List...5

More information

Web Ad Image Portal. User Manual

Web Ad Image Portal. User Manual Web Ad Image Portal User Manual Rev 06232008 Web Ad Image Portal User Manual Rev 06232008 Login and Home Page Access the portal via http://images.autobase.net Login with your dealer.autobase.net account

More information

MICROSOFT POWERPOINT 2016 Quick Reference Guide

MICROSOFT POWERPOINT 2016 Quick Reference Guide MICROSOFT POWERPOINT 2016 Quick Reference Guide PowerPoint What is it? What s new in PowerPoint 2016? PowerPoint is a computer program that allows you to create, edit and produce slide show presentations.

More information

Windows XP. A Quick Tour of Windows XP Features

Windows XP. A Quick Tour of Windows XP Features Windows XP A Quick Tour of Windows XP Features Windows XP Windows XP is an operating system, which comes in several versions: Home, Media, Professional. The Windows XP computer uses a graphics-based operating

More information

Scenario Step-by-Step Guide

Scenario Step-by-Step Guide CONTENTS Overview... 2 Key Takeaways... 2 Scenario Toolbar... 3 Toolbar Options... 3 Creating a new Scenario... 4 Opening an existing Scenario... 6 Modeling scenario using shapes... 9 Linking between mockup

More information

Minix Neo Z64A basics

Minix Neo Z64A basics Minix Neo Z64A basics Contents Setting Up Your Neo Z64a... 2 Remote Essentials... 3 Using Your Minix Neo Z64A... 5 Setting up Wireless... 5 Changing Display Settings... 6 Setting the Time Zone... 8 Using

More information

Contents escope Software Guide Execute Software Calibration and Measurement escope Software Interface Instructions Main Interface

Contents escope Software Guide Execute Software Calibration and Measurement escope Software Interface Instructions Main Interface Contents escope Software Guide Execute Software...3 Capture Photo...3 Capture Video...3 Time-lapsed Picture / Video...4 Picture / Video Save as...4 Calibration and Measurement Calibration...5 Measurement...7

More information

Select the options to assess for this credit. Only one option can be selected if the rating system is set to Healthcare.

Select the options to assess for this credit. Only one option can be selected if the rating system is set to Healthcare. Surrounding Density and Diverse Uses LT Surrounding Density and Diverse Uses Select options to assess: Select the options to assess for this credit. Only one option can be selected if the rating system

More information

Turns your Wallbox into a Complete Jukebox

Turns your Wallbox into a Complete Jukebox JukeMP3 Wallbox Controller Turns your Wallbox into a Complete Jukebox JukeMP3 Features: 1. The JukeMP3 kit includes everything you need to turn your wallbox into a complete jukebox, except speakers and

More information

Frame Editor 2 Manual

Frame Editor 2 Manual Chaos Culture Frame Editor 2 Manual Setup... 2 Editing clips... 2 Editing basics... 4 Managing colors... 6 Using effects... 7 Descriptions of the effects... 9 Fixed velocity... 9 Random velocity... 9 Rotate...

More information

Installing VPN client by Jupiter Networks:

Installing VPN client by Jupiter Networks: Installing VPN client by Jupiter Networks: 1. Open Firefox. The icon is likely on your desktop. If you are using internet explorer, much of the steps will be the same, but the way that Internet Explorer

More information

RoboAGVSim AGV Simulator User Manual

RoboAGVSim AGV Simulator User Manual RoboAGVSim AGV Simulator User Manual V1.0, December 1, 2017 Visit www.roboteq.com to download the latest revision of this manual Copyright 2017 Roboteq, Inc Copyright Roboteq Inc. 2017. All Rights Reserved.

More information

EV3 Programming Workshop for FLL Coaches

EV3 Programming Workshop for FLL Coaches EV3 Programming Workshop for FLL Coaches Tony Ayad 2017 Outline This workshop is intended for FLL coaches who are interested in learning about Mindstorms EV3 programming language. Programming EV3 Controller

More information

Creating a Presentation

Creating a Presentation Creating a Presentation 1.1 Double Click the PowerPoint icon on the desktop Or Click on the start menu Type PowerPoint into the search box Click on the PowerPoint icon 1.2 Click Blank Presentation 1 How

More information

Hands-on Lab 1: LabVIEW NI-DAQ Basics 1

Hands-on Lab 1: LabVIEW NI-DAQ Basics 1 Hands-on Lab 1: LabVIEW NI-DAQ Basics 1 This lab reviews LabVIEW concepts needed towards the course s final objective of position regulation using computer-controlled state feedback. Specific LabVIEW concepts

More information

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

More information

How to set up an Amazon Work Profile for Windows 8

How to set up an Amazon Work Profile for Windows 8 How to set up an Amazon Work Profile for Windows 8 Setting up a new profile for Windows 8 requires you to navigate some screens that may lead you to create the wrong type of account. By following this

More information

Homework #1: SSH. Step 1: From the start button (lower left hand corner) type Secure. Then click on the Secure Shell File Transfer Client.

Homework #1: SSH. Step 1: From the start button (lower left hand corner) type Secure. Then click on the Secure Shell File Transfer Client. Homework #1: SSH Due WEEK 3 at the BEGINNING of lab CSE 3, Spring 2018 A. The program Some students had trouble using this program in the past. It isn t too bad if you just take a few minutes to read and

More information

SOFTWARE KR C... User Programming. KUKA System Software (KSS) Release 4.1. Issued: 14 Jul 2003 Version: 03. ProgAnwenderR en.

SOFTWARE KR C... User Programming. KUKA System Software (KSS) Release 4.1. Issued: 14 Jul 2003 Version: 03. ProgAnwenderR en. SOFTWARE KR C... User Programming KUKA System Software (KSS) Release 4.1 Issued: 14 Jul 2003 Version: 03 1of 60 e Copyright KUKA Roboter GmbH This documentation or excerpts therefrom may not be reproduced

More information

Step 4 Part B - How to Edit Video on YouTube with Enhancements. You click on Enhancements at the top to add other features and next is what happens.

Step 4 Part B - How to Edit Video on YouTube with Enhancements. You click on Enhancements at the top to add other features and next is what happens. Step 4 Part B - How to Edit Video on YouTube with Enhancements You click on Enhancements at the top to add other features and next is what happens. You see Enhancements highlighted and it starts playing

More information

SL-6397 DECUS GAMING MOUSE

SL-6397 DECUS GAMING MOUSE Profile selection and configuration, lighting effects You can switch between 5 different profiles at the top of the left-hand column. A default profile is configured when the driver is installed for the

More information

Vividia HM-250 HDMI/LCD/USB/TV Portable. Digital Measurement Microscope

Vividia HM-250 HDMI/LCD/USB/TV Portable. Digital Measurement Microscope Vividia HM-250 HDMI/LCD/USB/TV Portable Digital Measurement Microscope Table of Contents 1. Precaution. 3 2. Preparation..5 Package Contents.. 6 Part Names & Functions..6 3. Specifications.... 7 4. Use

More information

PENMOUNT DEVICE DRIVER USERS GUIDE FOR MICROSOFT WINDOWS

PENMOUNT DEVICE DRIVER USERS GUIDE FOR MICROSOFT WINDOWS PENMOUNT DEVICE DRIVER USERS GUIDE FOR MICROSOFT WINDOWS Version 2.4 16/Sep/ 15 Preface Disclaimer The information in this document is subject to change without notice. The manufacturer makes no representations

More information

FM 4/100 USB Software for OSX

FM 4/100 USB Software for OSX FM 4/100 USB Software for OSX JLCooper makes no warranties, express or implied, regarding this software s fitness for a particular purpose, and in no event shall JLCooper Electronics be liable for incidental

More information

Microsoft PowerPoint 2016 Basics Unit 9 Final Review - Student Notes Directions: Fill in the blanks.

Microsoft PowerPoint 2016 Basics Unit 9 Final Review - Student Notes Directions: Fill in the blanks. Directions: Fill in the blanks. 1. PowerPoint Window Layout 2. File Tab When clicked, opens - automatically opens the Info option by default Holds the following options: - Info - New - Open - Save - Save

More information

NXT Programming for Beginners Project 9: Automatic Sensor Calibration

NXT Programming for Beginners Project 9: Automatic Sensor Calibration Copyright 2012 Neil Rosenberg (neil@vectorr.com) Revision: 1.1 Date: 5/28/2012 NXT Programming for Beginners Project 9: Automatic Sensor Calibration More advanced use of data Sometimes you need to save

More information

Menu Symbols. Menu Symbol. Key on Keyboard

Menu Symbols. Menu Symbol. Key on Keyboard Menu Symbols Menu Symbol Key on Keyboard Command/Apple Key (like Control on a PC) Also written as Cmd Option (like Alt on a PC) Shift Control (Control-click = Right-click) Tab Return Enter (on Number Pad)

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

Loops and Switches Pre-Quiz

Loops and Switches Pre-Quiz Loops and Switches Loops and Switches Pre-Quiz 1. What kind of blocks are these? 2. Name two kinds of controls that can be specified to determine how long a loop repeats. 3. Give an example of a program

More information

Introduction to the MODx Manager

Introduction to the MODx Manager Introduction to the MODx Manager To login to your site's Manager: Go to your school s website, then add /manager/ ex. http://alamosa.k12.co.us/school/manager/ Enter your username and password, then click

More information

BASIC MICROSOFT POWERPOINT

BASIC MICROSOFT POWERPOINT BASIC MICROSOFT POWERPOINT PART ONE PHONE: 504-838-1144 IT Training Team Jefferson Parish Library EMAIL: jpltrain@jplibrary.net In this class you will learn to: Launch, close, and interact with Microsoft

More information

1 Introduction to AutoCAD

1 Introduction to AutoCAD 1 Introduction to AutoCAD The term CAD (Computer Aided Design) applies to a wide range of programs that allow th user to created drawings, plans, and designs electronically. AutoCAD is one such program

More information

Microsoft PowerPoint 2007 Beginning

Microsoft PowerPoint 2007 Beginning Microsoft PowerPoint 2007 Beginning Educational Technology Center PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 Microsoft Office Button... 3 Quick Access

More information

COMPUTER DESCRIPTION...

COMPUTER DESCRIPTION... Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Geocortex HTML 5 Viewer Manual

Geocortex HTML 5 Viewer Manual Geocortex HTML 5 Viewer Manual Searching for a feature Use the Search Feature box in the top right hand corner of the viewer window. You can use this to search numerous data types such as property number,

More information

Say you want a new blank document, just like the one Word shows you when you start the program. No problem here are the steps:

Say you want a new blank document, just like the one Word shows you when you start the program. No problem here are the steps: Creating a New Document When you start Word without opening an existing document, the program gives you an empty one to work in. If you're eager to put words to page, then type away. Sooner or later, though,

More information

Chapter 9 Slide Shows

Chapter 9 Slide Shows Impress Guide Chapter 9 Slide Shows Transitions, animations, and more Copyright This document is Copyright 2007 2011 by its contributors as listed below. You may distribute it and/or modify it under the

More information

MIDIPoet -- User's Manual Eugenio Tisselli

MIDIPoet -- User's Manual Eugenio Tisselli MIDIPoet -- User's Manual 1999-2007 Eugenio Tisselli http://www.motorhueso.net 1 Introduction MIDIPoet is a software tool that allows the manipulation of text and image on a computer in real-time. It has

More information

PowerPoint 2016 Part II

PowerPoint 2016 Part II PowerPoint 2016 Part II Animations In PowerPoint, any object, shape, image, etc. on a slide can be animated. Animations are a good way to add some attention grabbers to a presentation, but they can also

More information

CONNECTION GUIDE FOR THE IROBOT CREATE

CONNECTION GUIDE FOR THE IROBOT CREATE CONNECTION GUIDE FOR THE IROBOT CREATE Pre- Requisites MATLAB 2008 or later needs to be installed on your system. The latest version of MATLAB can be downloaded for free as a Columbia student from the

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

Appendix J: Using Shortcut Keys and Shortcut Menus

Appendix J: Using Shortcut Keys and Shortcut Menus Appendix J: Using Shortcut Keys and Shortcut Menus Introduction This appendix covers shortcuts to many of the menu options, dialog boxes, and commands used in PC-DMIS. Using shortcuts will speed up your

More information

Scoreboards. The two types of scoreboards are: There are two options associated with scoreboards:

Scoreboards. The two types of scoreboards are: There are two options associated with scoreboards: Scoreboards Using Match and Team Scoreboards with the STRONGVON Administration Software 1 Overview The full version of the STRONGVON Administration Software (TSW) provides you with different scoreboards

More information

New Website User Manual

New Website User Manual New Website User Manual General Notes 3 How To Login To Your Website And Access Admin Dashboard 4 Adding / Editing Sliders 5 Home Slider 5 School Slider (Same steps for ALL school pages) - Add a Slide

More information

VISTA OPERATING SYSTEM

VISTA OPERATING SYSTEM VISTA OPERATING SYSTEM 1 WHY VISTA? What is current version of Windows? Most college computers are WinXP why? Vista problems led to few businesses using it 11/09 69% XP, 18% Vista What do you have at home?

More information

Microsoft Office Publisher

Microsoft Office Publisher Microsoft Office 2007- Publisher Opening Microsoft Publisher Using the Start Menu, click on All Programs and navigate to the Microsoft Office folder. Click on Microsoft Office Publisher 2007. Choosing

More information

Promethean ActivInspire

Promethean ActivInspire New Features What s New? The newest version of Promethean software, ActivInspire, can be used only on an Intel based Mac, such as a Macbook. It will not run on an ibook. The flipchart is already set to

More information

Chapter 9 Slide Shows

Chapter 9 Slide Shows Impress Guide Chapter 9 Slide Shows Transitions, animations, and more Copyright This document is Copyright 2007 2012 by its contributors as listed below. You may distribute it and/or modify it under the

More information

How to install aabridge on a Mac

How to install aabridge on a Mac How to install aabridge on a Mac v 0.35 2018-09-06 Page 1 of 8 How to install aabridge on a Mac See aabridge on YouTube - Video 010 - Installing on a Mac The video is above is where you should start. If

More information

Fixed problem with InfoRecall crashing when Export Merged Documents & Print Merged Documents are chosen when files are closed.

Fixed problem with InfoRecall crashing when Export Merged Documents & Print Merged Documents are chosen when files are closed. WHAT S NEW Build 119 Fixed problem with InfoRecall crashing when Export Merged Documents & Print Merged Documents are chosen when files are closed. Build 118 Swap Source Folder: Disabled Menu and Tool

More information

PC Model Railway Control System

PC Model Railway Control System PC Model Railway Control System For the Hornby Elite and NMRA compliant DCC systems Version 1.01 Copyright 2010 by Invicto Systems Limited. All rights reserved. CONTENTS Installing Rail-Master 5 Setting

More information

GETTING STARTED WITH DJCONTROL INSTINCT AND DJUCED UK US

GETTING STARTED WITH DJCONTROL INSTINCT AND DJUCED UK US GETTING STARTED WITH DJCONTROL INSTINCT AND DJUCED INSTALLATION Insert the CD-ROM. Run the installer program. Follow the instructions. 6 1 2 7 3 4 5 1- Channels 1-2 (mix output) balance 2- Volume on channels

More information

Reviewers: Approval Date: REF No:

Reviewers: Approval Date: REF No: Title: Parts of a computer Contributors: Mira Hirani Std: 1 Reviewers: Srinath Perur Submission Date: Approval Date: REF No: Brief Description: Goal: Prerequisites: Duration: Resources: This unit covers

More information

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module.

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module. OS X Welcome to the OS X Basics Learning Module. This module will teach you the basic operations of the OS X operating system, found on the Apple computers in the College of Technology computer labs. The

More information

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

More information

Instructions for Installing FlashUpdate and Downloading Updates for NPRT 2200 Noise Power Ratio Test Set

Instructions for Installing FlashUpdate and Downloading Updates for NPRT 2200 Noise Power Ratio Test Set Instructions for Installing FlashUpdate and Downloading Updates for NPRT 2200 Noise Power Ratio Test Set Updates to the instrument firmware are available from the Applied Instruments website. Requirements

More information

Section 4 Working with Text

Section 4 Working with Text ECDL Section 4 Working with Text Section 4 Working with Text By the end of this section you should be able to: Start and close the WordPad program Recognise common program features Create text-based documents

More information

KAGUYA 3D GIS user s s manual (for Windows)

KAGUYA 3D GIS user s s manual (for Windows) KAGUYA 3D GIS user s s manual (for Windows) KAGUYA 3D GIS KAGUYA 3D GIS was developed based on the NASA World Wind (Java ver.) as the 3D viewer for KAGUYA image contents. This application is written in

More information

CeeNee QCeeNee Android Remote USER MANUAL Version 2.0

CeeNee QCeeNee Android Remote USER MANUAL Version 2.0 CeeNee QCeeNee Android Remote USER MANUAL Version 2.0 2013 Copyright 2013 All rights reserved CeeNee, Inc. Website: www.ceenee.com All rights reserved. No part of this publication may be reproduced, stored

More information

ArcGIS. Desktop. A Selection of Time-Saving Tips and Shortcuts

ArcGIS. Desktop. A Selection of Time-Saving Tips and Shortcuts ArcGIS Desktop A Selection of Time-Saving Tips and Shortcuts Map Navigation Refresh and redraw the display F5 9.1, Suspend the map s drawing F9 9.1, Zoom in and out Roll the mouse wheel backward and forward.

More information

Contents Contents. Chapter 1. Program Installation. Chapter 2. For the start of CMS. Chapter 3. Monitoring. Chapter 4. E-Map Mode

Contents Contents. Chapter 1. Program Installation. Chapter 2. For the start of CMS. Chapter 3. Monitoring. Chapter 4. E-Map Mode CMS User's Manual Contents 0 Contents Chapter 1. Program Installation 1.1 PC specifications 1.2 Program Installation Chapter 2. For the start of CMS 2.1 Site Registration Setup (Network Camera Registration)

More information

LME Software Block Quick Reference 1. Common Palette

LME Software Block Quick Reference 1. Common Palette LME Software Block Quick Reference Common Palette Move Block Use this block to set your robot to go forwards or backwards in a straight line or to turn by following a curve. Define how far your robot will

More information

ADPRO FastTrace 2 USER GUIDE. Provided By:

ADPRO FastTrace 2 USER GUIDE. Provided By: ADPRO FastTrace 2 USER GUIDE Provided By: View Live Video A shortcut to ADPRO FastTrace 2 has been placed on your desktop screen. Double click the icon to launch the application. FastTrace 2 A Login window

More information

How to Use RPA Recorder

How to Use RPA Recorder How to Use RPA Recorder This section explains general operations with the recording, such as creation, editing and publishing; using functions of RPA Recorder. Descriptions illustrate how to use a typical

More information

Login: Quick Guide for Qualtrics May 2018 Training:

Login:   Quick Guide for Qualtrics May 2018 Training: Qualtrics Basics Creating a New Qualtrics Account Note: Anyone with a Purdue career account can create a Qualtrics account. 1. In a Web browser, navigate to purdue.qualtrics.com. 2. Enter your Purdue Career

More information

TMG Clerk. User Guide

TMG  Clerk. User Guide User Guide Getting Started Introduction TMG Email Clerk The TMG Email Clerk is a kind of program called a COM Add-In for Outlook. This means that it effectively becomes integrated with Outlook rather than

More information

EZSCREEN ThruTouch Touch Film. User s Guide

EZSCREEN ThruTouch Touch Film. User s Guide EZSCREEN ThruTouch Touch Film User s Guide 2009 Copyright 2009. Ezscreen Touch Screen Systems, All rights reserved. Contents 1 INTRODUCTION...1 2 INSTALLATION...2 2.1 SYSTEM REQUIREMENTS...2 2.2 INSTALLATION...2

More information

DinoCapture Additional Software Instructions for Measurement models

DinoCapture Additional Software Instructions for Measurement models DinoCapture Additional Software Instructions for Measurement models Window tools Microtouch: The microtouch is a touch sensitive area on the dome that connects to the USB Cable. It functions as a button

More information

Digital Content e-reader Features Overview

Digital Content e-reader Features Overview Digital Content e-reader Features Overview Announcing the launch of our new digital content e-reader. This brief overview will demonstrate some of the most important features of our new e-reader. Once

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

Tabular Building Template Manager (BTM)

Tabular Building Template Manager (BTM) Tabular Building Template Manager (BTM) User Guide IES Vi rtual Environment Copyright 2015 Integrated Environmental Solutions Limited. All rights reserved. No part of the manual is to be copied or reproduced

More information

YGL 3.0 // The Basics

YGL 3.0 // The Basics YGL 3.0 // The Basics Thank you for your continued support of You ve Got Leads! The following document is intended to help with the many features of the program. Each community may have different features

More information

2. This tutorial will teach you the basics of PowerPoint and how to hyperlink and embed (insert) videos into your PowerPoint.

2. This tutorial will teach you the basics of PowerPoint and how to hyperlink and embed (insert) videos into your PowerPoint. 37 Creating Your Own PowerPoint for Macintosh and PC Computers and unitedstreaming Video Clips Tutorial created using PowerPoint 2000. This tutorial will work with similar images, messages, and navigation

More information

SchoolDesk University

SchoolDesk University SchoolDesk University Forms, Surveys, and Polls Module 101 Guided Walk-through for the basic fields, terminology, and location of tools. What is the NEW SD7 Forms Module? The NEW SchoolDesk Forms Module,

More information