RoboLab Exercises (1)

Size: px
Start display at page:

Download "RoboLab Exercises (1)"

Transcription

1 RoboLab Exercises (1) Below are some simple exercises to get used to working with RoboLab and the LEGO robot. It should not take you long to complete these; answer the questions as you go. 1. The picture below shows a RoboLab program for the caterpillar robot: Program this in, then use the download program button to download it to your robot. Make sure that the robot is turned on and is facing the IR tower! The wait for 2 seconds gadget can be found in the wait-for toolbox. If you get stuck at any point, ask one of the available helpers for assistance. (a) When run, what does the robot do? (b) At which point in the above program is the robot when it is moving? 2. Remove the stop all motors gadget from the program, and download the new program to the robot: What now happens? 3. Modify your program so that the robot returns to its original starting position. You will need to add new gadgets to the above program to make it do this. Hint: try reversing the the direction of the motors (two of the gadgets above are motor A forward and motor B forward). Remember to make the robot stop once it has finished! 4. Program in the following: The power-level modifiers, can be found in the modifiers toolbox. These should be wired to the bottom-right corner of the motor gadgets. (a) What does the robot do now?

2 RoboLab Exercises (2) Here are some more advanced exercises, that make use of the touch sensor and looping structures. 1. Place a touch sensor on the front of your robot and connect it to the sensor port marked 1 (this is one of the gray terminals on the RCX brick). 2. Program the following: The wait for push gadget The input 1 modifier can be found in the wait-for toolbox. can be found in the modifiers toolbox. 3. Check that the program works as you expect: the robot should move forwards in a straight line until it bumps into something (the touch-sensor is pressed), and then stop. You may want to add some sort of bumper mechanism to your robot that pushes the touch sensor when the robot bumps into something parts are available from the front of the room. 4. Modify the program so that after bumping into something, the robot turns itself around (and stops). Hint: you can make the robot turn on the spot by moving one motor forwards and the other backwards. As a further exercise, make the robot back away (for 1 second) from the obstacle it bumped into before turning around and stopping. The program above does just one thing and then stops. In practice, it is often useful to have a program do the same thing over and over (looping). RoboLab provides these in the form of jumps, that can be found in the control structures toolbox. 5. Add a red jump and red land to your program, so that after it has bumped into something and turned around, the program jumps back to the beginning to do the same thing over and over again. The resulting behaviour should be bump and wander the robot moves forward until it hits something, turns away, and then moves forward again, repeating this cycle of actions indefinitely (or until the batteries run out!). 6. Save your program for later. You should save this on the Desktop, with a suitable name, or alternatively keep the window open in RoboLab. As an example of how to use these jumps, the following program makes the robot go forward for 2 seconds, stop for 1 second, then loop (moving forward for another 2 seconds): program jumps back to the beginning go forwards for 2 seconds stop for 1 second

3 RoboLab Exercises (3) Here are some more advanced exercises, that make use of the light sensor. 1. Attach a light sensor to the front of your robot using an l-bracket (so that the sensor is pointing at the ground, between 2-5 millimetres) and connect it to the sensor port marked 3 (this is one of the gray terminals on the RCX brick). The light sensor works by measuring the amount of light entering the sensor, giving a value between 0 (dark) and 100 (light). The sensor also emits light, with the intention being that it measures the amount of reflected light. 2. Collect one of the rectangle sheets from the front of the room. 3. Program in the following: The wait for dark gadget causes the program to wait until it becomes dark. More specifically, to wait until the value given by the light sensor goes below a certain threshold. The input 3 modifier can be found in the modifiers toolbox. Make sure that you have actually connected the light sensor to the right port on the robot (number 3)! The numeric constant modifier is used to specify the light sensor threshold value. Once you have placed the modifier on the canvas (it will show as white-on-black text), type in the value on the keyboard (50) and press return. 4. Place the robot within the rectangle and run the program. The intention is that the robot should drive forwards until its light-sensor reaches the edge of the rectangle (dark), at which point it should stop. If the robot doesn t do this (e.g. it stops immediately or doesn t stop at all), the threshold value will need adjusting. After your program has been run at least once, the RCX will know that a light-sensor is connected to input 3. To see the values being generated by the sensor, press the view button on the RCX brick until the indicator mark (on the LCD) is in-line with input 3. The centre of the LCD should then show the light-sensor value (updated continuously). Place the robot on the paper so that its light-sensor is over a white bit (the middle), and make a note of the value. Then move the robot so the light sensor is over a black bit (the border), and make a note of the value. A suitable value for the threshold is half-way between the two values you measured. view 5. Starting with the bump-and-wander program you created in exercise 2 (and hopefully saved!), modify the program so that it works with the light-sensor instead of the touch-sensor. Your robot should only bump-and-wander within the rectangle!

