GEN II Robot Soccer NXT-G Training Curriculum (for pulsed ball) Brian Thomas

Size: px
Start display at page:

Download "GEN II Robot Soccer NXT-G Training Curriculum (for pulsed ball) Brian Thomas"

Transcription

1 GEN II Robot Soccer NXT-G Training Curriculum (for pulsed ball) Brian Thomas RoboCup Junior Australia Inc Copyright

2 GEN II Robot Soccer Training Overview Welcome! The aim of this curriculum is to guide you through a sequence of programming steps in order to allow a robot to compete in RoboCup Junior and WRO. Every attempt has been made to keep these steps simple and easy to attain. Consequently, modifications may be needed to program a more efficient robot for the competitions. You will find that GEN II is no harder than any other forms of Robot Soccer or other robot competitions. It is actually easier for beginners to enter and compete successfully in Soccer! They can then raise their expectations and skills as they progress. The GEN II field just adds a further dimension of control for the robots and programmers when they get to that stage. In short, it allows for advanced robots to have more control over where they are on the GEN II field. An added advantage is that the GEN II mat is very classroom friendly, you just have to roll it out and then start playing. The sequence of this Curriculum starts with programming for any Soccer Playing Robot, signified by red coloured headings. This will allow any robot to successfully play soccer on any field type. The controlling aspect of any robot soccer game is the ball. If the ball is on the field then so should the robots be, chasing it. After this GEN II units with green headings have been included show the tricks to make robots more efficient while playing on a GEN II Field. It is important that students work through this curriculum sequentially. They need to understand the differences that may be required for their individual robots. Students have often gone straight to the more complex programming, become lost and then disillusioned. Students who work through the curriculum enjoy the success at each step, and carry with them knowledge that will eventually allow them to develop their own algorithms programs. Very few students complete this curriculum in a single year s preparation. They set their goals at a certain level and return the following year with their goal being the next level. This is usually with a different robot, so they need to reprogram anyway. This curriculum essentially deals with programming the striker robot. If you wish to have a goalie, the programming for a goalie is very easy after mastering the striker. You use the same principles, but limit the robots movement and for every forward command, have a reverse. RoboCup Junior Australia Inc Copyright

3 An NXT Soccer Robot can be built from Damien Kee s plans found at Sensors ports and locations may have to be modified to suit this curriculum. Further information can be obtained from our web site Please Note These training notes are the property of RoboCup Junior Australia Inc. All or part of these notes are not to be copied or used for commercial gain without the permission of the RoboCup Junior Australia Inc Committee. Contact: b.thomas@ccg.vic.edu.au **LEGO, Mindstorms and Robolab are Registered Trademarks of the LEGO Corporation RoboCup Junior Australia Inc Copyright

4 Finding the Ball: The Mexican Wave Overview The first part of playing any ball game is to find and chase the ball. This unit allows your robot to chase the ball when it is in front of the robot. If you get all of the robots in the class, you can create a Mexican wave of robots. It is assumed that you have some prior knowledge of programming. Robot Setup All that you need is motors plugged into outputs A and C and the IR V2 Sensor plugged into Sensor Port 1. You will also need to download the IR V2 tile. Just go to and follow the instructions. Programming Create the following simple program that will allow you to check that everything is working OK. In this program, the IR Seeker is just waiting for a reading from the ball and then the robot will be told to move forward The Wait(egg timer) icon should be set to IR Seeker V2 Sensor plugged into Port1. The Mode should be set to AC(pulsed) The motor icon is set to Inputs A and C, Power level 100% and Duration 1 second. RoboCup Junior Australia Inc Copyright

5 Save this program as MW. Download this to your robot. Push the orange button on the NXT 3 times until the MW Run file appears. Place all of the class robots with their backs to the classroom wall Push The Orange Button on the robots. Nothing should happen. The teacher will turn the ball on and roll the ball across the classroom. Did you get a Mexican Wave? Try rolling the ball further away from the robots. Which robot has the best range? Notes The pulsed ball has an incredible range and also can be sensed by reflection off walls. Experiment with the location of your IR V2 sensor and maybe shield it with black tape to reduce the influence of reflections and still maintain the excellent range. Extension The IR V2 sensor gives the following readings. Introduce a Switch into your program to perform the same task, but with a little more control. Start by inserting a loop. It will already be set to Unlimited. RoboCup Junior Australia Inc Copyright

