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

Size: px
Start display at page:

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

Transcription

1 NXT Generation Robotics Introductory Worksheets School of Computing University of Kent Copyright c 2010 University of Kent

2 NXT Generation Robotics These worksheets are intended to provide an introduction to programming the LEGO Mindstorms NXT, using the supplied Mindstorms software; we hope that you find them useful. Guides: Getting Started: setting up and launching the Mindstorms software. Creating a New Program: how to create a new Mindstorms program. Downloading and Running: downloading your programs to the NXT and running them. Worksheets: 1. First Program: writing a program that makes your robot drive forwards. 2. Sensors: using the ultrasonic range sensor. 3. Driving: making your robot turn corners. 4. Loops: adding loops to your program to repeat actions. 5. Range and Wander: make your robot wander around and avoid obstacles. 6. Light Sensor: using the light sensor. 7. Data Handing: reading and displaying data. 8. Drive Back: using the motor s rotation sensor to move the robot back to its starting point. 9. Making Decisions: following different paths in a program depending on a condition. 10. Multiple Decisions: taking one of several paths depending on a value. 11. Further Exercises: additional exercises for those who have finished all the rest!

3 NXT Mindstorms: Getting Started 1. Login to the laptop using the supplied user-name and password. 2. Start up the Mindstorms software by double-clicking on the desktop icon, or by selecting it from the Windows menu: 3. The Mindstorms startup window should look something like: 4. You are now ready to start programming! Just remember: The NXT robot must be turned on, and Connected to the PC using the USB cable. (once a program has been downloaded to the robot, you can safely unplug the USB cable).

4 NXT: Creating a New Program 1. From the start screen (shown on the other side), click the Go >>> button in the Start New Program box. Else use the File menu and select New. 2. You will be presented with a blank canvas, where you can design your program: 3. Make a note of the program name in most cases this will be something like untitled-2. You will need this when it comes to running the program on the NXT robot!

5 NXT: Downloading and Running 1. Once you have finished writing your program (see other sheets for this!), you need to download it to your NXT robot, then run it. A set of buttons in the bottom-right corner of the canvas does this: Download Download and Run Note: make sure the USB cable is connected to the NXT before downloading! 2. The first time you download a program, use the Download and Run button this will make sure that the program is selected on the NXT. The down-side is that the program will start running with the USB cable still attached! For future downloads of the same program, use the Download button. Once the program has downloaded, you can safely disconnect the USB cable from the robot. 3. To run a program that has been downloaded to the NXT, use the on-screen menu and buttons: My Files Software files your program name Run : on-screen menu scroll left/right your program name select item go back If you use Download and Run first, the NXT will stay on the last menu screen when you Download changes to the program makes it easy to modify the program on the laptop and test the changes!

6 NXT Mindstorms: First Program For your first program, make the robot drive forwards for 1 wheel rotation, then stop. The program (when finished) should look something like this: 1. First, select the Move component (on the left of the canvas) by clicking on it: move 2. Second, place the component by clicking to the right of the Start icon : 3. Third, change the component settings (bottom of the canvas), such that motors A and C run forwards for 1 rotation: (select motors A and C) (forwards) (for 1 rotation) 4. Make sure the other movement settings are sensible for the task: no steering (in the centre), 75% power, and brake afterwards. 5. Download and run your program! If it works, the robot should drive forwards a short distance. download and run

7 NXT Mindstorms: Sensors This exercise uses the ultrasound sensor attached to the NXT robot: 1. Create a program similar to the first program you created, but where the robot moves forward forever: (select motors A and C) unlimited forwards movement 2. Download and run this program. The robot should drive forwards a short distance and then stop. Why does the robot stop..? Because once it is driving forwards, the program finishes and the motors shut-down automatically. To keep the robot driving forwards, the program needs to be told to wait for something. 3. Add a Wait for Distance component to the program, selecting it from the Wait menu: Wait for Distance Wait menu 4. Change the settings for the wait component to wait for less than 6 inches on sensor port 4: (sensor port 4) less than 6 inches (turn over...)

8 NXT Mindstorms: Sensors 5. Download and run this program. The robot should drive forwards until it sees an obstacle (through the ultrasound sensor) at a distance of less than 6 inches (roughly the length of the robot). Use your hand as an obstacle! (solid obstacle) Why does the robot sometimes run into the obstacle? Because the motors coast when the program finishes (and it takes some time here). 6. To tell the robot to stop as soon as it sees the obstacle, add another Move component to your program: 7. Unlike the first Move, this should be set to stop motors A and C: (motors A and C) (stop / brake) 8. Download and run this program. When the robot now sees the obstacle, it should stop suddenly. Re-run the program several times by pressing the Select button on the NXT you may want to unplug the USB cable before doing this! Try the program over larger distances as well (by running it on the floor, with someone at the other end to stop it!).

9 NXT Mindstorms: Driving This exercise involves turning corners with the robot. 1. Create the following program, using four Move components: (move forwards for 1 rotation) (turn 90 degrees anti-clockwise) (all stop) To turn the robot, use the following settings: (motors A and C) (for 0.77 rotations) (turn anti-clockwise) For the other Move components forwards for 1 rotation and all stop, use what you have learned so far! (or look at the earlier worksheets if you can t remember!). 2. Download and run your program. If it works, the robot should: move forwards a short distance, turn 90 degrees anti-clockwise, move forwards again, stop.

10 NXT Mindstorms: Loops Most computer programs involve loops that is, doing the same thing over and over. With the NXT robot, looping allows the robot to perform the same actions again and again. In the last worksheet, you programmed the robot so that it moved forward and turned. In this exercise, you will program the robot so that it repeats those actions. 1. Starting with a new program, select the Loop component and place it on the canvas. 2. Add three Move components, placing two of them inside the loop: (loop component) (all stop) Loop (turn anti-clockwise) (move forwards for 1 rotation) 3. The settings for the Move components should be the same as the previous worksheet: move forwards for 1 rotation (motors A and C), turn 90 degrees anti-clockwise (motors A and C, steering slider all the way to the right, moving for 0.77 rotations), all stop (motors A and C). 4. The settings for the Loop component should be: (select count control) (4 times) (third loop) 5. Download and run the program. If it works, the robot should drive around in a square: (fourth loop) (second loop) (first loop)

