NXT Robotics Techniques Workshop 2008

Size: px
Start display at page:

Download "NXT Robotics Techniques Workshop 2008"

Transcription

1 ORTOP NXT Robotics Techniques Workshop 2008 Opening doors to the worlds of science and technology for Oregon s youth 9/29/2008 NXT Robotics Techniques

2 Goals Audience: Rookie coaches/mentors, experienced coaches & mentors Provide Material That Is Immediately Usable With Your Team Gain Mindstorms NXT Programming Experience You should have already attended NXT workshops I & II and/or coached a team in a 2007 tournament 9/29/2008 NXT Robotics Techniques

3 CanDo Challenge Simple project, but good learning tool What did you learn? Unexpected things happen cans get caught under the wheel, it goes the wrong direction Take it in smaller steps Let s see what happens before it hits a can Mechanical problems may do you in Clarify the rules know the requirements Experiment Just go try it. We can rework it. Keep it simple 9/29/2008 NXT Robotics Techniques

4 Instructor Contacts Ken Cone Dale Jordan Jim Ryan Roger Swanson /29/2008 NXT Robotics Techniques

5 ORTOP Project Administrator Cathy Swider /29/2008 NXT Robotics Techniques

6 Agenda Introductions (5 min) Slide Review (20 min) Break into Teams NXT Techniques lab exercises (90 min) Review & questions 9/29/2008 NXT Robotics Techniques

7 Agenda Handouts for this workshop: TechniquesNXT2008V2.ppt (this slide set) TechniquesNXT2008LabsV2.doc (lab exercises) Writing Efficient NXT-G Programs NXT Reference Books for FLL NXTMemory.doc (memory screen captures) ORTOP Workshops Website - materials also available here: 9/29/2008 NXT Robotics Techniques

8 Our Mission FLL is not just about building robots and competing in tournaments Develop team member skills technical team building research & presentation Technical problem solving can be fun The youngsters do the work Introduce possibility of a technical career 9/29/2008 NXT Robotics Techniques

9 Parts Inventory LEGO Parts Identification Have kids inventory your NXT kit & get to know the parts. Use pins and various Technic parts to build your robot Pins are stronger than original LEGO bricks with bumps 9/29/2008 NXT Robotics Techniques

10 Building Strong Structures Note how NXT parts are all pinned together using Technic parts There are only a few plates with bumps Motors are strong enough for direct drive turn a wheel on your robot to feel the gears Motors have built in rotation sensors programmed in degrees or rotations Take a minute to examine the NXT parts and motors 9/29/2008 NXT Robotics Techniques

11 Gears Gears Spur Gear (show example) instructor t holds beam class person turns axles and feels torque on other axle tactile til feedback = learning about gears and torque Gear Ratio and Speed turn large gear one complete turn. How may times does small gear turn? 9/29/2008 NXT Robotics Techniques

12 Torque Torque can be thought of as rotational force torque causes something with mass to rotate a force can create a torque by acting through a moment arm (picture a wrench turning a bolt) a motor produces a torque transferred to gears and to axles that turn the wheels gears change speed and torque e.g. changing bicycle gears to go up a hill 9/29/2008 NXT Robotics Techniques

13 Other Gears More Gears Worm Gears one way transfer of power (show example) Pulleys use for slippage during lifting Clutch slippage after torque value listed on clutch GS Day Camp pages on gears instructor hold up 3 page handout 9/29/2008 NXT Robotics Techniques

14 Defaults and Allowed Parts Default inputs: touch = 1, light = 3, Distance = 4 Allowed: 2 touch, 2 light, 1 Distance Default outputs: Left motor = C, right motor = B Allowed: 3 motors (rotation sensors built in) Allowed: (3 - number of motors) rotation sensors 9/29/2008 NXT Robotics Techniques

15 Motors Note holes for Axles and Cams One Move block in the program controls both motors The robot moves straight - motors will adjust speed as the robot moves A program with two Move blocks (one for each motor) will not go straight Try programming tests for straight and curved movements, single and multiple Move blocks There are Move blocks and Motor blocks Motor blocks allow ramp up and ramp down of speed 9/29/2008 NXT Robotics Techniques

16 Light Sensors Reads reflection from a built-in IR emitter - (the sensor responds to visible light and into the IR spectrum) (default mode) Or, reads light intensity from surroundings with emitter turned off Use NXT Brick View program or Sensor feedback box to read Black, Green, White values as in previous workshops The sensor feedback box (located in the configuration panel) displays the current light reading (0-100%). You can use it to try out different trigger values. 9/29/2008 NXT Robotics Techniques

17 Light Sensors Hints for more consistent readings: The more verticle the better Closer to the surface is better Note there are two types of light sensor blocks (similar il for other sensors) Wait for blocks (orange blocks) Blocks to read sensor values (yellow blocks) 9/29/2008 NXT Robotics Techniques

18 Touch Sensors Touch sensor Responds to being pressed, or released, or bumped (pressed then released) Note axle slot for extending sensor capability Click More help? in lower right corner of Mindstorms screen. This works like Show Context Help in ROBOLAB 9/29/2008 NXT Robotics Techniques

19 Program Memory Firmware & programs stored in flash (like photos on a digital camera) Maximum available memory is ~125KB Firmware refresh and all files deleted Each program is ~0.1KB overhead E.g. Move block ~5.1KB, two ~5.8KB E.g. Move + Wait for light sensor ~7.7KB Use My Blocks for subroutines for better memory usage Click NXT Window then Memory to view memory usage Instructor show this command Refer to NXTmemory.doc for more details Instructor, show this file 9/29/2008 NXT Robotics Techniques