6 To get the other tiles, you will need to start with a Complete Palette and then go to the Advanced Settings to find the IR V2 Sensor Tile Complete Palette Advanced Settings IR V2 Tile Then go to Data and Select the Range Tile Data Select the same setting for the IR V2 as above Select a range of 4-6 for the Range tile. Range Now insert the Switch Tile which can be found next to the Loop Tile in the Flow Palette Set the Switch to Value and Logic Use the same Motor Controls as before. Wire up the Tiles as shown. The drop down controls can be obtained by hovering over the bottom left hand corner of a tile and then clicking when the drop down tool appears. Repeat your Mexican Wave. The robots should now only start moving when the ball is directly in front of them. RoboCup Junior Australia Inc Copyright

7 Simple Soccer Player Overview You will now combine ball detection and the switch program from the previous unit to make an efficient soccer playing program. Robot Setup All that you need is motors plugged into outputs A and C and the IR V2 Sensor plugged into Sensor Port 1. Method Insert a Loop and Motor Control into the program from the previous unit. Set the Loop to run until the IR V2 detects the ball. Set the Motors A and C so that the robot turns to the right at 75% power. Adjustments for Improvement A fast robot will beat other robots to the ball. However if a robot is scanning too quickly it may scan past the ball and miss it. Increase the speed of the turn until the robot scans past the ball. Go back to your previous setting and use this as your optimum scan speed. This is the Simple Soccer Player. It will allow you to have fun and play a game of GEN II Soccer. Save it and keep it in case your more complex programs fail. RoboCup Junior Australia Inc Copyright

8 Ball Chase Overview You are now ready use the full facilities offered by the IR V2 to keep the ball under control once you have it, and dribble it down the field. There are two possible programming options and they both work. Robot Setup All that you need is motors plugged into outputs A and C and the IR V2 Sensor plugged into Sensor Port 1. Method Option 1: Switch Method Insert two Switches together inside of an Unlimited Loop RoboCup Junior Australia Inc Copyright

9 Insert the IR V2 Sensor Tile and set it up as in the previous unit. This time select the Compare Tile from the Data Palette For the First Icon select Greater than 3 For the second Icon select Greater than 6 Wire up the data ports as shown Set the bottom Motor Tile, so that the robot turns left for.2 Seconds and Coast Set the top Motor Tile, so that the robot turns right for.2 Seconds and Coast Set the middle Motor Tile to forward for 1 Second and Brake. The robot will now respond to IR V2 readings in the following way. 0-3 Turn Left 4-6 Straight Ahead 7-9 Turn Right The robot should now scan for the ball if it cannot see it. As soon as it sees the ball it will chase it down the field. Option 2: Data Method This method may take a little more to get your head around, but it works really well. It involves the manipulation of data coming from the IR V2 to control the steering of the motors. The steering control operates on readings of +100 to turn full right and -100 to turn full left. Data input of 0 will have the robot running straight ahead. To convert the IR V2 data to this, you must subtract 5 from the reading. This will give a result of 0 is the ball is straight ahead. 0 to -5 if it is to the left and 0-5 if it is to the right. To convert these figures to the range required for the steering, you must multiply them by 20. You will find the Math blocks in the Data Palette. RoboCup Junior Australia Inc Copyright

10 Steering Control Wire it up to the correct data points and run it How good is that!!! Create your Own Block In order to reduce the number of icons later, you can create your own block. This is done by clicking and dragging and selecting all of the icons inside of the loop, but not the loop. Now click on the Create My Block on the tool bar. Just follow the instructions after that. Name the block Ball Chase. You can adjust settings inside of the block just by double clicking on it. You can now copy and paste this into any program where you want the robot to chase the ball. Cool Huh??? RoboCup Junior Australia Inc Copyright

11 Smooth Simon Soccer Player Overview Have you noticed that your Soccer robot doesn t dribble the ball smoothly and tends to weave backwards and forwards. If you try to build a program for every one of the IRV2 sensor directions using the greater than filter you program will take up most of your programming space. The following Tab method allows you to fit all of the IRV2 directions in one switch. Robot Setup You will now need to modify your robot to retain the ball. Read the rules regarding robot size and ball capturing zones and build a bull bar that will help to control the ball. You still need to have motors plugged into outputs A and C and the IR V2 Sensor plugged into Sensor Port 1. Method Option 1: Tab Method First you need to set up your Tab box. You need to allocate a tab for each of the 0-9 IRV2 readings. Start a new program and insert a loop. Add an IRV2 tile inside the loop Add a switch Set the switch to Value and Number as shown below. Now deselect the flat view option by clicking on the tick. You can now add more tabs by clicking on the Add a new condition button You will need to add a total of 10 conditions. The left hand column is the condition number and the right hand column shows the IRV2 reading number Wire the sensor to the switch. RoboCup Junior Australia Inc Copyright