4 RoboLab Exercises (4) Here are some more advanced exercises that make use of the touch sensor, program control structures and additional LEGO components. 1. Improving on the bump-and-wander robot (exercise 2), modify the robot so that it has two bumpers and two touch-sensors, connected to inputs 1 and 2. You might need to get fairly creative with the LEGO in order to build the bumpers! 2. Write a new program that is able to respond to both touch sensors (bumpers) in the following ways: To start with, and by default, the robot should just move forwards. This can be done using the motor A forward and motor C forward gadgets. If the left bumper is triggered (button pressed), the robot should stop moving forwards and reverse to the left for 1 second. It should then resume its default behaviour of moving forwards. If the right bumper is triggered (button pressed), the robot should stop moving forwards and reverse to the right for 1 second. It should then resume its default behaviour of moving forwards. Unlike the previous exercises, you have to write a program that can respond to more than one event. The various wait-for gadgets (e.g. wait for push ) only wait for single events.. Although it is not particularly elegant, one solution is to have the program repeatedly check a particular sensor (or sensors). As an example, the following program runs motor A forwards until a touch sensor connected to input 1 is pressed, then the motor stops: The following program does exactly the same thing, but in a different way: The program above loops between the red jump and red land gadgets as long as the touch sensor is not pressed, determined using the touch sensor fork gadget. Extending this to deal with two touch sensors is not too difficult: This version loops between the red jump and red land as long as neither touch sensor is pressed. As soon as one of the touch sensors is pressed, the program will take the other path, and not jump back to the beginning.

5 RoboLab Exercises (5) Here are some more advanced exercises, that make use of the light sensor and program control structures. 1. Attach a light sensor to the front of your robot using an l-bracket (so that the sensor is pointing at the ground, between 2-5 millimetres) and connect it to the sensor port marked 3 (this is one of the gray terminals on the RCX brick). 2. Program the following: The light sensor fork and fork join gadgets can be found in the control structures toolbox. Use the numeric constant from the modifiers toolbox to specify the value for the light sensor the mid-point black/white value you determined in exercise Place the robot on one of the A3 checkerboard sheets (available from the front of the room) and run the program. (a) What does the robot do? (whilst it is on the checkerboard sheet!) 4. The program above, as it is, is not particularly good the robot will run off the checkerboard sheet before long. Modify the program so that the robot moves around just one square at a time. Hint: remove the wait for 2 seconds delay that is used to drive forwards (the first one), and add new gadgets after the light sensor fork that cause the robot to either wait for dark or wait for light, depending on which path it took.

6 RoboLab Exercises (6) Here are some more advanced exercises, that make use of the light sensor and program control structures. 1. In industrial applications, robots often follow marked paths on the ground. Attach a light sensor to the front of your robot using an l-bracket (so that the sensor is pointing at the ground, between 2-5 millimetres) and connect it to the sensor port marked 3 (this is one of the gray terminals on the RCX brick). 2. Determine a suitable threshold value for the light sensor explained in exercise (3). If your sensor is mounted in the same way as before, the value determined previously should work. 3. Write a program that makes the robot follow a line on a sheet of paper (available from the front). The simplest way to do this is by having the robot follow the edge of the line. Essentially: Go forwards, but bearing to the left, until the line is seen (dark). You can make the robot steer whilst going forwards by setting the power levels for the motors differently (e.g. 1 and 5). Continue going forwards, but bearing to the right, until the line is lost (light). Repeat from the start. You re on your own with this one, good luck! 4. Does the program you wrote do the job well? Are there any problems with it? 5. Using a second light sensor, construct a better line-following robot and program.

Lego Robot Tutorials Touch Sensors

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

More information

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

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

More information

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

Building Instructions: Maze Robot

Building Instructions: Maze Robot Building Instructions: Maze Robot Basic Design from: Building Robots with Lego Mindstorms Modifications by: David Wang Diagrams and Instructions by: David Wang Diagrams and Instructions generated by: MLCad,

More information

Your EdVenture into Robotics You re a Controller