20 Writing Efficient NXT-G Programs Maximize free space by deleting default files that are downloaded with firmware Maximize code reuse Use only Move or only Motor blocks Loops and My Blocks Combine multiple programs can combine 2 programs into 1 and select which of the two sequences to run programmatically (using a touch sensor, for example) Minimize Sound and Display blocks Use Mini-Blocks 9/29/2008 NXT Robotics Techniques

21 NXT Software v1.1 New version released summer/fall kits will have v kits may or may not. Check and see Main advantage is performance enhancements Downloading to NXT is faster Size of blocks on the NXT is smaller Mini-Blocks can be downloaded: mindstorms.lego.com/support/updates 9/29/2008 NXT Robotics Techniques

22 Lab Exercises Lab Sections Lab 1 - The Distance Sensor Lab 2 Data Hubs & Variables This exercise shows 4 different techniques to program the robot to go in a square Introduces different programming techniques Shows memory usage of different techniques Lab 3 - Switches & Range Blocks Advanced lab - Light sensor calibration 9/29/2008 NXT Robotics Techniques

23 Lab Exercises Show video: examples of robots with fixtures for each mission Introduce yourself to other team members Begin with Lab1 exercise Continue with as many labs as you can 90 min to complete the labs Ask questions, chances are someone else has the same question Have fun! 9/29/2008 NXT Robotics Techniques

24 Other Lab Exercises Finish the CanDo Challenge Sequential events spin until the touch sensor is hit, then go straight until a black line is reached The famous robot dance forward to black line, back to wall, forward to yellow dot, spin 5 sec. in each direction, stop Use all the sensors touch, light, rotation, distance OR conditions -- Go until the touch sensor is hit OR a black line is reached Count the green lines you encounter 9/29/2008 NXT Robotics Techniques

25 Lab Conclusions LAB Conclusions Each team briefly explain a section of what you learned in this workshop What advice would you have for a team starting out with NXT? Teaching for understanding di creates challenging situations in which students test their knowledge by solving problems, building products, and giving performances or writing reports that synthesize thorough analysis of a topic, a concept, or an idea. * 9/29/2008 NXT Robotics Techniques

26 Next Steps Next Steps NXT Robotics Techniques slides NXT Techniques labs Mindstorms NXT tutorial (show tutorial) INSciTE tutorial Build and test some robots Test tracks Oval track with hill Make up your own exercises stress basics 9/29/2008 NXT Robotics Techniques

27 Programming Resources Tutorials, Dale Yocum Download from oads.html takes time,,go through in sections NXT Tutorial is also available online: Requires Adobe Macromedia Shockwave Player and high speed download connection 9/29/2008 NXT Robotics Techniques

28 Information Resources Inscite Google FLL programming and look for FLL programming 101 nxt g.pdf This file is on the NXT Workshops Website 9/29/2008 NXT Robotics Techniques

29 Parting Thoughts From All I Really Need to Know (About Creative Thinking) I Learned (By Studying How Children Learn) in Kindergarten* Tips from 12 year olds on being creative: Start simple Work on things that you like If you have no clue what to do, fiddle around Don t be afraid to experiment Find a friend to work with, share ideas! It s OK to copy stuff (to give you an idea) Keep pyour ideas in a sketch book Build, take apart, rebuild Lots of things can go wrong, stick with it *MIT Media Lab 9/29/2008 NXT Robotics Techniques

30 Review & Questions Please give us your input Let ORTOP know how we can improve the program Thanks for volunteering, your effort makes learning possible! Disassemble robots and put pieces back into kits 9/29/2008 NXT Robotics Techniques

31 Our Mailing Lists ortopvol All volunteers you can opt out One way from ORTOP to our volunteers We add you when you volunteer ortopcoaches You are added d when you register your team with FLL Communication from ORTOP to registered coaches very important channel 9/29/2008 NXT Robotics Techniques

32 Contact Us Website: for answers to your questions Phone: (Cathy Swider) or (Bruce Schafer) 9/29/2008 NXT Robotics Techniques

1001ICT Introduction To Programming Lecture Notes

1001ICT Introduction To Programming Lecture Notes 1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 4 Lego Mindstorms 4.1 Robotics? Any programming course will set

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. NXT Main Menu My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the

More information

LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008

LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008 LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008 NXT-G Program Book II: Intermediate Robotics Activities for use with the NXT 2008 Tufts Center for Engineering Education

More information

Standard League WRO Football Simple Simon EV3 Training Curriculum

Standard League WRO Football Simple Simon EV3 Training Curriculum Standard League WRO Football Simple Simon EV3 Training Curriculum Brian Thomas **LEGO, EV3 Mindstorms and Robolab are Registered Trademarks of the LEGO Corporation RoboCup Junior Australia Inc Copyright

More information

Technology. Using Bluetooth

Technology. Using Bluetooth Bluetooth is a communication technology that makes it possible to send and receive data without using wires. Using the Bluetooth features, you can set up a wireless connection between your NXT and other

More information

Rescue Rover. Robotics Unit Lesson 1. Overview

Rescue Rover. Robotics Unit Lesson 1. Overview Robotics Unit Lesson 1 Overview In this challenge students will be presented with a real world rescue scenario. The students will need to design and build a prototype of an autonomous vehicle to drive