12 Your program looks a bit like this: Don t panic that you can t see all of the tabs as they cannot fit on top of the switch. Click on the first tab and this corresponds to an Irv2 reading of 0. This indicates that your robot can t see the ball. This rarely happens in a game and usually only occurs when a robot is facing a wall. It is always a good idea to have a reverse command in a program for exactly this situation. Add two Move icons Set the first to reverse for.5 seconds Set the second to turn for around.3 seconds. You will now notice that the rest of you Tabs are now visible Now add a Move tile to the rest of the remaining conditions Start off with each at 75% power and unlimited duration. Now you can adjust the steering on each depending on the direction that the ball is in. These conditions will vary from robot to robot depending on wheel size and turning circle. Examples are given below. RoboCup Junior Australia Inc Copyright

13 Reading 1: Reading 2: Reading 3 Full Turn Left 1 click in from full turn 3 Clicks in from Full Turn Reading 4: Reading 5 Reading 6: 2 clicks left from Straight ahead 2 clicks right from Straight ahead Full Power Straight ahead Reading 7: Reading 8: Reading 9: 3 Clicks from Full Turn 1 click from Full Turn Full Turn right Reading 9 is a bit more difficult to select as its tab is not shown on the switch Select the switch Scroll down your tabs menu Select the tab for Reading 9 Don t forget to wire the sensor to the switch. You will need to test and adjust these readings to best suit your robot. RoboCup Junior Australia Inc Copyright

14 Compass 1: Ball Avoidance Overview You are now able to look for the ball and kick it. The only thing left is to make sure that you will kick it in the right direction. Therefore you must use your compass sensor to make sure you are kicking in the right direction and not goals for the opposition. Before using the compass sensor, you must devise tactics to avoid the ball when it is detected but the robot is heading in the wrong direction. Ball The diagram above shows the desired path when the robot is kicking from right to left and is stuck on the wrong side of the ball. The robot must trace a path that takes it past the ball and quickly begin a scan that will have it approaching the ball from the right direction. 1. The robot senses the ball. 2. The robot checks its compass to see if it is kicking the right direction. 3. It finds it is on the wrong side of the ball 4. The robot turns 90 degrees right. 5. The robot traces a circle approximately 50 cm in diameter. 6. The robot makes a short reverse to free it, if it has become stuck. Important! This is not easy as the path varies from robot to robot and changes as battery levels change. RoboCup Junior Australia Inc Copyright

15 Method A sample program for Domabot can be seen below. Start with the robot turning right for.2 sec at full power Then veer left for about 2 sec A quick reverse for.3 sec to free it if it is stuck. Load this program and repeatedly test it with the ball(turned off) starting at different distances between 20cm and 70cm from the ball. Experiment by changing the different times that the robot is supposed to turn and circle the ball The robot should just go past the ball without touching it and finish behind the ball. This takes time to perfect this,but it is important to persevere with it. Create your Own Block In order to reduce the number of icons later, you can create your own block. This is done by clicking and dragging to select all of the motor icons. Now click on the Create My Block on the tool bar. Just follow the instructions after that. Name the block Ball Avoid. You can adjust motor settings in the block just by double clicking on it. Cool Huh??? RoboCup Junior Australia Inc Copyright

16 Programming for the Compass Sensor: Student s Notes Overview This unit introduces a compass switch that will allow the robot to chase the ball if it is facing in the correct direction and use ball avoid if it is facing the opponents goal. This will allow your robot to be very competitive at the top level of RoboCup Junior. Using the Compass Sensor Make sure that you read all instructions before using the Hitechnic Compass Sensor. You will need to go to the higher level of programming palettes. Just click on the Complete Pallette icon at the bottom left of your screen. Complete Palette You may need to download the compass sensor icon from the Hitechnic web site. Follow all instructions closely and you should be able to find a new Compass Sensor Icon in your Advanced Palette of your NXT-G Controls. Robot Setup The compass sensor can be plugged into sensor port 2 of the NXT. The ball sensor should be plugged into Sensor Port 1. The down light sensor should be plugged into Sensor Port 3. The down sensor is required to detect colours on the GEN II field. Students have found it is advantageous to have a means of zeroing the compass on the robot. They use a turntable that can be locked with a gear. RoboCup Junior Australia Inc Copyright

17 Keep in mind that some compasses have a bit of lag and take time to catch up with a spinning robot. You will be able to minimise this effect by making sure that the scan is in an anticlockwise direction. Remember to locate your compass as far away from motors and motor wires as possible, as these tend to create their own magnetic fields. The easiest way to zero your compass sensor is to: Go back to the view function. Select Ultra Sonic cm sensor plugged into Port 2. It should change its reading from as you turn the robot around. Start with your robot facing the direction that you want to kick. Turn it clockwise to face right angles to the goal. Rotate your compass on the robot until it is reading 0 degrees. You will now find that with your Compass Sensor icon, less than 180 degrees is the wrong direction. Greater than 180 degrees will be facing your goal. Your Goal / Opponents Goal RoboCup Junior Australia Inc Copyright