11 NXT Mindstorms: Range and Wander Now that you have created programs which: Move the robot forwards and turn corners, Stop the robot when the ultrasound sensor detects an obstacle, Loop to perform the same actions over and over, it s time to put these together to create a program which can drive around and avoid obstacles! 1. Create the following program, which contains: one Loop component, three Move components and one Wait for Distance component: (wait for less than 6 inches) (turn anti-clockwise) (loop forever) (move forwards forever) (move backwards for 1 rotation) 2. The Loop component should be set to loop forever: (loop forever) 3. The Wait for Distance settings should be for less than 6 inches on sensor port 4: (port 4) (less than 6 inches) (ultrasonic sensor) 4. The first Move component should be set to make the robot drive forwards forever. (as you did in the Sensors exercise). The second Move component should be set to make the robot drive backwards for 1 rotation: (motors A and C) (for 1 rotation) (drive backwards) (turn over...)

12 NXT Mindstorms: Range and Wander 5. The last Move component inside the Loop component should turn the robot anti-clockwise: (motors A and C) (for 0.75 rotations) (turn anti-clockwise) 6. Download and Run your program! If it works, the robot should move around, avoiding obstacles try it out on the floor! Make sure that you stay in front of your robot! (some obstacles the robot won t be able to see..) To stop the robot once it is running the program, press the stop/back button on the NXT: stop / back

13 NXT Mindstorms: Light Sensor The programs you have written so far have used the ultrasound (range) sensor. This exercise introduces you to the light sensor that is attached to the robot (pointing down at the ground). You will also need one of the A3 sheets with a black line on, available from the front of the class. A3 sheet light sensor connected to port 1 1. Create the following program, which contains: two Move components and one Wait for Light component: (wait for less than 50% light) (move forwards forever) The Wait for Light component can be found on the Wait menu: (all stop) (wait for light) The Wait for Light component should use the following settings: (port 1) (50%) (less than) When the NXT is connected to the laptop and powered up, this box will show the current value of the light sensor. This can be used to pick a suitable value, depending on surrounding light conditions. (turn over...)

14 NXT Mindstorms: Light Sensor 2. Download and run the program the robot should move forwards until it reaches the black line and then stop. 3. Modify your program so that after hitting the line, the robot reverses a short distance, turns slightly, then loops. Have the program loop just three times it should bounce off the line. The program should look something like the following (but need not be exactly the same!) having the correct behaviour is more important: (move forwards) (move backwards a bit) (stop) (loop 3 times) (wait for less than 50% light) (turn slightly) (stop)

15 NXT Mindstorms: Data Handling All of the programs you have written so far involve plugging components together. Although this is enough for the earlier tasks, more complex behaviours require the use of data values. These can be things such as the number of rotations of a motor, or the distance to something measured by the ultrasonic sensor. To start with, you will make the NXT display the distance moved by the robot as it reaches the black line (from the previous exercise). To get at the various components that are required for this, you need to select the Complete component palette: Common: standard set of components, most of which have been used before. Action: performing actions (e.g. motor on/off). Sensor: reading particular sensor values (e.g. light level). Flow: controlling program flow (e.g. loops, waiting). Data: storing and changing data (e.g. add, subtract). Advanced: various advanced features (e.g. bluetooth, data logging). Click here to show the complete set of components. 1. Starting with the move forward to line program from the previous worksheet: (wait for less than 50% light) (move forwards forever) (all stop) (turn over...)

16 NXT Mindstorms: Data Handling 2. Select the Rotation Sensor component from the Sensor components and insert it at the start of the program: (rotation sensor) (click here to show/hide) (data and control sockets ) The extra bit below the component is used to get and set various data and control information. These act as sockets that can be connected to other similar sockets on other components. Although most components have these sockets, they are hidden by default. Moving the mouse over each socket will provide a hint as to what data is input or output. The settings for this Rotation Sensor component, used to clear the rotation counter for one of the motors, are as follows: (motor A) (reset counter) (turn over...)

17 NXT Mindstorms: Data Handling 3. Add another Rotation Sensor component after the Wait for Light component: (rotation sensor) This should be set to read the value of the rotation sensor i.e. it will provide the number of rotations at the point the line was reached: (motor A) (read counter) 4. Now that the number of rotations is available, it needs to be displayed on the NXT screen. This involves adding a further three components: a Number to Text component from the Advanced palette, which turns the number of rotations into text that can be displayed on the screen; a Display component from the Action palette, which displays this text on the screen; and a Wait component from the Flow palette that delays for 3 seconds to give you time to read the text before the program exits. (number to text) (display) (wait) The Wait component should have the following settings: (wait for time) (3 seconds) (turn over...)

18 NXT Mindstorms: Data Handling 5. Before wiring the various components together, the Display component should be set to display text (by default it will display an image): (text) 6. Finally, connect the degrees output socket from the Rotation Sensor to the number input socket on the Number to Text component, and the text output to the text input on the Display component: Once all the necessary connections have been made, the sockets can be collapsed to only show those which are used, e.g.: 7. Download and Run your program! If successful, it should stop at the black line on the A3 sheet and show (on the display) the number of degrees turned by the wheel. 8. Having the robot tell you the number of degrees turned by the wheel (motor A) isn t terribly helpful. Modify the program so that it shows the distance travelled in centimeters. Hint: this can be done by adding a Math component from the Data palette given that the circumference of the wheel is roughly 18 centimeters, which represents 360 degrees of rotation, you can divide the number of degrees by 20 to get the distance travelled in centimeters. Run the modified program and check that the numbers it gives look sensible (i.e. the distance travelled by the robot before the line is reached). (one solution is given on the next page, but there are others!) (turn over...)