More information

Soft Systems. Log Flume - 1. Enter Specification. Activity One ACTIVITIES. Help. for Logicator

Soft Systems. Log Flume - 1. Enter Specification. Activity One ACTIVITIES. Help. for Logicator Log Flume - 1 ACTIVITIES These sheets present a series of activities for building your own programs to control the Log Flume Soft System. Together, they build into a complete control system for the log

More information

Mapping a Magnetic Field. Evaluation copy. Figure 1: Detecting the magnetic field around a bar magnet

Mapping a Magnetic Field. Evaluation copy. Figure 1: Detecting the magnetic field around a bar magnet Mapping a Magnetic Field Experiment 16 The region around a magnet where magnetic forces can be detected is called a magnetic field. All magnets, no matter what their shape, have two poles labeled north

More information

World Robot Olympiad 2018

World Robot Olympiad 2018 World Robot Olympiad 2018 REGULAR CATEGORY RULES Version: Final Version January 15 th Table of Contents Introduction... 3 Important changes for WRO 2018... 3 Regular Category Rules... 4 1. Surprise Rule...

More information

Using the Lego NXT with Labview.

Using the Lego NXT with Labview. Using the Lego NXT with Labview http://www.legoengineering.com/component/content/article/105 The Lego NXT 32-bit ARM microcontroller - an Atmel AT91SAM7S256. Flash memory/file system (256 kb), RAM (64

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

World Robot Olympiad 2019

World Robot Olympiad 2019 World Robot Olympiad 2019 REGULAR CATEGORY GENERAL RULES Age groups Elementary, Junior, Senior (for WeDo Rules, please see the WeDo documents) Version: January 15 th WRO International Premium Partners

More information

National Robotics Competition 2018 NRC WRO Challenge Manual

National Robotics Competition 2018 NRC WRO Challenge Manual National Robotics Competition 2018 NRC WRO Challenge Manual Page 1 of 13 A. Competition Categories World Robot Olympiad has three regular competition categories, and an Open category: 1. Regular Category

More information

FIRST LEGO League - Massachusetts

FIRST LEGO League - Massachusetts FIRST LEGO League - Massachusetts Thank you for agreeing to serve as a referee for a FIRST LEGO League event! You were asked to serve as an FLL referee because we believe that your passion and excitement

More information

CONSTRUCTOPEDIA NXT Kit 9797

CONSTRUCTOPEDIA NXT Kit 9797 CONSTRUCTOPEDIA NXT Kit 9797 Beta Version 2.0 August 17, 2007 Center for Engineering Educational Outreach Tufts University Table of Contents Simple Shapes and Structures. Page 3 Ways To Attach NXT Motors...

More information

Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas

Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas RoboCup Junior Australia Inc Copyright 2018 1 Standard League Robot Soccer EV3 Compass Training Welcome! The aim of this curriculum

More information

The Mechanical Advantage

The Mechanical Advantage The Mechanical Advantage Subject Area(s) Physical Science, Science and Technology Associated Unit Yellow highlight = required component Associated Lesson Activity Title Wide World of Gears Figure 1 ADA

More information

Robot Activity: Programming the NXT 2.0

Robot Activity: Programming the NXT 2.0 Robot Activity: Programming the NXT 2.0 About this Activity In this activity, you will learn about some features of the NXT 2.0 programming software. You will write and save a program for the Lego NXT

More information

Simple Simon GEN II Robot Soccer EV3 -Tris 10 Training Curriculum

Simple Simon GEN II Robot Soccer EV3 -Tris 10 Training Curriculum Simple Simon GEN II Robot Soccer EV3 -Tris 10 Training Curriculum Brian Thomas **LEGO, Mindstorms and Robolab are Registered Trademarks of the LEGO Corporation RoboCup Junior Australia Inc Copyright 2015

More information

READING AND SHARING THIS LETTER

READING AND SHARING THIS LETTER Dear FIRST LEGO League Robotics Coach: This letter and other important documents are intended to help prepare you and your team for our upcoming qualifying tournament. Our goal is to provide useful information

More information

e d u c a t i o n NXT Solar Station

e d u c a t i o n NXT Solar Station e d u c a t i o n NXT Solar Station de LEGO Group. 2010 The LEGO Group. e d u c a t i o n NXT Solar Station Description Investigating the NXT Solar Station s ability to generate power by data logging wattage

More information

The NXT Generation. A complete learning solution

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

More information

Acidity Tester. Project OBJECTIVES DIFFICULTY LEVEL

Acidity Tester. Project OBJECTIVES DIFFICULTY LEVEL Acidity Tester Project 3 Engineers use robots to do tasks that might be harmful to humans. One common example is working with hazardous chemicals. A hazardous chemical is one that could cause a negative

More information

Robot Soccer Challenge

Robot Soccer Challenge Robot Soccer Challenge Pre-Activity Quiz 1. What kind of wireless electrical connection can NXT robots use to communicate with other electrical devices (including other NXTs)? 2. Can you think of a way

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the sound data will

More information

READING AND SHARING THIS LETTER

READING AND SHARING THIS LETTER Dear FIRST LEGO League Robotics Coach: This letter and posted documents are intended to help prepare you and your team for our upcoming qualifying tournament. Our goal is to provide useful information

More information

GEN II Robot Soccer EV3 Compass Training Curriculum Brian Thomas