18 Programming This unit will incorporate a Compass Sensor Switch with the Ball Avoid Block from the previous unit, and add it to a Simple Soccer Player Program. This program, if run properly will allow you to be very competitive in RoboCup Junior or WRO competitions. Create a Simple Soccer Player program from earlier units: The robot should be able to scan and chase the ball consistently Firstly create some more room on your screen by creating a single view of your IR V2 Sensor Switches in the simple Soccer Player Program. This is done by selecting the Light Sensor Switch and unticking the Flat View option. You made need to select the switch to find this option. Deselect the Flat View option and then select IR V2. You should end up with something like this. Flat View Tick Box You change which part of the switch you are viewing by clicking on the display icons. RoboCup Junior Australia Inc Copyright

19 The only time you can check the compass is when the ball is in front of the robot. This is when the IRV2 reading is 4, 5 or 6, or when the robot is going straight ahead to chase the ball. Now simply insert a Compass Switch in any of the previous programs where the robot is being told to go straight forward. After highlighting the switch, select the following from your options: Compass Sensor Flat View Sensor Port 2 Absolute Reading Inside Range Adjust the Range Sliders to degrees. Place the Motor Ball Chase icon into the upper branch of the switch. Copy and paste your Ball Avoid tile or the motor icons into the lower branch. Put a Sound in before the ball avoid and deselect Wait for Completion It should look something like this. RoboCup Junior Australia Inc Copyright

20 Deselect flat view on the second switch and the whole program will look like this: Notes The ball avoidance will have to be varied for different robots so that they most efficiently avoid the ball. You may have to slow down the turning speeds as the compass need time to catch up. RoboCup Junior Australia Inc Copyright

21 Super Soccer Player Overview You will by now have noticed that after the ball avoid, the robot rarely lines up directly in line with the goal. Goals are missed even though the robot has detected the ball directly in front. This program will tell the robot to continue to avoid the ball until it is directly in line with the goals. Similar to high performance cars, this is a high performance program is more susceptible to things going wrong. It is recommended that all of the simpler programs are mastered before attempting this program. The operator need to have solid experience beforehand to recognise problems and to trouble shoot them Robot Set-up IR V2 sensor(ball) Port 1 Compass Sensor Port 2 Programming Start with the ball chase program from the previous unit. Add a Compare Block Set this to A Equal to 5 Add a Logic Switch On the True Branch Insert a Sound Block Select a musical note and remember to untick the Wait for Completion box. If you run the program, it will chase the ball make a sound when the IR V2 has a reading of 5. This corresponds to the robot facing directly at the ball. It is at this stage that you want the robot to check the compass sensor. RoboCup Junior Australia Inc Copyright

22 Untick Flat View for the Logic Switch. It should now look like this: Delete the Sound Block In its place add a Compass Sensor Block Set the range to the direction that is kicking directly towards your goals. From previous units, this would be degrees. Add a Logic switch It will now look like this: RoboCup Junior Australia Inc Copyright

23 If the Compass Logic switch is False, then the robot is not facing towards goal. All that you need to do now is to get the robot to work its way around the ball without touching it. This is simply done by getting the robot to turn right for about 0.3 seconds and then go forward for 1 second. Notes Although this program looks good when testing a robot on its own, it is difficult to get working totally consistently in a game situation. You must keep testing and making minor adjustments for your robot. You must be aware that any stray IR must be eliminated, as the robot will tend to chase this. This can be done by changing the position of your IR V2 on the robot and testing. You can also limit the range of vision of the IR V2 by creating blinkers by sticking black tape to the front of the IR V2. You may also need to limit the speed that the robot scans for the ball, if it keeps on scanning past it. That s it, now to work on using the colours of the GEN II field. RoboCup Junior Australia Inc Copyright

24 NXT GEN II Simple Soccer Player Overview This program shows how simple it is to adapt a program to GEN II Soccer. All you need to do is to create a working soccer program and then insert a couple measures that interrupt a forward moving robot when it passes into the white field surrounds. The down sensor will detect the outer border with a high reading (over 50 in this case) and reverse back onto the playing area. Robot Set-Up The IR V2 sensor for ball sensing is plugged into Input Port 1 The compass sensor is plugged into Input Port 2 The downward light sensor is plugged into Input Port 3. Programming Start with the Super Soccer Player Program or Simple Soccer Player from above. Select the control on the Main Loop Change this to Loop While, Light Sensor in Port 3 is Less than 50. Add another Loop to the program. This Loop should be set to Unlimited. Select the original loop and drag it inside of the second loop. RoboCup Junior Australia Inc Copyright