Your EdVenture into Robotics You re a Controller Your EdVenture into Robotics You re a Controller Barcode - Clap controlled driving meetedison.com Contents Introduction... 3 Getting started... 4 EdVenture 1 Clap controlled driving... 6 EdVenture 2 Avoid

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

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

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

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

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

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

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

BASIC RULES OF CHESS

BASIC RULES OF CHESS BASIC RULES OF CHESS Introduction Chess is a game of strategy believed to have been invented more then 00 years ago in India. It is a game for two players, one with the light pieces and one with the dark

More information

How to Create a Resume Using Microsoft Word

How to Create a Resume Using Microsoft Word Microsoft Word Welcome to the resume-building process! A lot of job postings that you find online today are asking for an electronic resume. There are lots of different ways that you can go about creating

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

ROBOTICS AND AUTONOMOUS SYSTEMS

ROBOTICS AND AUTONOMOUS SYSTEMS ROBOTICS AND AUTONOMOUS SYSTEMS Simon Parsons Department of Computer Science University of Liverpool LECTURE 3 PROGRAMMING ROBOTS comp329-2013-parsons-lect03 2/50 Today Before the labs start on Monday,

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

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 Sensor Readings Gadget for Window 7. Version 1.0.0.5

The Sensor Readings Gadget for Window 7. Version 1.0.0.5 The Sensor Readings Gadget for Window 7 Version 1.0.0.5 Before you start: 1. You need the Virtual Coordinator Version 1.05.3 or above ready in the same computer or the other computer in the same network.

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

TEACHER S GUIDE TO RUSH HOUR

TEACHER S GUIDE TO RUSH HOUR Using Puzzles to Teach Problem Solving TEACHER S GUIDE TO RUSH HOUR Includes Rush Hour 2, 3, 4, Rush Hour Jr., Railroad Rush Hour and Safari Rush Hour BENEFITS Rush Hour is a sliding piece puzzle that

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

Analysis of Micromouse Maze Solving Algorithms

Analysis of Micromouse Maze Solving Algorithms 1 Analysis of Micromouse Maze Solving Algorithms David M. Willardson ECE 557: Learning from Data, Spring 2001 Abstract This project involves a simulation of a mouse that is to find its way through a maze.

More information

ScanPro 3000 High Definition Microfilm Scanner. Help Guide

ScanPro 3000 High Definition Microfilm Scanner. Help Guide ScanPro 3000 High Definition Microfilm Scanner Help Guide Table of Contents Getting Started 3 Loading the Film 4-5 Viewing Your Film 6-7 Motorized Roll Film Control 6 Crop Box 7 Using the Toolbar Controls

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

Programming the VEX Robot

Programming the VEX Robot Preparing for Programming Setup Before we can begin programming, we have to set up the computer we are using and the robot/controller. We should already have: Windows (XP or later) system with easy-c installed

More information

DVR GUIDE. Using your DVR/Multi-Room DVR. 1-866-WAVE-123 wavebroadband.com

DVR GUIDE. Using your DVR/Multi-Room DVR. 1-866-WAVE-123 wavebroadband.com DVR GUIDE Using your DVR/Multi-Room DVR 1-866-WAVE-123 wavebroadband.com Table of Contents Control Live TV... 4 Playback Controls... 5 Remote Control Arrow Buttons... 5 Status Bar... 5 Pause... 6 Rewind...

More information

About your ereader... 4

About your ereader... 4 Kobo Glo User Guide Table of Contents About your ereader... 4 Anatomy of your ereader... 5 Charging your ereader... 7 Using the touch screen... 8 Putting your ereader to sleep and waking it up... 10 Using

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

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE

LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE LESSON 7: IMPORTING AND VECTORIZING A BITMAP IMAGE In this lesson we ll learn how to import a bitmap logo, transform it into a vector and perform some editing on the vector to clean it up. The concepts

More information

Building a Better Robot

Building a Better Robot http://tinyurl.com/betterro Building a Better Robot Tips and Techniques for a great robot design Weight and Balance Too much weight on non-drive wheel(s) Hard to make turns Need more force to overcome

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 meetedison.com Contents Introduction... 3 Getting started... 4 Meet EdWare... 8 EdWare icons... 9 EdVenture 1- Flash a LED... 10 EdVenture 2 Beep!! Beep!!...

More information

SolidWorks Tutorial 3 MAGNETIC BLOCK