GEN II Robot Soccer EV3 Compass Training Curriculum Brian Thomas GEN II Robot Soccer EV3 Compass Training Curriculum Brian Thomas RoboCup Junior Australia Inc Copyright 2015 1 GEN II EV3 Robot Soccer Training Overview Welcome! The aim of this curriculum is to guide

More information

Rulebook Revision 2016 v1.0 Published September 18, 2015 Sponsored By

Rulebook Revision 2016 v1.0 Published September 18, 2015 Sponsored By Rulebook Revision 2016 v1.0 Published September 18, 2015 Sponsored By 1 Table of Contents 1 General Overview... 3 1.1 General Team Rules... 3 2 Mini-Urban Challenge... 4 2.1 The Challenge... 4 2.2 Navigation...

More information

Technology. Using Bluetooth

Technology. Using Bluetooth Bluetooth is a communication technology that makes it possible to send and receive data without using wires. Using the Bluetooth features, you can set up a wireless connection between your NXT and other

More information

Race Screen: Figure 2: Race Screen. Figure 3: Race Screen with Top Bulb Lock

Race Screen: Figure 2: Race Screen. Figure 3: Race Screen with Top Bulb Lock Eliminator Competition Stand Alone Mode - Instruction Manual Main Menu: After startup, the Eliminator Competition will enter the Main Menu. Press the right/left arrow buttons to move through the menu.

More information

Chapter 13. ANTY: the robotic ant

Chapter 13. ANTY: the robotic ant Chapter 13. ANTY: the robotic ant By now, you ve gotten the hang of building models that move on wheels. Another fun, but slightly more challenging, kind of model you can build is an animal robot that

More information

Mechanical Advantage 1

Mechanical Advantage 1 Mechanical Advantage 1 Mechanical Advantage Another Word for Leverage Ways of Making WORK easier or more efficient. 2 Work = Work * = Work = * * * 3 Mechanical Advantage Output Input 5 8 N = 1 4 5 8 N

More information

LOS ALTOS ROBOTICS TOURNAMENT ANNOUNCEMENTS

LOS ALTOS ROBOTICS TOURNAMENT ANNOUNCEMENTS LOS ALTOS ROBOTICS TOURNAMENT ANNOUNCEMENTS FIRST LEGO League (FLL) exists because of Dean Kamen. He created FIRST in 1989 to excite children about Science and Technology. FIRST worked with LEGO to create

More information

SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR

SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR SOFTWARE FOR CONTROL OF ROBOTIC MANIPULATOR INTRODUCTION Robotics is a very common and discussed problem recently. Robotic arms and manipulators are used in industry, transport or medicine. They often

More information

General Rules 2015 Season

General Rules 2015 Season Content A. Competition Categories... 2 B. Age Group Definition... 2 C. Team Definition... 2 D. Coaches... 3 E. General Rules Regular Category... 4 F. General Rules Open Category... 9 G. University Regular

More information

Trundle Wheel Working with ratios Worm Gear 29 Compiled by : Brent Hutcheson Gear Housing and

Trundle Wheel Working with ratios Worm Gear 29 Compiled by : Brent Hutcheson Gear Housing and Mechanical Systems - Book 4 INDEX Acknowledgements While the authors get their names on the cover of books and workbooks, a book isn't the result of the efforts of only the authors - it's a team effort

More information

DRIVERLESS SCHOOL BUS

DRIVERLESS SCHOOL BUS World Robot Olympiad 2019 WeDo Regular Category Game Description, Rules, and Scoring SMART CITIES DRIVERLESS SCHOOL BUS Version: January 15 th WRO International Premium Partners Table of Contents 1. Game

More information

Specifications. The Field:

Specifications. The Field: ME 218b Winter 2008 Project: SPDL Happy Fun Ball Project Preview on February 29, 2008 6-10 pm (in SPDL) Grading Session on March 4, 2008 6-10 pm (in SPDL) Project Presentations on March 5, 2008 starting

More information

Farm to Fork Local Food Production and Marketing

Farm to Fork Local Food Production and Marketing Farm to Fork Local Food Production and Marketing LEGO Robotics 4- H Challenge Through the Farm to Fork Robotics Challenge, 4- H members involved in robotics will create LEGO robots that complete local

More information

Heating of Land and Water

Heating of Land and Water Heating of Land and Water Experiment 8 How fast land and water heat and cool influences our weather. In Part I of this experiment, you will heat sand and water. You will use two Temperature Probes to see

More information

Flexible Software for Computer-Based Problem Solving Labs

Flexible Software for Computer-Based Problem Solving Labs Flexible Software for Computer-Based Problem Solving Labs Brita L. Nellermoe 1 Jennifer L. Docktor 2 1 Department of Curriculum and Instruction 2 Department of Physics Physics Education Research Group

More information

Kungl Tekniska Högskolan

Kungl Tekniska Högskolan Centre for Autonomous Systems Kungl Tekniska Högskolan hic@kth.se March 22, 2006 Outline Wheel The overall system layout : those found in nature found in nature Difficult to imitate technically Technical

More information

Centre for Autonomous Systems

Centre for Autonomous Systems Centre for Autonomous Systems Kungl Tekniska Högskolan hic@kth.se March 22, 2006 Outline Wheel The overall system layout : those found in nature found in nature Difficult to imitate technically Technical

More information

Utah Elementary Robotics SUMO Rules. Competition During USU Physics Lagoon in Farmington, UT. May 12, 2017 Starting at 10:30 AM