25 Add a sound. The note High C is good for a Truck Reverse type sound. Make sure that you deselect Wait for Completion. Add a Motor Reverse for 1 second and a Turn Left for seconds after the original loop. Now if the robot moves forwards, it will do so inside of the Light Sensor Loop while constantly checking Sensor Port 3 to see if it is out. If the robot does go out, it will make a truck reverse beep, execute a quick reverse and return back to its normal program. Remember the ball is the controlling factor in GEN II so the robot should just about always chase it within the borders of the field anyway. How easy is it to play GEN II??? RoboCup Junior Australia Inc Copyright

26 NXT GEN II With Colour Filter Overview To program a robot that finesses its way around a field, you need to introduce a number of options to the robot when it approaches the ball. The programs to date have involved switches where there has been a choice of only two options. By linking more switches together, you can increase the number of options depending on where the robot is at the time. This program introduces the options for the robot depending on which part of the GEN II field it has found the ball. The robot will attempt to work the ball back to the central corridor and then move it directly down the field. This is a very high performance program and is quite technical to trouble shoot. This is for experienced programmers only and you need to fully understand all of the preceding programming steps. This will also need to have two programs, one for each direction the robot is kicking ie dark green on the right or left when you are facing the goal you are kicking to. This program will be designed for a robot kicking with the dark green on the right. Programming Start with the Super Soccer Player program with the additional loops from above. Note that this view shows the True for the First Switch and Second Switches. This will occur when the robot is facing toward the ball and towards the goals. Instead of the robot just going forwards in this situation, it will need to change its movement to work the ball in the direction of the goal. The addition of a Colour Filter will allow the robot to detect where it is on the field and then alter its movements accordingly as it heads towards the goal. RoboCup Junior Australia Inc Copyright

27 Programming a Colour Filter You will need to calibrate your robot to the readings given from the GEN II field. Data logging will give you the most accurate indication of colour readings. The following readings were taken directly from a GEN II field with the light sensor 8mm from the surface Black Dark Green Mid Green Lime Green White Mid- Reading You can now be confident that at greater than each of the mid readings, you will be sitting over the next lightest colour. You will now need to create the colour filter in a new program. You need to connect up 4 switches. You will quickly run out of room after two switches. RoboCup Junior Australia Inc Copyright

28 In order to make more room, click on the check tick for flat view, that way all four switches can be fitted on the screen. Insert the motor controls for each False reading. Examples of possible strategies can be found in the table below. The reverse for the robot being over the white area(out) is placed in the Greater Than section of the fourth switch. Colour Reading Robot Action Reason Black Less than 35 Forward 1 sec, Stop Stop pushed goal 0.2sec Dark Green Greater Than 35 Straight Ahead 100% Power Mid Green Greater Than 40 Veer Left 75% Power Lime Green Greater Than 46 Veer Right 75% Power White Greater Than 55 Out (Reverse and Turn) Heading for goal: Go for it!! Less power: more ball control Less power: more ball control Get back into play You can place the colour filter in an indefinite loop to test the robot movements. You will need to experiment extensively with the motor settings. All robots will behave differently with the ball. The addition of a ball capturing zone may change the whole strategy you need for your robot. You may find that the robot doing a quick flick to the centre of the field is better than carrying the ball in the direction of the goal. The number of possibilities is endless. RoboCup Junior Australia Inc Copyright

29 All that you need to do is now create a Block for the Colour Filter(do not include the loop), call it Go For Goal and insert it into the GEN II Super Soccer Player Program. If you can get this working consistently, you will be competitive in any GEN II competition in the world!! RoboCup Junior Australia Inc Copyright

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Fun Games for u3 - u8

Fun Games for u3 - u8 Technical Game (15mins) - Robin Hood 20x20 grid with central 3x3 grid 4 Teams of 3 players. If possible more soccer balls than players into the central grid. First player from each team can start on the

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

U10 and U12 Technical Lessons

U10 and U12 Technical Lessons U10 and U12 Technical Lessons WEEK # 1 Topic: Moves Circle-Take and Fake and Take DIAGRAM DESCRIPTION COACHING POINTS 6 Surfaces: Talk to your feet Each player has a ball. Have the players Correct surface

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

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

STB- 2. Installation and Operation Manual