19 NXT Mindstorms: Data Handling Here is one possible solution to calculating the distance travelled by the robot: (math component) With the Math component set to the following: (set to division) (divide by 20) The ability to collect, process and use data in this way allows a lot of interesting possibilities. Although this program only displays data for you to see, such numbers can be fed into other components like the motor to control the distance driven. The next few exercises use data in this way.

20 NXT Mindstorms: Drive Back By measuring how far the robot moves until a certain condition is met (e.g. obstacle detected by the ultrasonic range sensor), you can have it move back to its starting point. The purpose of this exercise is to modify the basic light sensor exercise (that moves forward until the line is reached and then stops), so that it returns to its starting point. 1. Create the following program: The degrees output of the Rotation Sensor should be connected to the duration input of a Move component which is set to drive backwards. You re on your own here as to what the exact settings should be! 2. Test out your program by starting your robot at different distances from the line it should return to (more or less!) the same position from which it started.

21 NXT Mindstorms: Making Decisions So far you have written programs that wait for specific conditions (e.g. ultrasonic sensor value less than a particular distance). Sometimes it is useful to be able to make an instant decision based on a condition (e.g. light sensor seeing black). This way, the program doesn t stop but continues down one of two possible paths, depending on whether the condition was true or false. The purpose of this exercise is to create a line following robot that uses the light sensor. When the sensor is directly above the line, the robot turns one way, when the sensor is not on the line, the robot turns the other way. 1. Create the following program: The switch component should be set to the light sensor connected to port 1, with a decision of greater than 50%. If true (upper path), motor A is set to go forwards at 50% power and motor C forwards at 10% power, both unlimited duration (setting the two motors separately gives more control over steering than the steering control in the move component). If false (lower path), motor C is set to go forwards at 50% power and motor A forwards at 10% power, both unlimited duration. The whole program should be surrounded by a loop that repeats forever. 2. Test out your program on one of the sheets that has a mostly straight line on it check that it works. As the robot follows the line, try and identify the two different behaviours with the two paths in the program. 3. Test out your program on one of the sheets that has a fairly bendy line on it does it still work?

22 NXT Mindstorms: Multiple Decisions The last exercise involved making a decision on a true or false condition (whether the light sensor was above a particular value or not). In some cases, particularly for activities such as line-following, it is more useful to be able to have multiple paths in a program, where the particular path taken depends on the value of something (in this case, the value of the light sensor). Instead of simply turning left or right depending on whether the light sensor is on the line or not, in this exercise you will make the robot follow the edge of the line (where the light reading is somewhere between black and white). 1. Start by creating the following program: read light sensor divide by 20 (tabs to switch between conditions) switch on value The intensity value of the light sensor should be connected to input A on the math component, which is set to divide that by 20. The result of this is connected to the value input of the switch. The settings for the switch component are as follows: value control add condition remove condition set default condition number disable flat view Create five conditions, matching the values 0 to 4. With division by 20, this allows the program to select between the different light sensor values (0-19, 20-39, 40-59, 60-79, ). The default condition (last) is used to match any value that does not fall into the listed choices (i.e = 5). (turn over...)

23 NXT Mindstorms: Multiple Decisions 2. Within each of the five conditions, the motors A and C need to be told to move by different amounts. Each of the different paths in the program can be accessed by clicking on the tabs at the top of the switch component. For example: To start with, use the following settings: Condition Value Light-levels Motor A Motor C forwards 50% forwards 10% forwards 50% forwards 30% forwards 50% forwards 50% forwards 30% forwards 50% 5 (default) forwards 10% forwards 50% The theory behind this is that when the light sensor is on the edge of the line (value around 50) the robot will move straight forwards (50% power to both motors). If the robot drives more into the dark line, the sensor value will drop (to around 30) and as a result the robot will start steering towards the left (motor A 50%, motor C 30%). Similar logic applies as the robot drives into the white space, except that the robot steers the other way (motor A 30%, motor C 50%). 3. Test out the program on the different A3 sheets with a line (some sheets have thicker lines which may help with this exercise). If the robot fails to stick to the line, modify the program so that it does a better job. Here are some things to try: (a) Change the power levels in the motors, or even the direction. (b) Fine-tune the range by dividing by a smaller value and having a different set of conditions to match. Remember that when the robot is connected and the program has been downloaded at least once, the current light sensor value can be seen in the light-sensor component controls: current sensor reading

24 NXT Mindstorms: Further Exercises If you manage to complete all the other worksheets in time, here are some more exercises for you to have a go at! As far as programming goes, you re on your own here! 1. The NXT robot has a light sensor attached to it (pointing down at the ground). Using the area on the floor marked out with masking tape, have the robot move around inside the area, but not cross the line: (robot should stay within the marked area) Some useful hints: (light sensor) The general structure of the program should be similar to the Range and Wander worksheet. You can wait for a particular value on the light sensor using a component from the Wait menu. On this robot, the light sensor is connected to port 1. The value returned by the light sensor when it is on the masking tape will be higher than the value returned on the carpet. 2. Harder: if you can get the above program to work, have a go at writing a program where the robot follows the line of masking tape that marks out the area. 3. Harder: using the ultrasonic sensor, do the above two exercises but have the robot avoid obstacles (other robots!) as well.

understanding sensors

understanding sensors The LEGO MINDSTORMS NXT 2.0 robotics kit includes three types of sensors: Ultrasonic, Touch, and Color. You can use these sensors to build a robot that makes sounds when it sees you or to build a vehicle

More information

Tutorial for Programming the LEGO MINDSTORMS NXT

Tutorial for Programming the LEGO MINDSTORMS NXT Tutorial for Programming the LEGO MINDSTORMS NXT Table of contents 1 LEGO MINDSTORMS Overview 2 Hardware 2.1 The NXT Brick 2.2 The Servo Motors 2.3 The Sensors 3 Software 3.1 Starting a Program 3.2 The

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

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools www.lego.com/education/mindstorms LEGO, the LEGO logo and MINDSTORMS are trademarks of the LEGO Group. 2004 The LEGO

More information