Utah Elementary Robotics SUMO Rules. Competition During USU Physics Lagoon in Farmington, UT. May 12, 2017 Starting at 10:30 AM Utah Elementary Robotics SUMO Rules Competition During USU Physics Day @ Lagoon in Farmington, UT May 12, 2017 Starting at 10:30 AM COMPETITION OBJECTIVE The aim of the competition is to foster math, science,

More information

Mechanical systems and control: investigation

Mechanical systems and control: investigation 6 Mechanical systems and control: investigation gear ratio the number of turns of one gear compared to the other is known as gear ratio speed ratio the gear ratio of a gear train, also known as its speed

More information

USER GUIDE USER GUIDE

USER GUIDE USER GUIDE 1 TABLE OF CONTENTS GETTING STARTED 2 Included in the box 2 Compatible smartphones 2 Accessories: 2 Download Mobitee and PIQ application 2 GET STARTED WITH MOBITEE AND PIQ 3 Create your Account and Login

More information

December [xx], 2012 [NAME OF SITE] [STREET ADDRESS CITY, STATE] Rookie Coaches: We strongly encourage you to read through this letter in its entirety.

December [xx], 2012 [NAME OF SITE] [STREET ADDRESS CITY, STATE] Rookie Coaches: We strongly encourage you to read through this letter in its entirety. Oregon Robotics Tournament and Outreach Program presents Intel Oregon FIRST LEGO League 2012 Qualifying Tournament December [xx], 2012 [NAME OF SITE] [STREET ADDRESS CITY, STATE] 2 November 2012 Dear FIRST

More information

A) Draw the levers in your notes and use the drawings to record your results.

A) Draw the levers in your notes and use the drawings to record your results. Simple Machines Station One 1 st Class Levers This station should have 2 levers set up. One where the fulcrum is @.5m and one where it is @.65m. Don t change them in any way! You should also have Newton

More information

PDF FOR BUILDING NXT ARM CLAW ONLINE MANUAL ARCHIVE

PDF FOR BUILDING NXT ARM CLAW ONLINE MANUAL ARCHIVE 02 January, 2018 PDF FOR BUILDING NXT ARM CLAW ONLINE MANUAL ARCHIVE Document Filetype: PDF 103.62 KB 0 PDF FOR BUILDING NXT ARM CLAW ONLINE MANUAL ARCHIVE This video shows how to build a gripper/claw

More information

Los Altos Robotics FLL Coaches Training September 10, 2005

Los Altos Robotics FLL Coaches Training September 10, 2005 Los Altos Robotics FLL Coaches Training September 10, 2005 Welcome Los Altos Robotics Edmond Macaluso Team Organization Sudip Nag The Challenge Competition Video Competitions Robot Construction & Programming

More information

2018 Bratney Companies 4-H Robotics Challenge

2018 Bratney Companies 4-H Robotics Challenge 2018 Bratney Companies 4-H Robotics Challenge @ the Iowa State Fair August 12 and 13, 2018 Robotics Club Packet Sponsored by: Event Overview This event is an opportunity for you, who has been learning

More information

Pokemon Robotics Challenge: Gotta Catch em All 2.12: Introduction to Robotics Project Rules Fall 2016

Pokemon Robotics Challenge: Gotta Catch em All 2.12: Introduction to Robotics Project Rules Fall 2016 Pokemon Robotics Challenge: Gotta Catch em All 2.12: Introduction to Robotics Project Rules Fall 2016 Peter Yu, Fangzhou Xia, Ryan Fish, Kamal Youcef-Toumi, and Alberto Rodriguez 2016-11-29 Note 1. Website

More information

Ship Wrecked! For background information on the Design Process, see pages 3-5.

Ship Wrecked! For background information on the Design Process, see pages 3-5. Ship Wrecked! Outcome: 5-3-14: Use the design process to construct a prototype containing a system of two or more different simple machines that move in a controlled way to perform a specific function.

More information

2012 NRC - RULES AND REGULATIONS

2012 NRC - RULES AND REGULATIONS 2012 NRC - RULES AND REGULATIONS General Guidelines 1. A school team should comprise of 2 or 3 students and one teacher. 2. Each school can send a maximum of 5 teams for each category. 3. All rules and

More information

Finding Proper Gears and Wheels pt.ii

Finding Proper Gears and Wheels pt.ii Finding Proper Gears and Wheels pt.ii Gears are what make your Junior Solar Sprints car move. Finding the proper gear ratio for your car is an extremely important component of your car. Without it, your

More information

Getting Started with the LabVIEW Toolkit for LEGO MINDSTORMS NXT

Getting Started with the LabVIEW Toolkit for LEGO MINDSTORMS NXT Getting Started with the LabVIEW Toolkit for LEGO MINDSTORMS NXT Contents Overview...2 Mass Compiling...2 Building a LabVIEW VI that Runs on the NXT...3 Running a LabVIEW VI on the NXT...4 Building a LabVIEW

More information

LED CONVERSION BOARD - YAKUZA SERIES EGO/GEO

LED CONVERSION BOARD - YAKUZA SERIES EGO/GEO LED CONVERSION BOARD - YAKUZA SERIES EGO/GEO The LED conversion board replaces the OLED screen mini-board on your Yakuza Series board. Combined with new firmware, your board will function similarly to

More information

Animal Allies Robot Game

Animal Allies Robot Game Animal Allies Robot Game What s Allowed 1 EV3, RCX or Controller 4 Motors What s Allowed As many of the following external sensors as you like: What s Allowed Regular LEGO Elements (non-electric) MINDSTORMS