STB- 2. Installation and Operation Manual STB- 2 Installation and Operation Manual Index 1 Unpacking your STB- 2 2 Installation 3 WIFI connectivity 4 Remote Control 5 Selecting Video Mode 6 Start Page 7 Watching TV / TV Guide 8 Recording & Playing

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

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Rubber Band Race Car

Rubber Band Race Car Rubber Band Race Car Physical Science Unit Using LEGO Mindstorms NXT Copyright 2009 by Technically Learning 1 of 17 Overview: Through a series of hands-on activities, students will design a rubber band

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

Microsoft Excel v5.0 Database Functions

Microsoft Excel v5.0 Database Functions Microsoft Excel v5.0 Database Functions Student Guide Simon Dupernex Aston Business School Version 1.0 1 Preface This document is an introduction to the database functions contained within the spreadsheet

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

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

Compressor Supreme Force Feedback User Manual

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

More information

Motion Activated Camera User Manual

Motion Activated Camera User Manual Brinno MAC200 User Manual Last Modified on 12/23/2015 7:51 pm EST Motion Activated Camera User Manual www.brinno.com Register@online http://www.brinno.com/support/register.html contact us: customerservice@brinno.com

More information

Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth

Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2005 Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth OBJECTIVES 1. To examine the magnetic field associated with a

More information

Would You Like To Earn $1000 s With The Click Of A Button?

Would You Like To Earn $1000 s With The Click Of A Button? Would You Like To Earn $1000 s With The Click Of A Button? (Follow these easy step by step instructions and you will) This Version of the ebook is for all countries other than the USA. If you need the

More information

Lesson 2. From computer to USB

Lesson 2. From computer to USB Lesson 2 From computer to USB How do I save my designs from my computer to a USB Flash drive to stitch out on my BERNINA? So now you have designs on your computer and want to put them onto your BERNINA

More information

Lottery Looper. User Manual

Lottery Looper. User Manual Lottery Looper User Manual Lottery Looper 1.7 copyright Timersoft. All rights reserved. http://www.timersoft.com The information contained in this document is subject to change without notice. This document

More information

Frog VLE Update. Latest Features and Enhancements. September 2014

Frog VLE Update. Latest Features and Enhancements. September 2014 1 Frog VLE Update Latest Features and Enhancements September 2014 2 Frog VLE Update: September 2014 Contents New Features Overview... 1 Enhancements Overview... 2 New Features... 3 Site Backgrounds...

More information

MyMaths. User Guide for Teachers. Secondary Level

MyMaths. User Guide for Teachers. Secondary Level MyMaths User Guide for Teachers Secondary Level Edition 1.5 February 2015 Table of Contents Welcome to the MyMaths user guide What is MyMaths?.............................. 5 Who is this user guide for?.......................

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

User Manual. Windows 7 / Vista / XP. iotablet Driver

User Manual. Windows 7 / Vista / XP. iotablet Driver User Manual Windows 7 / Vista / XP iotablet Driver I. General Information 2 1. Overview 2 2. Pen Tablet Function 2 3. System Requirements 2 4. Driver Installation 3 5. Hardware Installation 3 6. Verifying

More information

USER MANUAL. EZRUN Series Brushless Speed Controller EZRUN-150A-PRO

USER MANUAL. EZRUN Series Brushless Speed Controller EZRUN-150A-PRO USER MANUAL EZRUN Series Brushless Speed Controller EZRUN-150A-PRO User Manual of EZRUN-150A-PRO Brushless ESC HW-SM405ENG-20130809 Page - 1 - Declaration Thanks for purchasing our Electronic Speed Controller

More information

Eye Tracking Instructions