EV3 Programming. Overview for FLL Coaches. A very big high five to Tony Ayad

EV3 Programming. Overview for FLL Coaches. A very big high five to Tony Ayad EV3 Programming Overview for FLL Coaches A very big high five to Tony Ayad 2013 Nature s Fury Coach Call Basic programming of the Mindstorm EV3 Robot People Introductions Deborah Kerr & Faridodin Lajvardi

More information

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook Written Directions for EV3 Line Follow (Heaviside Algorithm) Description: Given a black line and the light sensor on the EV3 robot, we want to have the light sensor read values from the reflected light.

More information

Programming LEGO NXT Robots using NXC

Programming LEGO NXT Robots using NXC Programming LEGO NXT Robots using NXC This text programming language derived from C language is bended together with IDE BricxCC on standard firmware LEGO Mindstorms. This can be very convenient for those,

More information

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud pmichaud@pobox.com republicofpi.org

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud pmichaud@pobox.com republicofpi.org North Texas FLL Coaches' Clinics Beginning Programming October 2014 Patrick R. Michaud pmichaud@pobox.com republicofpi.org Goals Learn basics of Mindstorms programming Be able to accomplish some missions

More information

C.I. La chaîne d information LES CAPTEURS. Page 1 sur 5

C.I. La chaîne d information LES CAPTEURS. Page 1 sur 5 LES CAPTEURS C.I. La chaîne d information The Touch Sensor gives your robot a sense of touch. The Touch Sensor detects when it is being pressed by something and when it is released again. Suggestions for

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

How to register and use our Chat System

How to register and use our Chat System How to register and use our Chat System Why this document? We have a very good chat system and easy to use when you are set up, but getting registered and into the system can be a bit complicated. If you

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

Can Traffic Accidents be eliminated by Robots?

Can Traffic Accidents be eliminated by Robots? Can Traffic Accidents be eliminated by Robots? Elementary Science and Technology Grade 7 Teaching- learning Module for Unit Light and Sound Abstract This modules leads to a decision making activity related

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

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION NXT User Guide Introduction WELCOME TO LEGO MINDSTORMS EDUCATION LEGO MINDSTORMS Education is the next generation in educational robotics, enabling students to discover Science, Technology, Engineering

More information

Line Tracking Basic Lesson

Line Tracking Basic Lesson Line Tracking Basic Lesson Now that you re familiar with a few of the key NXT sensors, let s do something a little more interesting with them. This lesson will show you how to use the Light Sensor to track

More information

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION

Introduction WELCOME TO LEGO MINDSTORMS EDUCATION NXT User Guide Introduction WELCOME TO LEGO MINDSTORMS EDUCATION LEGO MINDSTORMS Education is the next generation in educational robotics, enabling students to discover Science, Technology, Engineering

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

Using the enclosed installation diagram, drill three holes in the wall with the lower hole 1150mm from the floor.

Using the enclosed installation diagram, drill three holes in the wall with the lower hole 1150mm from the floor. Terminal Installation When choosing the location of the terminal, care should be taken to select an area with consistent light levels throughout the day and avoid areas where the unit may be subjected

More information

Additional Guides. TETRIX Getting Started Guide NXT Brick Guide

Additional Guides. TETRIX Getting Started Guide NXT Brick Guide Preparing the NXT Brick Now that a functional program has been created, it must be transferred to the NXT Brick and then run. This is a perfect time to take a look at the NXT Brick in detail. The NXT Brick

More information

The Basics of Robot Mazes Teacher Notes

The Basics of Robot Mazes Teacher Notes The Basics of Robot Mazes Teacher Notes Why do robots solve Mazes? A maze is a simple environment with simple rules. Solving it is a task that beginners can do successfully while learning the essentials

More information

Wireless Remote Control of the TT24

Wireless Remote Control of the TT24 of the TT24 Updated: 7/20/04 by Benjamin Olswang The TT24 includes a powerful piece of software called TT Control. With this software, you can monitor and control the TT24 console from a PC attached via

More information

PIGCHAMP MOBILE. PigCHAMP Knowledge Software. Installation Guide for Mobile Units

PIGCHAMP MOBILE. PigCHAMP Knowledge Software. Installation Guide for Mobile Units PIGCHAMP MOBILE PigCHAMP Knowledge Software Installation Guide for Mobile Units Table of Contents: Important Note:... 4 Chapter 1: PC Setup... 5 A. Install PigCHAMP Mobile Manager on Windows XP...5 B.

More information

Internet basics 2.1 Getting online. Beginner s guide to. www.bt.com/getittogetherresources. Basics. Get IT Together

Internet basics 2.1 Getting online. Beginner s guide to. www.bt.com/getittogetherresources. Basics. Get IT Together Beginner s guide to Internet basics 2.1 Getting online Use this document with the glossary A helper should take you through this guide This activity will help you get online for the first time. What will

More information

The FlexiSchools Online Order Management (FOOM) Installation Guide

The FlexiSchools Online Order Management (FOOM) Installation Guide The FlexiSchools Online Order Management (FOOM) Installation Guide Installation Pack Welcome to the FlexiSchools system. You will have been sent an email and two packages delivered by courier, one with

More information

Fruit Machine. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code

Fruit Machine. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code Introduction: This is a game that has three sprites that change costume. You have to stop them when they re showing the same picture (like a fruit machine!). Activity Checklist Follow these INSTRUCTIONS

More information

Audience Response System (Turning Point) A Quick Start Guide

Audience Response System (Turning Point) A Quick Start Guide Audience Response System (Turning Point) A Quick Start Guide What is Turning Point? Turning Point is an audience response system and by downloading a plug-in for PowerPoint it enables you to add interactivity

More information

Installing the VMware Horizon View Client to Access Hoag Virtual Desktops

Installing the VMware Horizon View Client to Access Hoag Virtual Desktops Installing the VMware Horizon View Client to Access Hoag Virtual Desktops Hoag IT Department For questions or further assistance, please contact the Service Desk: 949-764-8600, option 2 1 Table of Contents

More information