More information

What to Expect at Your First FTC Tournament. Eric Grajales Mike Nicolai September 17, 2011

What to Expect at Your First FTC Tournament. Eric Grajales Mike Nicolai September 17, 2011 What to Expect at Your First FTC Tournament Eric Grajales Mike Nicolai September 17, 2011 Welcome Purpose: This presentation is intended to inform teams as to what they may expect when attending their

More information

General Rules 2010: Regular category

General Rules 2010: Regular category General Rules 2010: Regular category [1] The rules of competition at WORLD ROBOT OLYMPIAD are constituted by the WORLD ROBOT OLYMPIAD Steering Committee ( the committee in the following paragraphs), and

More information

We have compiled all the key documents for this year s challenge into one document.

We have compiled all the key documents for this year s challenge into one document. Page 1 of 8 We have compiled all the key documents for this year s challenge into one document. THIS IS ESSENTIAL INFORMATION AND SHOULD BE READ AND RE-READ BY EVERY MENTOR AND TEAM MEMBER. YOUR SUCCESS

More information

NorCal FLL Coaches Training

NorCal FLL Coaches Training NorCal FLL Coaches Training 9/16/2009 Playing At Learning 501(c)(3) non-profit Provide & support technology-based enrichment programs for kids Completely volunteer-based Northern California Affiliate Partner:

More information

1. "4 Rules" handout cards Bring extras for those who did not bring them to the workshop. 2. Guns and holsters to illustrate

1. 4 Rules handout cards Bring extras for those who did not bring them to the workshop. 2. Guns and holsters to illustrate Table of contents Recommended equipment & supplies... 1 How to use this lesson plan... 1 Preparing for this workshop... 2 Instructor conversation in the classroom... 2 Trainee Takeaways... 12 Recommended

More information

v2.3 USER MANUAL

v2.3 USER MANUAL v2.3 USER MANUAL www.foresightsports.com Table of Contents 03 04 05 09 12 17 20 21 Activation Getting Started Play Compete Improve Settings Update Manager Glossary 04 11 05 12 03 Activation FSX Activation

More information

Assembly Instructions. -Cantilever Boat Lifts

Assembly Instructions. -Cantilever Boat Lifts Assembly Instructions -Cantilever Boat Lifts Winch Instruction Page Safety Information 1. The winch is built for the multipurpose of hauling and lifting operations. It is not to be used as a hoist for

More information

COACH S CURRICULUM Orange Ball Practice And Play Plans ORANGE BALL 03 / ORANGE BALL 02 / ORANGE BALL 01

COACH S CURRICULUM Orange Ball Practice And Play Plans ORANGE BALL 03 / ORANGE BALL 02 / ORANGE BALL 01 COACH S CURRICULUM Orange Ball Practice And Play Plans ORANGE BALL 03 / ORANGE BALL 02 / ORANGE BALL 01 DEAR COACH, WELCOME TO NET GENERATION! On behalf of the USTA, we thank you for supporting Net Generation.

More information

Loveland Robotics. October 2018 Edition. A Summer filled with laughter, learning, and STEM. What is Loveland Robotics?

Loveland Robotics. October 2018 Edition. A Summer filled with laughter, learning, and STEM. What is Loveland Robotics? Loveland Robotics October 2018 Edition A Summer filled with laughter, learning, and STEM What is Loveland Robotics? Loveland Robotics is a flourishing program within Loveland Schools that enables kids

More information

This document contains recommendations that may help teams be more successful in preparing for and participating in the FTC World Championship Event.

This document contains recommendations that may help teams be more successful in preparing for and participating in the FTC World Championship Event. HOT SHOT! TIPS AND TRICKS SHEET This document contains recommendations that may help teams be more successful in preparing for and participating in the FTC World Championship Event. BEFORE YOU LEAVE FOR

More information

Regular Elementary Category Rocket

Regular Elementary Category Rocket Introduction to WRO 14 Regular Elementary Category Rocket WRO-USA Last updated: 7/1/14 1 Regular Cat. Elementary: Rocket Note: there will be no wall in USA tournaments The ramp should be screwed on the

More information

2017/2018 Robot Game Rules (updated to Jan 9, 2018)

2017/2018 Robot Game Rules (updated to Jan 9, 2018) 2017/2018 Robot Game Rules (updated to Jan 9, 2018) Guiding Principles GP1 - GRACIOUS PROFESSIONALISM You are Gracious Professionals. You compete hard against problems, while treating all people with respect

More information

GOLFER. The Golf Putting Robot

GOLFER. The Golf Putting Robot GOLFER The Golf Putting Robot Written By Wing Pan Yuen For EEL 5666 Intelligent Machines Design Laboratory December 05, 1999 Table of Contents Abstract Introduction Executive Summary Integrated System

More information

SSI Solaris 150 RTA Revision /27/2016 Page 1 of 9. SSI Solaris 150 RTA

SSI Solaris 150 RTA Revision /27/2016 Page 1 of 9. SSI Solaris 150 RTA Page 1 of 9 SSI Solaris 150 RTA The Solaris 150 RTA is a rapid thermal annealing system capable of handling sample sizes up to 100mm (4 diameter) or smaller. The system can anneal in N 2 and Forming gas

More information

SPLIT HOPKINSON PRESSURE BAR OPERATIONS MANUAL 5/9/2014