Eye Tracking Instructions Eye Tracking Instructions [1] Check to make sure that the eye tracker is properly connected and plugged in. Plug in the eye tracker power adaptor (the green light should be on. Make sure that the yellow

More information

Pro Flight Rudder Pedals

Pro Flight Rudder Pedals 1 of 5 19/12/2006 16:43 Pro Flight Rudder Pedals USER MANUAL GETTING STARTED Introduction The Saitek Pro Flight Rudder Pedals are solid 3-axis rudder pedals designed to maximise realism by enabling foot

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

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

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

SolidWorks Building Blocks Tutorial. Toy-car

SolidWorks Building Blocks Tutorial. Toy-car SolidWorks Building Blocks Tutorial Toy-car From the age of until the age of For use with SolidWorks Educational Release 2010-2011 This tutorial was developed for SolidWorks Worldwide and may be used by

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

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

SweetPea3R-200 User Guide Version 1.1

SweetPea3R-200 User Guide Version 1.1 SweetPea3R-200 User Guide Version 1.1 For safety and warranty information, please refer to the Quick Start Guide included in the box with your unit. Thank you for purchasing a SweetPea3. As this is a new

More information

Code Kingdoms Learning a Language

Code Kingdoms Learning a Language codekingdoms Code Kingdoms Unit 2 Learning a Language for kids, with kids, by kids. Resources overview We have produced a number of resources designed to help people use Code Kingdoms. There are introductory

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

CATIA V5 Tutorials. Mechanism Design & Animation. Release 18. Nader G. Zamani. University of Windsor. Jonathan M. Weaver. University of Detroit Mercy

CATIA V5 Tutorials. Mechanism Design & Animation. Release 18. Nader G. Zamani. University of Windsor. Jonathan M. Weaver. University of Detroit Mercy CATIA V5 Tutorials Mechanism Design & Animation Release 18 Nader G. Zamani University of Windsor Jonathan M. Weaver University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com

More information

Radius Compensation G40, G41, & G42 (cutter radius compensation for machining centers, tool nose radius compensation for turning centers)

Radius Compensation G40, G41, & G42 (cutter radius compensation for machining centers, tool nose radius compensation for turning centers) Radius Compensation G40, G41, & G42 (cutter radius compensation for machining centers, tool nose radius compensation for turning centers) These features are commonly well covered in most basic CNC courses.

More information

ACL Soccer 4 v 4 Small Sided Games (SSG s)

ACL Soccer 4 v 4 Small Sided Games (SSG s) KEY TO THE DIAGRAMS Introduction In recent years, the 4v4 method has rapidly increased in popularity however this method is certainly not a new one. The method was introduced by the Dutch Football Association

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

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

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

This activity will show you how to draw graphs of algebraic functions in Excel.

This activity will show you how to draw graphs of algebraic functions in Excel. This activity will show you how to draw graphs of algebraic functions in Excel. Open a new Excel workbook. This is Excel in Office 2007. You may not have used this version before but it is very much the

More information

EasyPen i405x. MousePen i608x. User Manual For Windows 7/Vista/XP

EasyPen i405x. MousePen i608x. User Manual For Windows 7/Vista/XP EasyPen i405x MousePen i608x User Manual For Windows 7/Vista/XP *The driver may already be updated to a newer version before/after packaging. If your installation screen does not match the contents of

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

The NXT Generation. A complete learning solution

The NXT Generation. A complete learning solution The NXT Generation A complete learning solution The NXT Generation LEGO MINDSTORMS Education is the latest in educational robotics, enabling students to discover ICT, science, D&T and maths concepts in

More information

Working with sections in Word

Working with sections in Word Working with sections in Word Have you have ever wanted to create a Microsoft Word document with some pages numbered in Roman numerals and the rest in Arabic, or include a landscape page to accommodate

More information

Watch Your Garden Grow

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

More information

Best Robotics Sample Program Quick Start

Best Robotics Sample Program Quick Start Best Robotics Sample Program Quick Start BEST Robotics Programming -- Sample Program Quick Start Page 1 Overview The documents describe the program "Best Competition Template.c" which contains the sample

More information

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL Rev. D PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL 10 BORIGHT AVENUE, KENILWORTH NEW JERSEY 07033 TELEPHONE: 800-524-0273 FAX: 908-686-9317 TABLE OF CONTENTS Page

More information

CHAPTER 18 Programming Your App to Make Decisions: Conditional Blocks

CHAPTER 18 Programming Your App to Make Decisions: Conditional Blocks CHAPTER 18 Programming Your App to Make Decisions: Conditional Blocks Figure 18-1. Computers, even small ones like the phone in your pocket, are good at performing millions of operations in a single second.

More information

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm Six-servo Robot Arm 1 1, Introduction 1.1, Function Briefing Servo robot, as the name suggests, is the six servo motor-driven robot arm. Since the arm has a few joints, we can imagine, our human arm, in

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

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

Android Programming Family Fun Day using AppInventor

Android Programming Family Fun Day using AppInventor Android Programming Family Fun Day using AppInventor Table of Contents A step-by-step guide to making a simple app...2 Getting your app running on the emulator...9 Getting your app onto your phone or tablet...10

More information

APEX Robot Rabbit. www.empyrion.demon.co.uk/apex/ Tel: 07786 637286 e-mail: apex@empyrion.demon.co.uk

APEX Robot Rabbit. www.empyrion.demon.co.uk/apex/ Tel: 07786 637286 e-mail: apex@empyrion.demon.co.uk APEX Robot Rabbit Television programmes such as Robot Wars and Techno Games have inspired many people to have a go at building their own robots. Some of these robots are fantastically complicated, and

More information

5. Tutorial. Starting FlashCut CNC

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

More information

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

SpaceClaim Introduction Training Session. A SpaceClaim Support Document

SpaceClaim Introduction Training Session. A SpaceClaim Support Document SpaceClaim Introduction Training Session A SpaceClaim Support Document In this class we will walk through the basic tools used to create and modify models in SpaceClaim. Introduction We will focus on:

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

Introduction to SketchUp

Introduction to SketchUp Introduction to SketchUp 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 to use your mouse (and

More information

Instructions for the ACER Laptops

Instructions for the ACER Laptops 20 Manor Road Ruislip Middlesex HA4 7LB Telephone: +44(0)1895 624 774 E-Mail: info@llmedia.com Website: www.llmedia.com Instructions for the ACER Laptops Always, after connecting to a projector, switch

More information

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL TABLE OF CONTENTS CORSAIR UTILITY ENGINE OVERVIEW PROFILES 1 9 Introduction 2 Starting the Corsair Utility Engine 2 Profiles: Settings for a Specific Program

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

Generative Drafting. Page 1 1997 2001 DASSAULT SYSTEMES. IBM Product Lifecycle Management Solutions / Dassault Systemes

Generative Drafting. Page 1 1997 2001 DASSAULT SYSTEMES. IBM Product Lifecycle Management Solutions / Dassault Systemes Generative Drafting Page 1 Tutorial Objectives Description This Tutorial is an introduction to Generative Drafting. Message To show how CATIA V5 allows the user to automatically generate associative drafting

More information

Topic: Passing and Receiving for Possession

Topic: Passing and Receiving for Possession U12 Lesson Plans Topic: Passing and Receiving for Possession Objective: To improve the players ability to pass, receive, and possess the soccer ball when in the attack Dutch Square: Half of the players

More information

MICROSOFT POWERPOINT STEP BY STEP GUIDE

MICROSOFT POWERPOINT STEP BY STEP GUIDE IGCSE ICT SECTION 16 PRESENTATION AUTHORING MICROSOFT POWERPOINT STEP BY STEP GUIDE Mark Nicholls ICT Lounge Page 1 Contents Importing text to create slides Page 4 Manually creating slides.. Page 5 Removing

More information

GPS 72. Personal Navigator. Read This First! quick start guide

GPS 72. Personal Navigator. Read This First! quick start guide GPS 72 Personal Navigator Read This First! quick start guide Internal Antenna Quick Start Unit Overview Interface keys MOB ZOOM Battery Compartment MARK External Data/Auxilary Power Port 120 x 160 Four

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

Welcome to The Grid 2

Welcome to The Grid 2 Welcome to 1 Thanks for choosing! These training cards will help you learn about, providing step-by-step instructions for the key skills you will need and introducing the included resources. What does

More information

Introduction. Below is a list of benefits for the 4v4 method

Introduction. Below is a list of benefits for the 4v4 method KEY TO THE DIAGRAMS Introduction There are many debates on how best to coach the next generation of football players. This manual is putting forward the case for the 4v4 games method. In recent years,

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

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

Guide To Creating Academic Posters Using Microsoft PowerPoint 2010

Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 INFORMATION SERVICES Version 3.0 July 2011 Table of Contents Section 1 - Introduction... 1 Section 2 - Initial Preparation... 2 2.1 Overall

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

CATIA Basic Concepts TABLE OF CONTENTS

CATIA Basic Concepts TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10

More information

MAGICAR M871A. Car alarm with two-way remote User s guide

MAGICAR M871A. Car alarm with two-way remote User s guide MAGICAR M871A Car alarm with two-way remote User s guide EN MAGICAR M871A Car alarm with two-way remote User s guide TABLE OF CONTENTS Table of contents...2 1. Important notice...4 2. Introduction...4

More information

Cassette2CD Wizard User's Manual

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

More information

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

Changing How the Mouse Works in Windows 7

Changing How the Mouse Works in Windows 7 Changing How the Mouse Works in Windows 7 Mada Assistive Technology Center Tel: 00 974 44594050 Fax: 00 974 44594051 Email: info@mada.org.qa Pen Introduction There are several ways to adjust the mouse

More information

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

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

More information

SMART NOTEBOOK 10. Instructional Technology Enhancing ACHievement

SMART NOTEBOOK 10. Instructional Technology Enhancing ACHievement SMART NOTEBOOK 10 Instructional Technology Enhancing ACHievement TABLE OF CONTENTS SMART Notebook 10 Themes... 3 Page Groups... 4 Magic Pen... 5 Shape Pen... 6 Tables... 7 Object Animation... 8 Aligning

More information