SolidWorks Tutorial 3 MAGNETIC BLOCK SolidWorks Tutorial 3 MAGNETIC BLOCK Magnetic Block In this exercise you will make a magnetic block. To do so, you will create a few parts, which you will assemble. You will learn the following new applications

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

TETRIX Add-On Extensions. Encoder Programming Guide (ROBOTC )

TETRIX Add-On Extensions. Encoder Programming Guide (ROBOTC ) Introduction: In this extension, motor encoders will be added to the wheels of the Ranger Bot. The Ranger Bot with Encoders will be programmed to move forward until it detects an object, turn 90, and move

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

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2006 Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil OBJECTIVES 1. To learn how to visualize magnetic field lines

More information

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5

FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5 Physics 161 FREE FALL Introduction This experiment is designed to study the motion of an object that is accelerated by the force of gravity. It also serves as an introduction to the data analysis capabilities

More information

Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac)

Quick Guide. Passports in Microsoft PowerPoint. Getting Started with PowerPoint. Locating the PowerPoint Folder (PC) Locating PowerPoint (Mac) Passports in Microsoft PowerPoint Quick Guide Created Updated PowerPoint is a very versatile tool. It is usually used to create multimedia presentations and printed handouts but it is an almost perfect

More information

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil

Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2009 Experiment 3: Magnetic Fields of a Bar Magnet and Helmholtz Coil OBJECTIVES 1. To learn how to visualize magnetic field lines

More information

Lab 3 Microcontroller programming Interfacing to Sensors and Actuators with irobot

Lab 3 Microcontroller programming Interfacing to Sensors and Actuators with irobot 1. Objective Lab 3 Microcontroller programming Interfacing to Sensors and Actuators with irobot In this lab, you will: i. Become familiar with the irobot and AVR tools. ii. Understand how to program a

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Relational Queries Creating a query can be a little different when there is more than one table involved. First of all, if you want to create a query that makes use of more than

More information

ADDING and/or DELETING PIN NUMBERS (Plus other simple programming commands) in My DK-16 or DK-26 DIGITAL KEYPAD

ADDING and/or DELETING PIN NUMBERS (Plus other simple programming commands) in My DK-16 or DK-26 DIGITAL KEYPAD ADDING and/or DELETING PIN NUMBERS (Plus other simple programming commands) in My DK-16 or DK-26 DIGITAL KEYPAD A recurring call that we get here at Securitron Technical Support is from end users of our

More information

How to Build a Simple Pac-Man Game

How to Build a Simple Pac-Man Game How to Build a Simple Pac-Man Game For today's program, we are going to build a simple Pac-Man game. Pac-Man was one of the very first arcade games developed around 1980. For our version of Pac-Man we

More information

Alarm Security Kit - NVR

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

More information

Intermediate STEMSEL Project 6 Light Sensor Alarm

Intermediate STEMSEL Project 6 Light Sensor Alarm Intermediate STEMSEL Project 6 Light Sensor Alarm Problem What items are important for survival in an emergency situation? How can we secure our goods? We want to create an alarm that can work even in

More information

Mimio Interactive. Pad and Bar. Technology Integration Department. Last update: 2/15/2013

Mimio Interactive. Pad and Bar. Technology Integration Department. Last update: 2/15/2013 Mimio Interactive Technology Integration Department Last update: 2/15/2013 Getting Started 1. Mimio Bars or Pads (MS Science, and HS) may be checked out from the library. 2. You must have mimio software

More information

Getting to know your computer

Getting to know your computer Getting to know your computer Introduction This is intended to be a very basic introduction to personal computers (PCs) which will enable you to: switch them on and off understand what is shown on the

More information

Microsoft PowerPoint Exercises 4

Microsoft PowerPoint Exercises 4 Microsoft PowerPoint Exercises 4 In these exercises, you will be working with your Music Presentation file used in part 1 and 2. Open that file if you haven t already done so. Exercise 1. Slide Sorter

More information

CREATE A 3D MOVIE IN DIRECTOR

CREATE A 3D MOVIE IN DIRECTOR CREATE A 3D MOVIE IN DIRECTOR 2 Building Your First 3D Movie in Director Welcome to the 3D tutorial for Adobe Director. Director includes the option to create three-dimensional (3D) images, text, and animations.

More information

TUTORIAL 4 Building a Navigation Bar with Fireworks