SPLIT HOPKINSON PRESSURE BAR OPERATIONS MANUAL 5/9/2014 B Calibration of Split Hopkinson Pressure Bar Setup: Calibration is performed by comparing the wave speed of the initial pulse versus the reflected pulse and calculating the Energy Ratio. This ratio gives

More information

FLL Indonesia Category

FLL Indonesia Category FLL Indonesia Category Rules & Scoring System Page1 This document explains the rules and valid scoring system for FIRST LEGO League (FLL) Indonesia Category in Indonesian Robotic Olympiad 2016 (IRO2016).

More information

INSTRUCTION MANUAL OF THE STRINGWAY CROSS STRINGING TOOLS.

INSTRUCTION MANUAL OF THE STRINGWAY CROSS STRINGING TOOLS. INSTRUCTION MANUAL OF THE STRINGWAY CROSS STRINGING TOOLS. 1. PERSONAL ADVISE: The Stringway cross stringing tools are designed to do a rather smart job. They are designed to be very user-friendly and

More information

Read this first: To maximize performance and eliminate surprises, the team must take the time to read and understand FOUR documents:

Read this first: To maximize performance and eliminate surprises, the team must take the time to read and understand FOUR documents: FOOD FACTOR 2011 ROBOT GAMES - RULES Read this first: To maximize performance and eliminate surprises, the team must take the time to read and understand FOUR documents: :: FLL Field Setup Instructions

More information

Beginner Category Tug of War 2v2

Beginner Category Tug of War 2v2 1 Beginner Category Tug of War 2v2 Game Description, Rules, and Scoring 2 1. General Rules 1.1. Team 1. A team consists of two (2) members and/or one (1) coach. 2. Participants are categorized into two

More information

Lectric Cycles Mid-Drive Electric Motor Installation

Lectric Cycles Mid-Drive Electric Motor Installation Lectric Cycles Mid-Drive Electric Motor Installation This write-up describes the installation of a Lectric Cycles electric motor. The model is the e-rad Mid-Drive 750 Watt conversion kit, installed on

More information

INSTRUMENT INSTRUMENTAL ERROR (of full scale) INSTRUMENTAL RESOLUTION. Tutorial simulation. Tutorial simulation

INSTRUMENT INSTRUMENTAL ERROR (of full scale) INSTRUMENTAL RESOLUTION. Tutorial simulation. Tutorial simulation Lab 1 Standing Waves on a String Learning Goals: To distinguish between traveling and standing waves To recognize how the wavelength of a standing wave is measured To recognize the necessary conditions

More information

Rookie Rugby101. Introducing Rugby to Students. High School Three Day Plan

Rookie Rugby101. Introducing Rugby to Students. High School Three Day Plan Rookie Rugby101 Introducing Rugby to Students High School Three Day Plan Before the Training : Before leading your Rookie Rugby class for any age, prepare with the following: Familiarize yourself with

More information

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore Your web browser (Safari 7) is out of date. For more security, comfort and Activityengage the best experience on this site: Update your browser Ignore Gearing Up with Robots How are gears used to change

More information

USER MANUAL OPERATION AND THE USE OF A CAR WITH. Diego G3 / NEVO SEQUENTIAL GAS INJECTION SYSTEM

USER MANUAL OPERATION AND THE USE OF A CAR WITH. Diego G3 / NEVO SEQUENTIAL GAS INJECTION SYSTEM USER MANUAL OPERATION AND THE USE OF A CAR WITH Diego G3 / NEVO SEQUENTIAL GAS INJECTION SYSTEM Page 2 / 8 Table of csontents 1. STARTING THE ENGINE... 3 2. CONTROL PANEL... 3 2.1 Indication of the current

More information

IT-Olympics Venues High School Competition April 29-30, 2016 **IT-Olympics is for 9 12 Graders Only**

IT-Olympics Venues High School Competition April 29-30, 2016 **IT-Olympics is for 9 12 Graders Only** IT-Olympics Venues High School Competition April 29-30, 2016 **IT-Olympics is for 9 12 Graders Only** There are four venues in the 2016 IT-Olympics competition: Application Development Cyber Defense Robotics

More information

Mukilteo Youth Soccer Club. Micro Handbook 2017/ years

Mukilteo Youth Soccer Club. Micro Handbook 2017/ years Mukilteo Youth Soccer lub Micro Handbook 2017/18 4-7 years Introduction In this handbook you will find drills and games (exercises) to keep players engaged while learning to play The exercises are broken

More information

Activity 5.1B Dragster Assembly Drawing

Activity 5.1B Dragster Assembly Drawing Activity 5.1B Dragster Assembly Drawing Purpose The excitement of seeing your design become a product that you can see in 3D is about to become a reality for you. In this activity, you are going to learn

More information

Line Following with RobotC Page 1

Line Following with RobotC Page 1 Line Following with RobotC Page 1 Line Following with By Michael David Lawton Introduction Line following is perhaps the best way available to VEX Robotics teams to quickly and reliably get to a certain

More information

Laboratory Mortar Mixer (Testing)

Laboratory Mortar Mixer (Testing) TomTom-Tools GmbH Zelgli 20 8905 Arni info@tomtom-tools.com Switzerland www.tomtom-tools.com User Manual Version February 22, 2015 Laboratory Mortar Mixer (Testing) 1 Introduction The Laboratory Mortar

More information

Quick Guide. SGX-CA500 Cycle Computer SGY-PM Series Power Meters