The FlexiSchools Online Order Management System Installation Guide

The FlexiSchools Online Order Management System Installation Guide The FlexiSchools Online Order Management System Installation Guide FlexiSchools May 2012 Page 1 of 18 Installation Pack Welcome to the FlexiSchools system. You will have received a disc containing: Sato

More information

Welcome to Bridgit @ CSU The Software Used To Data Conference.

Welcome to Bridgit @ CSU The Software Used To Data Conference. Welcome to Bridgit @ CSU The Software Used To Data Conference. Overview SMART Bridgit software is a client/server application that lets you share programs and information with anyone, anywhere in the world.

More information

Wireless Network Adapter Installation

Wireless Network Adapter Installation Belkin 54 Mbps Wireless Network Adapter Installation Version 1.0 Copyright Copyright 2013 Watthour Engineering Co., Inc.. All rights reserved. Information in this document is subject to change without

More information

How To Use An Easypad On A Pc Or Macbook Or Ipad (For Pc)

How To Use An Easypad On A Pc Or Macbook Or Ipad (For Pc) User Guide Congratulations on your new EasyPad 1000. Please follow the instructions in this manual carefully. Statement: If the final version of this product has any differences from the description of

More information

TWO WAYS TO SCHEDULE A SCOPIA VIDEO CONFERENCE BASED MEETING. 1- SCOPIA USER PORTAL 2- OUTLOOK SCOPIA MEETING PLUG-IN

TWO WAYS TO SCHEDULE A SCOPIA VIDEO CONFERENCE BASED MEETING. 1- SCOPIA USER PORTAL 2- OUTLOOK SCOPIA MEETING PLUG-IN TWO WAYS TO SCHEDULE A SCOPIA VIDEO CONFERENCE BASED MEETING. 1- SCOPIA USER PORTAL 2- OUTLOOK SCOPIA MEETING PLUG-IN USING IVIEW SCOPIA USER PORTAL TO SCHEDULE A MEETING: GO TO: http://iview.utoledo.edu:8080/

More information

Classroom Activities for the Busy Teacher: EV3

Classroom Activities for the Busy Teacher: EV3 Classroom Activities for the Busy Teacher: EV3 Table of Contents Chapter 1: Introduction... 1 Chapter 2: RileyRover Basics... 5 Chapter 3: Keeping Track... 13 Chapter 4: What is a Robot?... 17 Chapter

More information

The second goal is to provide a list of tips, tricks, and best known methods that have been discovered over the life span of the course.

The second goal is to provide a list of tips, tricks, and best known methods that have been discovered over the life span of the course. ECE1882 LEGO NXT Brick Programming Guide Introduction This document was written with two goals in mind. The first is to orient a new user to the graphical programming language used in the MindSpring NXT

More information

Hello Modem. Today I would like

Hello Modem. Today I would like Quick Setup Guide Hello Modem. Today I would like to Start from scratch 1 Plug Modem in 3 Connect a computer to Modem 7 Learn how to view Modem settings 21 Change my wireless network name 22 Change my

More information

Installing Remote Desktop Connection

Installing Remote Desktop Connection SETTING UP YOUR REMOTE DESKTOP This section will assist you in setting you Remote Desktop Connection. This will allow you to create an icon for easy access to your virtual desktop. DISCLAIMER: All images

More information

Internet basics 2.1 Getting online. Beginner s guide to. Basics

Internet basics 2.1 Getting online. Beginner s guide to. Basics Basics Beginner s guide to Internet basics 2.1 Getting online Use this document with the glossary A helper should take you through this guide This activity will help you get online for the first time.

More information

LogMeIn Ignition for Android User Guide

LogMeIn Ignition for Android User Guide LogMeIn Ignition for Android User Guide Contents About LogMeIn Ignition...3 Getting Started with LogMeIn Ignition...3 How to Create a LogMeIn Account for Use with Ignition...4 How to Add Computers to your

More information

Your EdVenture into Robotics You re a Programmer

Your EdVenture into Robotics You re a Programmer Your EdVenture into Robotics You re a Programmer Introduction... 3 Getting started... 4 Meet EdWare... 8 EdWare icons... 9 EdVenture 1- Flash a LED... 10 EdVenture 2 Beep!! Beep!!... 12 EdVenture 3 Robots

More information

Zoom Participant Guide

Zoom Participant Guide Zoom Participant Guide Zoom is a conferencing solution that provides both video conferencing and screen sharing capabilities. Its high-quality and easy to use format have made it a great choice for istudy.

More information

oxigen system Slot.it oxigen timing RMS installation Dongle driver installation 1/ 11 Race Management Software

oxigen system Slot.it oxigen timing RMS installation Dongle driver installation 1/ 11 Race Management Software 1/ 11 Slot.it oxigen timing RMS installation To install the Slot.it oxigen timing-rms software, follow these steps: 1. download the O2_chrono_installer.zip file from Slot.it ftp site; 2. unzip the downloaded

More information

The easy way to accept EFTPOS, Visa and MasterCard payments on the spot. Mobile Users... 2. Charging your PayClip. 2. Downloading the PayClip app.

The easy way to accept EFTPOS, Visa and MasterCard payments on the spot. Mobile Users... 2. Charging your PayClip. 2. Downloading the PayClip app. PayClip User Guide The easy way to accept EFTPOS, Visa and MasterCard payments on the spot. Contents Getting started made easy 2 Information for Merchants....................................................2

More information

The FlexiSchools Online Order Management System Installation Guide

The FlexiSchools Online Order Management System Installation Guide The FlexiSchools Online Order Management System Installation Guide Installation Pack Welcome to the FlexiSchools system. You will have received a disc containing: Zebra Drivers FlexiSchools Online Order

More information

If you are unable to set up your Linksys Router by using one of the above options, use the steps below to manually configure your router.

If you are unable to set up your Linksys Router by using one of the above options, use the steps below to manually configure your router. This article describes how to manually configure a Linksys Router for broadband DSL that uses PPPoE (Point-to-Point Protocol over Ethernet) for authentication. For automatic configuration options, please