TUTORIAL 4 Building a Navigation Bar with Fireworks TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar

More information

Tutorial 1. Introduction to robot

Tutorial 1. Introduction to robot Tutorial 1. Introduction to moway robot www.moway-robot.com 1 Index INTRODUCTION... 2 MOWAY ROBOT... 2 MOWAY PERSON COMPARISON... 6 HEARING SENSE EXAMPLE... 11 VISION EXAMPLE... 12 TOUCH SENSE EXAMPLE...

More information

The Richard Pate School. Draft Year 4 Scheme of Work for Scratch

The Richard Pate School. Draft Year 4 Scheme of Work for Scratch The Richard Pate School Draft Year 4 Scheme of Work for Scratch Marcus Gilvear July 2014 (Acknowledgements: Phil Bagge and Duncan Hooper) Re Scratch: This work is licensed under the Creative Commons Attribution-NonCommercial

More information

Laser Cutter User Manual

Laser Cutter User Manual Laser Cutter User Manual frequently asked questions... the laser is cutting weird! it s cutting a thick line or not cutting through at all! Table Of Contents Section 1: Materials Guide 1.1 Can I Cut this?

More information

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

THE WINNING ROULETTE SYSTEM.

THE WINNING ROULETTE SYSTEM. THE WINNING ROULETTE SYSTEM. Please note that all information is provided as is and no guarantees are given whatsoever as to the amount of profit you will make if you use this system. Neither the seller

More information

Integrated Accounting System for Mac OS X

Integrated Accounting System for Mac OS X Integrated Accounting System for Mac OS X Program version: 6.3 110401 2011 HansaWorld Ireland Limited, Dublin, Ireland Preface Standard Accounts is a powerful accounting system for Mac OS X. Text in square

More information

Action settings and interactivity

Action settings and interactivity Interactivity in Powerpoint Powerpoint includes a small set of actions that can be set to occur when the user clicks, or simply moves the cursor over an object. These actions consist of links to other

More information

Kodu Curriculum: Single Session Intro

Kodu Curriculum: Single Session Intro Kodu Curriculum: Single Session Intro Table of Contents Kodu Curriculum: Single Session Intro... 2 Kodu Description... 2 Teaching with Kodu... 2 Basic Navigation (5 min)... 3 Creating a Simple Program

More information

Linux provides two basic types of interface for you to use when working with your

Linux provides two basic types of interface for you to use when working with your CHAPTER 6 Using Your Desktop Linux provides two basic types of interface for you to use when working with your computer: GUI (graphical user interface) and CLI (command-line interface). An overview of

More information

MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS

MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS MASKS & CHANNELS WORKING WITH MASKS AND CHANNELS Masks let you isolate and protect parts of an image. When you create a mask from a selection, the area not selected is masked or protected from editing.

More information

Start Here. BrightLink Interaction. 1 Connect your computer and turn on the projector

Start Here. BrightLink Interaction. 1 Connect your computer and turn on the projector BrightLink Interaction The BrightLink interactive pens turn any wall or table into an interactive area, either with or without a computer. With a computer, you can use Easy Interactive Tools (dual pens).

More information

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

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

More information

Updox, LLC support@updox.com 614-547-9635

Updox, LLC support@updox.com 614-547-9635 Set Up and User Guide Version 3.2.2 Updox, LLC support@updox.com 614-547-9635 Table of Contents Creating and Managing Internal Updox Users... 3 How to Send and Receive Faxes... 4 How to Import Files into

More information

4 Wire / 5 Wire Resistive Touchscreen

4 Wire / 5 Wire Resistive Touchscreen 4 Wire / 5 Wire Resistive Touchscreen Table of Contents Chapter 1 Introduction. 3 1.1 4 Wire Resistive Touch Screen.. 3 1.1.1 4 Wire Resistive Touch Sensor.. 3 1.1.2 4 Wire Resistive Controller.. 4 1.2

More information

Introduction to programming moway

Introduction to programming moway moway Contents Contents... 1 Introduction... 2 Flowcharts... 2 Movement blocks... 5 Conditionals... 6 Loops... 7 AND/OR Operators... 8 Setting flowcharts in order... 10 www.moway-robot.com 1 Introduction

More information

How to Use the Drawing Toolbar in Microsoft Word

How to Use the Drawing Toolbar in Microsoft Word How to Use the Drawing Toolbar in Microsoft Word The drawing toolbar allows you to quickly and easily label pictures (e.g., maps) in a MS Word file. You can add arrows, circle spots, or label with words.