Quick Guide. SGX-CA500 Cycle Computer SGY-PM Series Power Meters Quick Guide SGX-CA500 Cycle Computer SGY-PM Series Power Meters Easy Installation and Advanced Functionality Fast Facts: Pioneer Power Meter Cranksets and arms ship pre-set in the ANT+ Format Simply install

More information

BASIC Z-STACK AND TIME SERIES SCAN ON THE ZEISS LIGHTSHEET Z. 1

BASIC Z-STACK AND TIME SERIES SCAN ON THE ZEISS LIGHTSHEET Z. 1 BASIC Z-STACK AND TIME SERIES SCAN ON THE ZEISS LIGHTSHEET Z. 1 The front door of the main body of the instrument may be open when you arrive. Take the sample chamber and slide it into position with the

More information

2nd Grade: PEDESTRIAN SAFETY UNIT

2nd Grade: PEDESTRIAN SAFETY UNIT 2nd Grade: PEDESTRIAN SAFETY UNIT SAFE STREET CROSSING is the first class we offer addressing road safety and transportation choices. 2nd grade: Pedestrian Safety Unit 4th grade: Three-part Bicycle Safety

More information

NXT SUMO Rules USU Physics Day Lagoon Farmington, UT

NXT SUMO Rules USU Physics Day Lagoon Farmington, UT NXT SUMO Rules USU Physics Day Lagoon Farmington, UT May 17, 2013 COMPETITION OBJECTIVE The aim of the competition is to foster math, science, engineering and team work in students in 6 th grade. DESIGN

More information

Fiber Cable Puller with Tuf-Lugger lite

Fiber Cable Puller with Tuf-Lugger lite 7 OPERATING INSTRUCTION MANUAL Fiber Cable Puller with Tuf-Lugger lite Copyright 2015 DCD Design & Manufacturing Ltd. Revision 1.0 IMPORTANT SAFETY INSTRUCTIONS READ ALL INSTRUCTIONS BEFORE USING The Fiber

More information

OWNER'S MANUAL LOCK-N-LOAD BULLET FEEDER (PISTOL)

OWNER'S MANUAL LOCK-N-LOAD BULLET FEEDER (PISTOL) OWNER'S MANUAL LOCK-N-LOAD BULLET FEEDER (PISTOL) Table of Contents ASSEMBLY ASSEMBLY Pistol Bullet Feeder... Page 3 CHANGE-OVERS The Hornady Lock-N-Load Pistol Bullet Feeder is capable of feeding most

More information

Club s Homepage Use this feature to return the club s website.

Club s Homepage Use this feature to return the club s website. The first time the golfer logs into the Internet Golf Reservation System, the member # is the club assigned golfer number, the default password is 1234. The golfer will automatically be transferred to

More information

all i imck >Э1 1 I Vf I \ Ш i ш ,M; цриазд IF 4 ifipm>v*' %тл sioaoy DNicning HUM

all i imck >Э1 1 I Vf I \ Ш i ш ,M; цриазд IF 4 ifipm>v*' %тл sioaoy DNicning HUM p all i imck >Э1 N! w Ш i ш 1 I Vf I \ w,m; цриазд i IF 4 ifipm>v*' HUM V* %тл mk sioaoy DNicning Contents Foreword Preface xxiii xxv Chapter 1 Understanding LEGO Geometry 1 Introduction 2 Expressing Sizes

More information

2013 National Robotics Competition - GEN II Football

2013 National Robotics Competition - GEN II Football 2013 National Robotics Competition - GEN II Football General guidelines 1. A school team should comprise of 2 or 3 students and 1 school teacher. 2. All rules and regulations are subject to change without

More information

READ-ME-FIRST RMF-01. DOWNLOAD COMPLETE TECHNICAL OWNER MANUAL

READ-ME-FIRST RMF-01. DOWNLOAD COMPLETE TECHNICAL OWNER MANUAL RMF-01 READ-ME-FIRST DOWNLOAD COMPLETE TECHNICAL OWNER MANUAL www.nuvincicycling.com/downloads HOW TO GET STARTED WITH NFINITY TM GROUP SETS (330/380)? 2 Components of group sets 2 Shifting 3 Adjusting

More information

JETFIRST 150 RTA SYSTEM OPERATING MANUAL Version: 2 Feb 2012

JETFIRST 150 RTA SYSTEM OPERATING MANUAL Version: 2 Feb 2012 JETFIRST 150 RTA SYSTEM OPERATING MANUAL Version: 2 Feb 2012 UNIVERSITY OF TEXAS AT ARLINGTON Nanofabrication Research and Teaching Facility TABLE OF CONTENTS 1. Introduction....2 1.1 Scope of Work.....2

More information

CONSUMER MODEL INSTALLATION GUIDE

CONSUMER MODEL INSTALLATION GUIDE CONSUMER MODEL INSTALLATION GUIDE System requirements Windows System Requirements To use your TOMI and its software, your system should have: A Microsoft Windows compatible PC with a Pentium IV processor

More information

Boyne Area 4H Youth Soccer. Grades 1 & 2. Practice Lesson Plan Manual

Boyne Area 4H Youth Soccer. Grades 1 & 2. Practice Lesson Plan Manual Boyne Area 4H Youth Soccer Grades 1 & 2 Practice Lesson Plan Manual TABLE OF CONTENTS Table of Contents Under 8 Lesson Plans... 3 Under 8 --- Practice Session One... 4 Under 8 --- Practice Session Two...

More information