More information

How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment?

How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment? Author Janice Hong Version 1.0.0 Date Mar. 2014 Page 1/56 How to use the VMware Workstation / Player to create an ISaGRAF (Ver. 3.55) development environment? Application Note The 32-bit operating system

More information

Wireless. Set-up guide. Get going in a flash

Wireless. Set-up guide. Get going in a flash Wireless Set-up guide Get going in a flash Welcome to Virgin Wireless Broadband This is a quick guide to help you get going with wireless broadband. There s no jargon in here, so you ll be surfing the

More information

PART 1. Using USB Mixer with a Computer

PART 1. Using USB Mixer with a Computer PART 1. Using USB Mixer with a Computer Universal Serial Bus Mixers The USB mixer is equipped with either one or two USB ports that allow you to play and record audio directly from your computer! Just

More information

AKO Email Shutdown Quick Reference Guide

AKO Email Shutdown Quick Reference Guide AKO Email Shutdown Quick Reference Guide NETWORK ENTERPRISE CENTER This guide explains how the Army is shutting down AKO Email and outlines steps you must take to ensure a smooth transition to full DoD

More information

TECHNICAL BULLETIN. Configuring Wireless Settings in an i-stat 1 Wireless Analyzer

TECHNICAL BULLETIN. Configuring Wireless Settings in an i-stat 1 Wireless Analyzer i-stat TECHNICAL BULLETIN Configuring Wireless Settings in an i-stat 1 Wireless Analyzer Before configuring wireless settings, please enable the wireless functionality by referring to the Technical Bulletin

More information

First of all Let's look at how you would connect your laptop via Ethernet, as it is the easier of the two methods.

First of all Let's look at how you would connect your laptop via Ethernet, as it is the easier of the two methods. How to get a Internet Connection on your laptop This guide will help you to get an internet connection on your laptop either via Wi-Fi (e.g. in a café or hotel) or via Ethernet (the RJ45 type connector

More information

Monitoring Network DMN

Monitoring Network DMN Monitoring Network DMN User Manual Table of contents Table of contents... 2 1. Product features and capabilities... 3 2. System requirements... 5 3. Getting started with the software... 5 3-1 Installation...

More information

Password Memory 6 User s Guide

Password Memory 6 User s Guide C O D E : A E R O T E C H N O L O G I E S Password Memory 6 User s Guide 2007-2015 by code:aero technologies Phone: +1 (321) 285.7447 E-mail: info@codeaero.com Table of Contents Password Memory 6... 1

More information

Contents. Business Everywhere user guide. 1. Introduction. 2. How to Install/Uninstall Business Everywhere. 3. The Business Everywhere interface

Contents. Business Everywhere user guide. 1. Introduction. 2. How to Install/Uninstall Business Everywhere. 3. The Business Everywhere interface Contents 1. Introduction 2. How to Install/Uninstall Business Everywhere 3. The Business Everywhere interface 4. Launching Business Everywhere 5. Connection 6. Business Everywhere management tools 7. Troubleshooting

More information

ScanShell.Net Install Guide

ScanShell.Net Install Guide ScanShell.Net Install Guide Please install the software first - DO NOT PLUG IN THE SCANNER The scanner has been carefully packaged to avoid damage during transportation. Before operating the scanner, please

More information

educ Office 365 email: Remove & create new Outlook profile

educ Office 365 email: Remove & create new Outlook profile Published: 29/01/2015 If you have previously used Outlook the with the SCC/SWO service then once you have been moved into Office 365 your Outlook will need to contact the SCC/SWO servers one last time

More information

Zoom Guide Book. The Office of Academic Technology http://academictech.ottawa.edu/ LEADER GUIDE

Zoom Guide Book. The Office of Academic Technology http://academictech.ottawa.edu/ LEADER GUIDE The Office of Academic Technology http://academictech.ottawa.edu/ Zoom Guide Book LEADER GUIDE Documentation and screenshots are based on Zoom version 2.5.XXXX About Zoom: Zoom is a cloud-based conferencing

More information

Steps for using MagicConnect

Steps for using MagicConnect Getting Started Getting Started MagicConnect is a remote access service that allows you safe remote access to a target device from your remote device. What is a remote device? It is a Windows device, iphone/ipad,

More information

Steps for using MagicConnect

Steps for using MagicConnect Getting Started Getting Started MagicConnect is a remote access service that allows you safe remote access to a target device from your remote device. What is a remote device? It is a Windows device, iphone/ipad,

More information

FrontDesk Installation And Configuration

FrontDesk Installation And Configuration Chapter 2 FrontDesk Installation And Configuration FrontDesk v4.1.25 FrontDesk Software Install Online Software Activation Installing State Related Databases Setting up a Workstation Internet Transfer

More information

Print Server Application Guide. This guide applies to the following models.

Print Server Application Guide. This guide applies to the following models. Print Server Application Guide This guide applies to the following models. TL-WR842ND TL-WR1042ND TL-WR1043ND TL-WR2543ND TL-WDR4300 CONTENTS Chapter 1. Overview... 1 Chapter 2. Before Installation...

More information

Dr Robot C# Advance Sputnik Demo Program

Dr Robot C# Advance Sputnik Demo Program 25 Valleywood Drive, Unit 20 Markham, Ontario, L3R 5L9, Canada Tel: (905) 943-9572 Fax: (905) 943-9197 Support@DrRobot.com Dr Robot C# Advance Sputnik Demo Program Version: 1.0.0 June 2008-1 - Copyright

More information

StarLeaf Cloud Troubleshooter

StarLeaf Cloud Troubleshooter StarLeaf Cloud Troubleshooter 02 September 2014 Contents About the troubleshooter 3 The StarLeaf Phone is not powered 3 Phone is powered but displays a blue screen 3 Quick connect screen 5 The screen displays

More information

The FlexiSchools Online Order Management System Installation Guide

The FlexiSchools Online Order Management System Installation Guide The FlexiSchools Online Order Management System Installation Guide FlexiSchools May 2012 Page 1 of 16 Installation Pack Welcome to the FlexiSchools system. You will have received a disc containing: Sato