More information

Building A Computer: A Beginners Guide

Building A Computer: A Beginners Guide Building A Computer: A Beginners Guide Mr. Marty Brandl The following was written to help an individual setup a Pentium 133 system using an ASUS P/I- P55T2P4 motherboard. The tutorial includes the installation

More information

PRINTER DRIVER GUIDE (KODAK 305 Photo Printer)

PRINTER DRIVER GUIDE (KODAK 305 Photo Printer) PRINTER DRIVER GUIDE () Microsoft, Windows, Windows XP, Windows Vista and Windows 7 are registered trademarks of Microsoft Corporation in the United States and/or other countries. Adobe, Adobe Photoshop

More information

RS232/DB9 An RS232 to TTL Level Converter

RS232/DB9 An RS232 to TTL Level Converter RS232/DB9 An RS232 to TTL Level Converter The RS232/DB9 is designed to convert TTL level signals into RS232 level signals. This cable allows you to connect a TTL level device, such as the serial port on

More information

The Rush 24/7 Podcast for itunes 9

The Rush 24/7 Podcast for itunes 9 The Rush 24/7 Podcast for itunes 9 System Requirements In order to run the Rush 24/7 Podcast for itunes 9, please see the system requirements here: http://www.apple.com/itunes/download/ Initial Setup of

More information

Electric Landing Gear controllers and sequencer LGC12 / LGC 13C

Electric Landing Gear controllers and sequencer LGC12 / LGC 13C Electric Landing Gear controllers and sequencer LGC12 / LGC 13C Users Guide. Torrent d en Puig, 31. 08358, Arenys de Munt, Barcelona,Catalonia,Spain E-mail: info@xicoy.com. Fax: +34 933 969 743 web: www.xicoy.com

More information

WakeMyPC technical user guide

WakeMyPC technical user guide USER GUIDE WakeMyPC technical user guide WakeMyPC is the name for the new Wake-on-LAN (WoL) service that allows you to boot your office PC or Apple Mac from home. With this new service you no longer need

More information

Using VLOOKUP to Combine Data in Microsoft Excel

Using VLOOKUP to Combine Data in Microsoft Excel Using VLOOKUP to Combine Data in Microsoft Excel Microsoft Excel includes a very powerful function that helps users combine data from multiple sources into one table in a spreadsheet. For example, if you

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Hands-on Practice. Hands-on Practice. Learning Topics

Hands-on Practice. Hands-on Practice. Learning Topics Using Microsoft PowerPoint Software on a SMART Board Interactive Whiteboard You make presentations for a reason to communicate a message. With a SMART Board interactive whiteboard, you can focus the attention

More information

ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15

ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15 ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15 Apple, ipad, iphone, and ipod touch are trademarks of Apple Inc., registered in the U.S. and other countries. ios is a trademark

More information

ShoutCast v2 - Broadcasting with Winamp & ShoutCast DSP Plugin

ShoutCast v2 - Broadcasting with Winamp & ShoutCast DSP Plugin ShoutCast v2 - Broadcasting with Winamp & ShoutCast DSP Plugin In this tutorial we are going to explain how to broadcast using the ShoutCast DSP Plugin with Winamp to our ShoutCast v2 running under CentovaCast

More information

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

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

More information

SMART Notebook: Basics and Application

SMART Notebook: Basics and Application SMART Notebook: Basics and Application Table of Contents TESS Connection... 3 Version Number... 3 Tour of the Window... 5 The Main Toolbar... 5 The Sidebar... 18 Page Sorter... 19 The Gallery... 23 Searching...

More information

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved.

Snagit 10. Getting Started Guide. March 2010. 2010 TechSmith Corporation. All rights reserved. Snagit 10 Getting Started Guide March 2010 2010 TechSmith Corporation. All rights reserved. Introduction If you have just a few minutes or want to know just the basics, this is the place to start. This

More information

Getting Started in Tinkercad

Getting Started in Tinkercad Getting Started in Tinkercad By Bonnie Roskes, 3DVinci Tinkercad is a fun, easy to use, web-based 3D design application. You don t need any design experience - Tinkercad can be used by anyone. In fact,

More information

Mathematical goals. Starting points. Materials required. Time needed

Mathematical goals. Starting points. Materials required. Time needed Level A0 of challenge: D A0 Mathematical goals Starting points Materials required Time needed Connecting perpendicular lines To help learners to: identify perpendicular gradients; identify, from their

More information

edgebooks Quick Start Guide 4

edgebooks Quick Start Guide 4 edgebooks Quick Start Guide 4 memories made easy SECTION 1: Installing FotoFusion Please follow the steps in this section to install FotoFusion to your computer. 1. Please close all open applications prior

More information

Acrobat PDF Forms - Part 2

Acrobat PDF Forms - Part 2 Acrobat PDF Forms - Part 2 PDF Form Fields In this lesson, you will be given a file named Information Request Form that can be used in either Word 2003 or Word 2007. This lesson will guide you through

More information

Using the HOCK flash cards in Anki on Windows, Mac, mobile and web

Using the HOCK flash cards in Anki on Windows, Mac, mobile and web Overview Anki is a program designed to provide an interactive flash card experience by intelligently scheduling cards based on how well you already know the content of each card. Rather than simply acting

More information

Basic instructions. Move. Move n steps forward. adelante(n) Move n steps backward. atras(n) Turn left over 90 degrees. izquierda()

Basic instructions. Move. Move n steps forward. adelante(n) Move n steps backward. atras(n) Turn left over 90 degrees. izquierda() Basic instructions In each domain there are a fixed number of basic instructions you may use to write a program. You're only allowed to use this instructions directly when writing the script. For our robot

More information

Analog control unit for mobile robots

Analog control unit for mobile robots Analog control unit for mobile robots Soldering kit for experimentation For Fischertechnik robots and others Most diverse functions Requires no programming Patented sensor technology Summary We are pleased

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

Aeries Student Information System Attendance Notes October 3, 2008

Aeries Student Information System Attendance Notes October 3, 2008 Aeries Student Information System Attendance Notes October 3, 2008 The Attendance Notes will give schools the ability to store Attendance Notes within Aeries from the Period and Daily Attendance form.

More information

Left Hand Limit Switch. Housing. Left Hand. Connections. Motor Connector BROWN PURPLE GRAY BLACK DARK BLUE BLACK BROWN BROWN LIGHT BLUE.

Left Hand Limit Switch. Housing. Left Hand. Connections. Motor Connector BROWN PURPLE GRAY BLACK DARK BLUE BLACK BROWN BROWN LIGHT BLUE. LIGHT BLUE GRAY PURPLE Circuit Breaker Intput Circuit Breaker Output #1 Relay Left Hand Limit Switch Housing Left Hand Motor Connector Right Hand Limit Switch on Radiator Support Right Hand Limit Switch

More information

Presents. AccuDraw. Instructor Pam Roberts pamroberts@cadassist.com www.cadassist.com

Presents. AccuDraw. Instructor Pam Roberts pamroberts@cadassist.com www.cadassist.com Presents AccuDraw Instructor Pam Roberts pamroberts@cadassist.com www.cadassist.com ACCUDRAW AccuDraw gives user an easy way to input accurate points. By default with MicroStation V8 AccuDraw will automatically

More information

Tutorials Drawing a 555 timer circuit

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

More information

From the list of Cooperative Extension applications, choose Contacts Extension Contact Management System.

From the list of Cooperative Extension applications, choose Contacts Extension Contact Management System. 1 Illustrated Guide to Creating Labels with Word for Mac 2008 for Mailing Lists in the Extension Contacts Database Note: With most computer tasks, there are multiple ways to achieve the same results. Substitute

More information

63720A IN I S N T S R T U R C U T C I T O I N B O O N B O O K O L K E L T E

63720A IN I S N T S R T U R C U T C I T O I N B O O N B O O K O L K E L T E 63720A INSTRUCTION BOOKLET 2-5 Wireless DS Single-Card Download Play THIS GAME ALLOWS WIRELESS MULTIPLAYER GAMES DOWNLOADED FROM ONE GAME CARD. 2-5 Wireless DS Multi-Card Play THIS GAME ALLOWS WIRELESS

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

INSTALLATION MANUAL VEHICLE SECURITY SYSTEM CE-SS200

INSTALLATION MANUAL VEHICLE SECURITY SYSTEM CE-SS200 INSTALLATION MANUAL VEHICLE SECURITY SYSTEM CE-SS200 FUSION CULTURE TABLE OF CONTENTS There s no point doing something if no one notices. We ve always believed the way to make things happen is by getting

More information