More information

Mobility with Eye-Fi Scanning Guide

Mobility with Eye-Fi Scanning Guide Mobility with Eye-Fi Scanning Guide Scan and Transfer Images Wirelessly with Eye-Fi This document is to be used in addition to the scanner s user guide located on the installation disc. The instructions

More information

User Guide HUAWEI UML397. Welcome to HUAWEI

User Guide HUAWEI UML397. Welcome to HUAWEI User Guide HUAWEI UML397 Welcome to HUAWEI 1 Huawei UML397 4G LTE Wireless Modem User Manual CHAPTER 1 BEFORE USING YOUR UML397 WIRELESS MODEM ABOUT THIS USER MANUAL...4 WHAT S INSIDE THE PRODUCT PACKAGE...4

More information

LEGO Digital Designer 4.3 User Manual

LEGO Digital Designer 4.3 User Manual LEGO Digital Designer 4.3 User Manual The Readme file contains system requirements and the latest information about this software release. Please refer to it first if you encounter any problems. Contents

More information

How To Use An Apple Macbook With A Dock On Itunes Macbook V.Xo (Mac) And The Powerbar On A Pc Or Macbook (Apple) With A Powerbar (Apple Mac) On A Macbook

How To Use An Apple Macbook With A Dock On Itunes Macbook V.Xo (Mac) And The Powerbar On A Pc Or Macbook (Apple) With A Powerbar (Apple Mac) On A Macbook QNS OSX instructions. CONTENTS 1 The Apple and Finder 2 The Dock 3 Navigating OS X 4 System Preferences 1 OS X tutorial: the apple The apple menu The apple menu is hidden under the apple at the top left

More information

Introduction to Google SketchUp (Mac Version)

Introduction to Google SketchUp (Mac Version) Introduction to Google SketchUp (Mac Version) This guide is handy to read if you need some basic knowledge to get started using SketchUp. You will see how to download and install Sketchup, and learn how

More information

The Coast to Coast AM Podcast for itunes 11

The Coast to Coast AM Podcast for itunes 11 The Coast to Coast AM Podcast for itunes 11 System Requirements In order to run itunes 11, please see the system requirements at http://www.apple.com/itunes/download/. A Note on Downloading Directly to

More information

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build

More information

How to Use JCWHosting Reseller Cloud Storage Solution

How to Use JCWHosting Reseller Cloud Storage Solution How to Use JCWHosting Reseller Cloud Storage Solution Go to https://www.internetspace.co.za and log in with your Cloud Reseller account username and password. How to Use create a cloud account for your

More information

Mastering Lync Meetings

Mastering Lync Meetings Mastering Lync Meetings cd_mastering_lync_meetings_v2 1 8/25/2014 Course Title Contents Overview of scheduled Online Lync meetings... 3 General Best Practices... 3 Scheduling the meeting... 4 Recurring

More information

P-2612HNU-Fx. 802.11n ADSL2+ VoIP IAD DEFAULT LOGIN DETAILS. Firmware V3.00 Edition 1, 1/2010. Password: 1234 User Name: admin Password: 1234

P-2612HNU-Fx. 802.11n ADSL2+ VoIP IAD DEFAULT LOGIN DETAILS. Firmware V3.00 Edition 1, 1/2010. Password: 1234 User Name: admin Password: 1234 P-2612HNU-Fx 802.11n ADSL2+ VoIP IAD Firmware V3.00 Edition 1, 1/2010 DEFAULT LOGIN DETAILS IP Address: User Login: Administrator Login: http://192.168.1.1 User Name: user Password: 1234 User Name: admin

More information

Workshop NXT Programming For Beginners

Workshop NXT Programming For Beginners Workshop NXT Programming For Beginners Version 1.1 Summer, 2012 Based on the Lego NXT Robotics System Copyright 2012, Neil Rosenberg Neil@vectorr.com 828-484-4444 Weaverville, NC All Rights Reserved This

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

How To Use Mview On A Powerline 2.2 (Powerline) On A Pc Or Macbook 2 (Powerplst) On An Iphone Or Ipa 2 (Aldo) On Your Iphon 2 (

How To Use Mview On A Powerline 2.2 (Powerline) On A Pc Or Macbook 2 (Powerplst) On An Iphone Or Ipa 2 (Aldo) On Your Iphon 2 ( mview for V8.53 and Later Motion Software mview is an elevator monitoring application. Through 1 Ethernet, the computer running mview may be connected directly to a single Motion 2000 or Motion 4000 controller

More information

LCD MONITOR TOUCH PANEL DRIVER 2 OPERATION MANUAL. for Mac. Version 1.0 PN-L703A/PN-70TA3/PN-L703B/PN-70TB3/PN-L603A/PN-60TA3/PN-L603B/PN-60TB3

LCD MONITOR TOUCH PANEL DRIVER 2 OPERATION MANUAL. for Mac. Version 1.0 PN-L703A/PN-70TA3/PN-L703B/PN-70TB3/PN-L603A/PN-60TA3/PN-L603B/PN-60TB3 LCD MONITOR TOUCH PANEL DRIVER 2 OPERATION MANUAL for Mac Version 1.0 Applicable models PN-L703A/PN-70TA3/PN-L703B/PN-70TB3/PN-L603A/PN-60TA3/PN-L603B/PN-60TB3 Contents Introduction...3 System Requirements...3

More information

mybullard Personal Control Panel User Guide

mybullard Personal Control Panel User Guide Page 1 mybullard Personal Control Panel User Guide Go to www.bullard.com/mybullard and click on the setup file in order to download the mybullard installer to your PC. Your browser / anti-virus software

More information

Features Phone Access... 1. Features Web Access... 3. emta Quick Reference Guide...14. Troubleshooting...15. Quick Reference Guide...

Features Phone Access... 1. Features Web Access... 3. emta Quick Reference Guide...14. Troubleshooting...15. Quick Reference Guide... Phone TABLE OF CONTENTS Features Phone Access... 1 Features Web Access... 3 emta Quick Reference Guide...14 Troubleshooting...15 Quick Reference Guide...16 Features Phone Access Caller ID Feature that

More information

UPS Monitoring and Management Software

UPS Monitoring and Management Software UPS Monitoring and Management Software LEN.MAN.SOF.141 Rev.1.00/2008 User s Guide: Easy-Mon X 1. Configuration Before Easy-Mon X software can display the electrical data of LEONICS UPS, user has to configure

More information

WAMLocal. Wireless Asset Monitoring - Local Food Safety Software. Software Installation and User Guide BA/WAM-L-F

WAMLocal. Wireless Asset Monitoring - Local Food Safety Software. Software Installation and User Guide BA/WAM-L-F Wireless Asset Monitoring - Local Food Safety Software BA/WAM-L-F Software Installation and User Guide System Overview The BAPI Wireless Asset Monitoring Local (WAM Local) Software receives temperature

More information

C6 Easy Imaging Total Computer Backup. User Guide

C6 Easy Imaging Total Computer Backup. User Guide C6 Easy Imaging Total Computer Backup User Guide Clickfree and the Clickfree logo are trademarks or registered trademarks of Storage Appliance Corporation. Other product names used in this guide are recognized

More information

Logging into Citrix (Epic) using an RSA Soft Token - New RSA User

Logging into Citrix (Epic) using an RSA Soft Token - New RSA User Logging into Citrix (Epic) using an RSA Soft Token - New RSA User Soft Token Installation and Logging into Citrix (Epic) using an RSA Soft Token A. For new RSA users: downloading & importing your RSA Soft

More information

EPSON Stylus. Start Here

EPSON Stylus. Start Here EPSON Stylus C84 EPSON Stylus Start Here C84 CPD-16675R1 4043482-00 XXX 1 Unpack 1 Remove everything from the box. Paper support Printer Manual Power cord Ink cartridges CD-ROM 2 Remove all the blue tape

More information

The SMART Board Interactive Whiteboard

The SMART Board Interactive Whiteboard The SMART Board Interactive Whiteboard 1. Press the power button, the indicator ring flashes green to indicate that the projector lamp is starting up. The What would you like to do? menu will be displayed.

More information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information Sensors For Robotics What makes a machine a robot? Sensing Planning Acting information about the environment action on the environment where is the truck? What is sensing? Sensing is converting a quantity

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

MAGPOWR Spyder Firmware Update Instruction Manual

MAGPOWR Spyder Firmware Update Instruction Manual MAGPOWR TENSION CONTROL MAGPOWR Spyder Firmware Update Instruction Manual EN Spyder and Spyder-Plus MI 850A324 B COPYRIGHT All of the information herein is the exclusive proprietary property of Maxcess

More information

Quick Installation and Setup for WinPower Software

Quick Installation and Setup for WinPower Software Quick Installation and Setup for WinPower Software A. On the WinPower Installation menu, simply follow on-screen instructions and key in the software serial number. The installation will be automatically

More information

REFERENCE GUIDE 1. INTRODUCTION

REFERENCE GUIDE 1. INTRODUCTION 1. INTRODUCTION Scratch is a new programming language that makes it easy to create interactive stories, games, and animations and share your creations with others on the web. This Reference Guide provides

More information

2. PMP New Computer Installation. & Networking Instructions

2. PMP New Computer Installation. & Networking Instructions ONTARIO CHIROPRACTIC ASSOCIATION PATIENT MANAGEMENT PROGRAM PUTTING EXPERIENCE INTO PRACTICE PMP New Computer Installation & Networking Instructions This document provides installation instructions for

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

How to use a SMART Board

How to use a SMART Board 1 How to use a SMART Board Basic instructions on how to set up the SMART Board and how to use the SMART Board with both PC and Mac laptops. Contents Page 2: SMART Board Set Up Instructions Page 3: SMART

More information

Personal Call Manager User Guide. BCM Business Communications Manager

Personal Call Manager User Guide. BCM Business Communications Manager Personal Call Manager User Guide BCM Business Communications Manager Document Status: Standard Document Version: 04.01 Document Number: NN40010-104 Date: August 2008 Copyright Nortel Networks 2005 2008

More information

Q. The Phone Manager call banner disappears after being displayed for a couple of seconds...5 Q. The Phone Manager icon in the taskbar is blue and

Q. The Phone Manager call banner disappears after being displayed for a couple of seconds...5 Q. The Phone Manager icon in the taskbar is blue and Phone Manager FAQ s Q. The Phone Manager call banner disappears after being displayed for a couple of seconds...5 Q. The Phone Manager icon in the taskbar is blue and has a cross on it. 5 Q. Some options

More information

HOW-TO-GUIDE. Installer Service Tool: Downloading Data and Event Logs for the Eltek Theia

HOW-TO-GUIDE. Installer Service Tool: Downloading Data and Event Logs for the Eltek Theia HOW-TO-GUIDE Installer Service Tool: Downloading Data and Event Logs for the Eltek Theia READ FIRST: In order to run the Installer Service Tool you first need a software license key. These are issued to

More information

How to Create Custom Sound Effects for NXT Robots.

How to Create Custom Sound Effects for NXT Robots. Talk to the Animals How to Create Custom Sound Effects for NXT Robots. NOTE: Note to parents and teachers: This process requires downloading software from the Internet and may require adult supervision.

More information

Using SSH Secure Shell Client for FTP

Using SSH Secure Shell Client for FTP Using SSH Secure Shell Client for FTP The SSH Secure Shell for Workstations Windows client application features this secure file transfer protocol that s easy to use. Access the SSH Secure FTP by double-clicking

More information

C6 Easy Imaging Total Computer Backup. User Guide

C6 Easy Imaging Total Computer Backup. User Guide C6 Easy Imaging Total Computer Backup User Guide Clickfree and the Clickfree logo are trademarks or registered trademarks of Storage Appliance Corporation. Other product names used in this guide are recognized

More information