Basic NXT-G Programming

Size: px
Start display at page:

Download "Basic NXT-G Programming"

Transcription

1 Basic NXT-G Programming

2 NXT-G Sequence Beams Blocks Structures (special blocks) Wires (connect ports on blocks & structures)

3 Forward 2, Back 2, Talk 01-Basic Program.rbt

4 Loop 36 times 02 Simple Structure - Loop.rbt

5 Branch on a Variable & Use Wires What's a Variable? It's a box to put something in, like text, a number, or a true/false value. Why might we use a Variable? To reference it later in the program. What is a Compare block? A Compare block tests the value of a numeric variable against a another number. When might we use a Compare block? To test the value of a sensor...

6 Branch on a Variable & Use Wires 03 Variables.rbt 03-Variables.rbt

7 Branch on a Sensor & Use Wires Ex t ra C re di t! 03.1-Sensor And Branch.rbt

8 Design Principles & Strategies

9 Design Principles & Strategies KISS Tool Design First Then Program Leapfrog Development Competitive Development Test Repeatedly Change 1 Small Thing at a Time Test Repeatedly

10 Design Principles & Strategies KISS Quick Attachment Switching Specialized Tools Test Repeatedly Stiff & Stable is Repeatable and Reliable Leverage Change 1 Small Thing At A Time Repetitive Testing Slow Motion Video

11 Tactical Techniques Standard Starting Location Standard Starting Configuration Straight Lines using Move Blocks Pivot Turns (some folks call these Swing Turns)

12 Basic Techniques

13 Incremental Development with Bluetooth Where to go from here?

14 Incremental Development with Bluetooth Now we will write a program together using Bluetooth incremental development Move Forward Lower Arm Trapping 3 Pylons and Blue Ring Backup to Base Raise Arm Back to Starting Position

15 Incremental Development with Bluetooth Mission 1 - Basic

16 Precise Turns Left Face! Hold one wheel still Drive with the other wheel Make your drive in two parts, slow then fast You re not done until you have strung it together with the moves before and after the turn

17 Precise Turns Left Face! 04-Left Face.rbt

18 Video What s really going on here? Once we looked at a slow motion video of our robot we found out we hadn t really been seeing what our robot was doing

19 Video What s really going on here? We're going to show you: Video at full speed Video in slow motion Video in frame by frame

20 Sensors When should I stop? Go Forward until you see dark Use a move and a wait block Check your light levels

21 Sensors When should I stop?

22 Sensors When should I stop? Go Forward until you see dark Use a move and a wait block Check your light levels The wait until sensor block is one way to stop on a line... We like our way better. Now we'll build an improved loop checking sensor every 6 degrees

23 Sensors When should I stop?

24 Medium Techniques

25 MyBlocks Good things come in small packages Take our Go to Dark loop program and make it a MyBlock Combine a move with our Go to Dark MyBlock

26 MyBlocks Good things come in small packages

27 MyBlocks Good things come in small packages

28 MyBlocks Good things come in small packages

29 Multi-Threaded Programming walking and chewing gum at the same time Advance on the blue ring while lowering the arm to just above the blue ring. Continue to move forward slowly while lowering the arm the rest of the way. Return to base.

30 Multi-Threaded Programming walking and chewing gum at the same time

31 Multi-Threaded Programming walking and chewing gum at the same time

32 More Tactical Techniques Standard Starting Location Standard Starting Configuration Straight Lines using Move Blocks Pivot Turns 1-Count Loops to Synchronize Threads Crowbars to pry open loops and switches Avoid Move Unlimited with Wait Sensor CONTROL your own destiny by writing your own code

33 Multi-Threaded Programming walking and chewing gum at the same time

34 Advanced Techniques

35 Sensor Calibration Is it night or just cloudy? First we'd like to explain the Calibrate Block Then we'll show you how we use it in our Calibrate program We've posted Cougar Calibrate.rbc, our calibrate program, on CougarRobot.com Why is Cougar Calibrate better?

36 Sensor Calibration Is it night or just cloudy?

37 Sensor Calibration Is it night or just cloudy?

38 Position Registration Our Favorite, X marks the spot How should I register my position? 1.Register using touch 2.Register using light 3.Register using odometry What should I register my position against? 1.The strategic object you are manipulating 2.The mat 3.Field walls

39 Position Registration Our Favorite, X marks the spot Back to Wall

40 Position Registration Our Favorite, X marks the spot

41 Position Registration Our Favorite, X marks the spot Back to Wall Back to Line

42 Position Registration Our Favorite, X marks the spot

43 Position Registration Our Favorite, X marks the spot Back to Wall Back to Line Advance to Line

44 Position Registration Our Favorite, X marks the spot

45 Position Registration Our Favorite, X marks the spot Back to Wall Back to Line Advance to Line We've posted Cougar Advance To Line.rbt on our website CougarRobot.com.

46 Dependent Threads & Synchronization throwing the newspaper while riding your bike Let's take a look at our Final Mission, CA Black 5-8 Timmy and Friends! The turn in front of the dynamometer is now jam-proof!

47 Dependent Threads & Synchronization throwing the newspaper while riding your bike

48 Dependent Threads & Synchronization throwing the newspaper while riding your bike Our Grey Balls mission from Climate Connection really showed smoothness of dependent threads.

49 Dependent Threads & Synchronization throwing the newspaper while riding your bike

50 Timers When will this match be over? Here's how we used a timer in our master program during Climate Connections

51 Timers When will this match be over?

52 Timers When will this match be over?

53 Master Programs/Menus/Scripting Your wish is my command We use a Master Program We have a plan and a script Our Master Program helps us follow it quickly

54 Master Programs/Menus/Scripting Your wish is my command Let's build a simple sequencer. Make 01-Basic into a MyBlock Make 02-Loop 36 times into a MyBlock Make 5.4 Go To Dark into a MyBlock

55 Master Programs/Menus/Scripting Your wish is my command Let's build a simple sequencer. Start a new program Drop the 3 MyBlocks onto a sequence beam Add wait blocks Add a sound at the start

56 Master Programs/Menus/Scripting Your wish is my command

57 Master Programs/Menus/Scripting Your wish is my command Now Check out a Full Featured Sequencer...

58 Master Programs/Menus/Scripting Your wish is my command

59 Master Programs/Menus/Scripting Your wish is my command For the Smart Move challenge we improved our Master Program by altering LB or EB program. LB (left button) is repeat last mission EB (enter button) is run next mission. We added RB (right button) which jumps ahead one mission in the sequence Our new program is LB or EB or RB

60 Master Programs/Menus/Scripting Your wish is my command

61 Master Programs/Menus/Scripting Your wish is my command

62 Resources id=c3dcfabe d-8b76-c7e23d41f9b8 Brian Davis Ph.D., Adjunct Assistant Professor at Indiana University South Bend, & LEGO MDP

63 Miscellaneous TIME is your most valuable resource Make choices that put you in CONTROL

64 Miscellaneous 60ish blocks per program At roughly 60 blocks per program the NXT-G editor will start to get really flakey

65 Miscellaneous Know how many degrees or rotations per inch You should be able to predict the numbers to feed to a move block by using a tape measure. You should also be able to predict the numbers to make the robot turn 90 degrees.

66 Miscellaneous NXT-G is Good at Modularization Nest and Parameterize Your Programs

67 Miscellaneous Innovate Early Consolidate Late

68 Miscellaneous Version control (can use Pack and Go ) Backup solution (can use 7-Zip)

69 Put It All Together!

70 Our Thanks to...

Basic NXT-G Programming

Basic NXT-G Programming Basic NXT-G Programming Sequence Beams Blocks NXT-G Structures (special blocks) Wires (connect ports on blocks & structures) Forward 2, Back 2, Talk 01-Basic Program.rbt Forward 2, Back 2, Talk 02 Simple

More information

Robotics using Lego Mindstorms EV3 (Intermediate)

Robotics using Lego Mindstorms EV3 (Intermediate) Robotics using Lego Mindstorms EV3 (Intermediate) Facebook.com/roboticsgateway @roboticsgateway Robotics using EV3 Are we ready to go Roboticists? Does each group have at least one laptop? Do you have

More information

acknowledgments...xv introduction...xvii 1 LEGO MINDSTORMS NXT 2.0: people, pieces, and potential getting started with the NXT 2.0 set...

acknowledgments...xv introduction...xvii 1 LEGO MINDSTORMS NXT 2.0: people, pieces, and potential getting started with the NXT 2.0 set... acknowledgments...xv introduction...xvii about this book...xvii part I: introduction to LEGO MINDSTORMS NXT 2.0...xviii part II: building...xviii part III: programming...xviii part IV: projects...xix companion

More information

Robot Programming Manual

Robot Programming Manual 2 T Program Robot Programming Manual Two sensor, line-following robot design using the LEGO NXT Mindstorm kit. The RoboRAVE International is an annual robotics competition held in Albuquerque, New Mexico,

More information

EV3 Advanced Topics for FLL

EV3 Advanced Topics for FLL EV3 Advanced Topics for FLL Jim Keller GRASP Laboratory University of Pennsylvania August 14, 2016 Part 1 of 2 Topics Intro to Line Following Basic concepts Calibrate Calibrate the light sensor Display

More information

2.4 Sensorized robots

2.4 Sensorized robots 66 Chap. 2 Robotics as learning object 2.4 Sensorized robots 2.4.1 Introduction The main objectives (competences or skills to be acquired) behind the problems presented in this section are: - The students

More information

An Introduction to Programming using the NXT Robot:

An Introduction to Programming using the NXT Robot: An Introduction to Programming using the NXT Robot: exploring the LEGO MINDSTORMS Common palette. Student Workbook for independent learners and small groups The following tasks have been completed by:

More information

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School elvonbur@mpsaz.org Water Sabers (2008)* High Heelers (2009)* Helmeteers (2009)* Cyber Sleuths (2009)* LEGO All Stars

More information

The Nomenclature and Geometry of LEGO

The Nomenclature and Geometry of LEGO The Nomenclature and Geometry of LEGO AN OVERVIEW OF LEGO EV3 MINDSTORMS ELEMENTS AND HOW THEY WORK TOGETHER UPDATED 9/27/2015 Required Stuff Please do not wander the building. Rest Rooms Location. Food

More information

1-11. Mini Sumo Bot. Building Instructions. Fun Projects for your LEGO MINDSTORMS NXT! Home Projects Help Contacts. Building: Program:

1-11. Mini Sumo Bot. Building Instructions. Fun Projects for your LEGO MINDSTORMS NXT! Home Projects Help Contacts. Building: Program: Fun Projects for your LEGO MINDSTORMS NXT! Home Projects Help Contacts Mini Sumo Bot Building: Program: Building Instructions 1-11 Start by building the Castor Bot. Click the picture for building instructions.

More information

Where C= circumference, π = 3.14, and D = diameter EV3 Distance. Developed by Joanna M. Skluzacek Wisconsin 4-H 2016 Page 1

Where C= circumference, π = 3.14, and D = diameter EV3 Distance. Developed by Joanna M. Skluzacek Wisconsin 4-H 2016 Page 1 Instructor Guide Title: Distance the robot will travel based on wheel size Introduction Calculating the distance the robot will travel for each of the duration variables (rotations, degrees, seconds) can

More information

Deriving Consistency from LEGOs

Deriving Consistency from LEGOs Deriving Consistency from LEGOs What we have learned in 6 years of FLL and 7 years of Lego Robotics by Austin and Travis Schuh 1 2006 Austin and Travis Schuh, all rights reserved Objectives Basic Building

More information

Robotics Workshop. for Parents and Teachers. September 27, 2014 Wichita State University College of Engineering. Karen Reynolds

Robotics Workshop. for Parents and Teachers. September 27, 2014 Wichita State University College of Engineering. Karen Reynolds Robotics Workshop for Parents and Teachers September 27, 2014 Wichita State University College of Engineering Steve Smith Christa McAuliffe Academy ssmith3@usd259.net Karen Reynolds Wichita State University

More information

LEGO Mindstorms Class: Lesson 1

LEGO Mindstorms Class: Lesson 1 LEGO Mindstorms Class: Lesson 1 Some Important LEGO Mindstorm Parts Brick Ultrasonic Sensor Light Sensor Touch Sensor Color Sensor Motor Gears Axle Straight Beam Angled Beam Cable 1 The NXT-G Programming

More information

Lab book. Exploring Robotics (CORC3303)

Lab book. Exploring Robotics (CORC3303) Lab book Exploring Robotics (CORC3303) Dept of Computer and Information Science Brooklyn College of the City University of New York updated: Fall 2011 / Professor Elizabeth Sklar UNIT A Lab, part 1 : Robot

More information

Welcome to. NXT Basics. Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher

Welcome to. NXT Basics. Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher Welcome to NXT Basics Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher Outline Have you met the Lizard? Introducing the Platform Lego Parts Motors Sensors

More information

Nebraska 4-H Robotics and GPS/GIS and SPIRIT Robotics Projects

Nebraska 4-H Robotics and GPS/GIS and SPIRIT Robotics Projects Name: Club or School: Robots Knowledge Survey (Pre) Multiple Choice: For each of the following questions, circle the letter of the answer that best answers the question. 1. A robot must be in order to

More information

e d u c a t i o n Detect Dark Line Objectives Connect Teacher s Notes

e d u c a t i o n Detect Dark Line Objectives Connect Teacher s Notes e d u c a t i o n Objectives Learn how to make the robot interact with the environment: Detect a line drawn on the floor by means of its luminosity. Hint You will need a flashlight or other light source

More information

FLL Programming Workshop Series

FLL Programming Workshop Series FLL Programming 2017 Workshop Series 2017 1 Prerequisites & Equipment Required Basic computer skills Assembled EV3 Educational robot or equivalent Computer or Laptop with LEGO Mindstorms software installed

More information

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX.

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX. Review the following material on sensors. Discuss how you might use each of these sensors. When you have completed reading through this material, build a robot of your choosing that has 2 motors (connected

More information

Robot Olympics: Programming Robots to Perform Tasks in the Real World

Robot Olympics: Programming Robots to Perform Tasks in the Real World Robot Olympics: Programming Robots to Perform Tasks in the Real World Coranne Lipford Faculty of Computer Science Dalhousie University, Canada lipford@cs.dal.ca Raymond Walsh Faculty of Computer Science

More information

FLL Coaches Clinic Chassis and Attachments. Patrick R. Michaud

FLL Coaches Clinic Chassis and Attachments. Patrick R. Michaud FLL Coaches Clinic Chassis and Attachments Patrick R. Michaud pmichaud@pobox.com Erik Jonsson School of Engineering and Computer Science University of Texas at Dallas September 23, 2017 Presentation Outline

More information

Robotic Programming. Skills Checklist

Robotic Programming. Skills Checklist Robotic Programming Skills Checklist Name: Motors Motors Direction Steering Power Duration Complete B & C Forward Straight 75 3 Rotations B & C Forward Straight 100 5 Rotatins B & C Forward Straight 50

More information

S B Patil Public School, Pune

S B Patil Public School, Pune LS Creative Learnings Pvt Ltd., STEM-Robotics Education Report for Jan 2018 S B Patil Public School, Pune 1 Grade: III Jan 2017 Simple machine Inclined plane Lesson To understand about types of simple

More information

Pre-Day Questionnaire

Pre-Day Questionnaire LEGO Mindstorms Pre-Day Questionnaire Your Age? Please select your age from the options below: a) 11 b) 12 c) 13 d) 14 e) 15 or Older 0 0 0 0 0 11 12 13 14 15&or&Older Good at Problem Solving? Do you think

More information

Agent-based/Robotics Programming Lab II

Agent-based/Robotics Programming Lab II cis3.5, spring 2009, lab IV.3 / prof sklar. Agent-based/Robotics Programming Lab II For this lab, you will need a LEGO robot kit, a USB communications tower and a LEGO light sensor. 1 start up RoboLab

More information

Line-Follower Challenge

Line-Follower Challenge Line-Follower Challenge Pre-Activity Quiz 1. How does a color sensor work? Does the color sensor detect white or black as a higher amount of light reflectivity? Absorbance? 2. Can you think of a method

More information

Chapter 14. using data wires

Chapter 14. using data wires Chapter 14. using data wires In this fifth part of the book, you ll learn how to use data wires (this chapter), Data Operations blocks (Chapter 15), and variables (Chapter 16) to create more advanced programs

More information

Worksheet Answer Key: Tree Measurer Projects > Tree Measurer

Worksheet Answer Key: Tree Measurer Projects > Tree Measurer Worksheet Answer Key: Tree Measurer Projects > Tree Measurer Maroon = exact answers Magenta = sample answers Construct: Test Questions: Caliper Reading Reading #1 Reading #2 1492 1236 1. Subtract to find

More information

The Robot Olympics: A competition for Tribot s and their humans

The Robot Olympics: A competition for Tribot s and their humans The Robot Olympics: A Competition for Tribot s and their humans 1 The Robot Olympics: A competition for Tribot s and their humans Xinjian Mo Faculty of Computer Science Dalhousie University, Canada xmo@cs.dal.ca

More information

Ev3 Robotics Programming 101

Ev3 Robotics Programming 101 Ev3 Robotics Programming 101 1. EV3 main components and use 2. Programming environment overview 3. Connecting your Robot wirelessly via bluetooth 4. Starting and understanding the EV3 programming environment

More information

1. Mechanical Arms Hardware

1. Mechanical Arms Hardware TC.0.1 Analysis 1. Mechanical Arms Hardware TP 8.1: ATLAS apparatus must be able to simulate touch actions on a touchscreen MFD. TP 8.2: ATLAS apparatus must be able to simulate drag and drop actions on

More information

LEGO BASED CHALLENGE. 1. Material

LEGO BASED CHALLENGE. 1. Material LEGO BASED CHALLENGE 1. Material 1. The controller, motors and sensors used to assemble robots must be from LEGO MINDSTORMS sets (NXT or EV3). 2. Only LEGO branded elements may be used to construct the

More information

BEGINNER PROGRAMMING LESSON

BEGINNER PROGRAMMING LESSON Basic Line Follower (NXT) By Sanjay and Arvind Seshan BEGINNER PROGRAMMING LESSON LESSON OBJECTIVES 1. Learn how humans and robots follow lines 2. Learn how to get a robot to follow a line using the NXT

More information

ORTOP Modular Robot v3.0 Arm Assembly

ORTOP Modular Robot v3.0 Arm Assembly Base Plate Assembly Parts Needed: Arm Assembly BAG 1 2 Socket Head Cap Screw, 1-1/4" 2 Socket Head Cap Screw, 1/2" 2 Button Head Cap Screw, 3/8" 6 Nuts 1 Gear Hub Spacer 1 Flat Building Plate 1 Single

More information

INNOVATION. Brilliant DELUXE STITCH SYSTEM ENDLESS OPPORTUNITIES 5D ORGANIZER AND 5D QUICKFONT SOFTWARE INCLUDED

INNOVATION. Brilliant DELUXE STITCH SYSTEM ENDLESS OPPORTUNITIES 5D ORGANIZER AND 5D QUICKFONT SOFTWARE INCLUDED Features & Benefits INNOVATION DELUXE STITCH SYSTEM The unique HUSQVARNA VIKING deluxe Stitch System has two ways to feed the needle thread. It automatically selects the best stitch system to improve the

More information

Scratch for Beginners Workbook

Scratch for Beginners Workbook for Beginners Workbook In this workshop you will be using a software called, a drag-anddrop style software you can use to build your own games. You can learn fundamental programming principles without

More information

Pre-Activity Quiz. 2 feet forward in a straight line? 1. What is a design challenge? 2. How do you program a robot to move

Pre-Activity Quiz. 2 feet forward in a straight line? 1. What is a design challenge? 2. How do you program a robot to move Maze Challenge Pre-Activity Quiz 1. What is a design challenge? 2. How do you program a robot to move 2 feet forward in a straight line? 2 Pre-Activity Quiz Answers 1. What is a design challenge? A design

More information

Laboratory Seven Stepper Motor and Feedback Control

Laboratory Seven Stepper Motor and Feedback Control EE3940 Microprocessor Systems Laboratory Prof. Andrew Campbell Spring 2003 Groups Names Laboratory Seven Stepper Motor and Feedback Control In this experiment you will experiment with a stepper motor and

More information

Mindstorms NXT. mindstorms.lego.com

Mindstorms NXT. mindstorms.lego.com Mindstorms NXT mindstorms.lego.com A3B99RO Robots: course organization At the beginning of the semester the students are divided into small teams (2 to 3 students). Each team uses the basic set of the

More information

Chassis & Attachments 101. Chassis Overview

Chassis & Attachments 101. Chassis Overview Chassis & Attachments 101 Chassis Overview 2016 1 Introductions Rest rooms location. Food and Drink: Complementary bottled water. Snacks available for purchase from UME FTC teams. Cell phones. Today presentation

More information

4-H Mindstorm EV3 Robotics Camp Mills County 4 Day Camp Day 1, Tuesday AGENDA

4-H Mindstorm EV3 Robotics Camp Mills County 4 Day Camp Day 1, Tuesday AGENDA 4-H Mindstorm EV3 Robotics Camp Mills County 4 Day Camp Day 1, Tuesday 8:30-9:15 am Registration 9:15-10:30 a..m Belonging Getting to Know You Activities 1. Center Stage a. Name b. School and Grade c.

More information

HOLY ANGEL UNIVERSITY COLLEGE OF INFORMATION AND COMMUNICATIONS TECHNOLOGY ROBOT MODELING AND PROGRAMMING COURSE SYLLABUS

HOLY ANGEL UNIVERSITY COLLEGE OF INFORMATION AND COMMUNICATIONS TECHNOLOGY ROBOT MODELING AND PROGRAMMING COURSE SYLLABUS HOLY ANGEL UNIVERSITY COLLEGE OF INFORMATION AND COMMUNICATIONS TECHNOLOGY ROBOT MODELING AND PROGRAMMING COURSE SYLLABUS Code : 6ROBOTMOD Prerequisite : 6ARTINTEL Credit : 3 s (3 hours LAB) Year Level:

More information

M280D M280D. From the movie

M280D M280D. From the movie M280D From the movie M280D Discover the magical world of advanced sewing and embroidery featuring Disney characters 125 built-in embroidery patterns, including 45 designs featuring Disney characters 181

More information

Sew Beautiful. with Kirei NX7 JUKI: SEWING MACHINES WITH HISTORY

Sew Beautiful. with Kirei NX7 JUKI: SEWING MACHINES WITH HISTORY Sew Beautiful with Kirei N7 JUKI: SEWING MACHINES WITH HISTORY Since their introduction in 1947, JUKI s home sewing machines have been a brand loved around the world. JUKI's home sewing machines contain

More information

Parts of a Lego RCX Robot

Parts of a Lego RCX Robot Parts of a Lego RCX Robot RCX / Brain A B C The red button turns the RCX on and off. The green button starts and stops programs. The grey button switches between 5 programs, indicated as 1-5 on right side

More information

Sample Pages. Classroom Activities for the Busy Teacher: NXT. 2 nd Edition. Classroom Activities for the Busy Teacher: NXT -

Sample Pages. Classroom Activities for the Busy Teacher: NXT. 2 nd Edition. Classroom Activities for the Busy Teacher: NXT - Classroom Activities for the Busy Teacher: NXT 2 nd Edition Table of Contents Chapter 1: Introduction... 1 Chapter 2: What is a robot?... 5 Chapter 3: Flowcharting... 11 Chapter 4: DomaBot Basics... 15

More information

Chassis & Attachments 101. Part 1: Chassis Overview

Chassis & Attachments 101. Part 1: Chassis Overview Chassis & Attachments 101 Part 1: Chassis Overview 2017 1 Introductions Rest rooms location. Food and Drink. Cell phones. Today presentation available at: http://www.roboplex.org/fll 2 What can be used

More information

contents in detail PART I GETTING STARTED acknowledgments...xvii

contents in detail PART I GETTING STARTED acknowledgments...xvii contents in detail acknowledgments...xvii introduction...xix why this book?...xix is this book for you?...xix how does this book work?...xix the discoveries...xix what to expect in each chapter...xx getting

More information

2018 First Responders 4-H Robotics Challenge Page 1

2018 First Responders 4-H Robotics Challenge Page 1 2018 First Responders 4-H Robotics Challenge Page 1 Contents 2018 First Responders 4-H Robotics Challenge... 3 1 Teams... 3 2 The Game... 3 2.1 Competition kit... 3 2.2 Field Mat... 3 2.3 Playing Field...

More information

Closed-Loop Transportation Simulation. Outlines

Closed-Loop Transportation Simulation. Outlines Closed-Loop Transportation Simulation Deyang Zhao Mentor: Unnati Ojha PI: Dr. Mo-Yuen Chow Aug. 4, 2010 Outlines 1 Project Backgrounds 2 Objectives 3 Hardware & Software 4 5 Conclusions 1 Project Background

More information

How Do You Make a Program Wait?

How Do You Make a Program Wait? How Do You Make a Program Wait? How Do You Make a Program Wait? Pre-Quiz 1. What is an algorithm? 2. Can you think of a reason why it might be inconvenient to program your robot to always go a precise

More information

2015 Maryland State 4-H LEGO Robotic Challenge

2015 Maryland State 4-H LEGO Robotic Challenge Trash Talk Utilizing Trash to Power the World 2015 Maryland State 4-H LEGO Robotic Challenge Through Trash Talk, 4-H members involved in robotics will create LEGO robots that complete tasks related to

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. LEGO Bowling Workbook

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. LEGO Bowling Workbook Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl LEGO Bowling Workbook Robots are devices, sometimes they run basic instructions via electric circuitry or on most occasions they can be programmable.

More information

LS Creative Learnings Pvt Ltd. STEM-Robotics Education. Report for Sep S.B. Patil Public School, Pune

LS Creative Learnings Pvt Ltd. STEM-Robotics Education. Report for Sep S.B. Patil Public School, Pune LS Creative s Pvt Ltd. STEM-Robotics Education Report for Sep 2017 S.B. Patil Public School, Pune 1 Sept 2017 Grade: III Helicopter To understand about different modes of transportation like airways. Science

More information

Episode 123: Alternating current

Episode 123: Alternating current Episode 123: Alternating current The aims are to distinguish alternating from direct currents and to remind your students of why ac is so important (they should already have met this at pre-16 level).

More information

Western Kansas Lego Robotics Competition April 16, 2018 Fort Hays State University

Western Kansas Lego Robotics Competition April 16, 2018 Fort Hays State University Western Kansas Lego Robotics Competition April 16, 2018 Fort Hays State University WELCOME FHSU is hosting our 12 th annual Lego robotics competition. The competition is open to all area middle school

More information

MN High School Robotics 2006 MISSIONS

MN High School Robotics 2006 MISSIONS MN High School Robotics 2006 MISSIONS ATOMIC FORCE MICROSCOPY Mission: Free the probe s nanotip. The robot must separate the nanotip from the material surface. The nanotip separated from the surface is

More information

Programming PIC Microchips

Programming PIC Microchips Programming PIC Microchips Fís Foghlaim Forbairt Programming the PIC microcontroller using Genie Programming Editor Workshop provided & facilitated by the PDST www.t4.ie Page 1 DC motor control: DC motors

More information

Innov-ís 4000D/4000 PREMIUM PACKAGE

Innov-ís 4000D/4000 PREMIUM PACKAGE Innov-ís 4000D/4000 PREMIUM PACKAGE Version 3.0 Upgrade Kit Operation Manual Before using this upgrade kit, be sure to read this Operation Manual for information on its correct use. CONTENTS Before You

More information

Here Comes the Sun. The Challenge

Here Comes the Sun. The Challenge Here Comes the Sun This activity requires ROBOLAB 2.0 or higher, the Infrared Transmitter and cable #9713, RCX #9709, elab sets #9680 and #9681. The Challenge Invent a car that finds the optimal light

More information

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis.

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. This user guide along with the videos included on the CD should have you on your way to perfect zero

More information

Line-Follower Challenge

Line-Follower Challenge Line-Follower Challenge Pre-Activity Quiz 1. How does a light sensor work? Does the light sensor detect white or black as a higher amount of light reflectivity? Absorbance? 2. Can you think of a method

More information

Unit 4: Robot Chassis Construction

Unit 4: Robot Chassis Construction Unit 4: Robot Chassis Construction Unit 4: Teacher s Guide Lesson Overview: Paul s robotic assistant needs to operate in a real environment. The size, scale, and capabilities of the TETRIX materials are

More information

the Board of Education

the Board of Education the Board of Education Voltage regulator electrical power (V dd, V in, V ss ) breadboard (for building circuits) power jack digital input / output pins 0 to 15 reset button Three-position switch 0 = OFF

More information

Newton s Laws of Motion Discovery

Newton s Laws of Motion Discovery Student handout Newton s First Law of Motion Discovery Stations Discovery Station: Wacky Washers 1. To prepare for this experiment, stack 4 washers one on top of the other so that you form a tower of washers.

More information

Lab 8: Introduction to the e-puck Robot

Lab 8: Introduction to the e-puck Robot Lab 8: Introduction to the e-puck Robot This laboratory requires the following equipment: C development tools (gcc, make, etc.) C30 programming tools for the e-puck robot The development tree which is

More information

Line Detection. Duration Minutes. Di culty Intermediate. Learning Objectives Students will:

Line Detection. Duration Minutes. Di culty Intermediate. Learning Objectives Students will: Line Detection Design ways to improve driving safety by helping to prevent drivers from falling asleep and causing an accident. Learning Objectives Students will: Explore the concept of the Loop Understand

More information

Positive Promotion: Use the FIRST and FTC logos in a manner that is positive and promotes FIRST.

Positive Promotion: Use the FIRST and FTC logos in a manner that is positive and promotes FIRST. You have incredibly creative opportunities in terms of designing your own identity. There are many examples of how teams brand their efforts with websites, incredible team logos on robots, T shirts, hats,

More information

Figure 3.1: This ranging sensor can measure the distance to nearby objects.

Figure 3.1: This ranging sensor can measure the distance to nearby objects. Robot Projects for RobotBASIC Volume I: The Fundamentals Copyright February 2014 by John Blankenship All rights reserved Project 3: Measuring Distances Previous projects have provided some fundamental

More information

Robotics Contest Contact: Robin Schamber

Robotics Contest Contact: Robin Schamber Robotics Contest Contact: Robin Schamber rschambe@uwyo.edu The Wyoming 4-H Robot Contest robotics contest is modeled after the National Robotics Challenge which began as the Society of Manufacturing Engineers

More information

Studuino Icon Programming Environment Guide

Studuino Icon Programming Environment Guide Studuino Icon Programming Environment Guide Ver 0.9.6 4/17/2014 This manual introduces the Studuino Software environment. As the Studuino programming environment develops, these instructions may be edited

More information

Using LEGO WeDo kits with Scratch

Using LEGO WeDo kits with Scratch Using LEGO WeDo kits with Scratch Before you begin: 1. Download and install Scratch from h:p://scratch.mit.edu 2. Connect WeDo s USB hub to your computer s USB port. 3. Connect the WeDo motor to the USB

More information

Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS

Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS OBJECTIVES - Familiarize the students in the area of automatization and control. - Familiarize the student with programming of toy robots. EQUIPMENT AND REQUERIED

More information

Liberty Pines Academy Russell Sampson Rd. Saint Johns, Fl 32259

Liberty Pines Academy Russell Sampson Rd. Saint Johns, Fl 32259 Liberty Pines Academy 10901 Russell Sampson Rd. Saint Johns, Fl 32259 Tickets Restrooms Come check out What is inside! Ready? Wait for me! Obus by Calder - 1972 Let s go guys! Black Zag Z by L. Nevelson

More information

RoboCup Sumo Workshop. Margaux Edwards July 2018

RoboCup Sumo Workshop. Margaux Edwards July 2018 RoboCup Sumo Workshop Margaux Edwards July 2018 Plan for today: The Challenge Designing your Robot Programming your Robot Ultrasonic Sensor Light/Colour Sensor Competition Time! The Challenge: What is

More information

understanding sensors

understanding sensors The LEGO MINDSTORMS EV3 set includes three types of sensors: Touch, Color, and Infrared. You can use these sensors to make your robot respond to its environment. For example, you can program your robot

More information

Features and Benefits

Features and Benefits Features and Benefits Designer Topaz 30 and 20 Features and Benefits Generous Capability LARGE EXTENDED SEWING SURFACE Sew large quilts, home dec projects, and garments easily New Swedish design provides

More information

Features and Benefits

Features and Benefits Features and Benefits DESIGNER TOPAZ 30 AND 20 FEATURES AND BENEFITS GENEROUS CAPABILITY LARGE EXTENDED SEWING SURFACE Sew large quilts, home dec projects, and garments easily New Swedish design provides

More information

Course: STEM Robotics Engineering Total Framework Hours up to: 600 CIP Code: Exploratory Preparatory

Course: STEM Robotics Engineering Total Framework Hours up to: 600 CIP Code: Exploratory Preparatory Camas School District Framework: Introductory Robotics Course: STEM Robotics Engineering Total Framework Hours up to: 600 CIP Code: 150405 Exploratory Preparatory Date Last Modified: 01/20/2013 Career

More information

Chapter 1. Robots and Programs

Chapter 1. Robots and Programs Chapter 1 Robots and Programs 1 2 Chapter 1 Robots and Programs Introduction Without a program, a robot is just an assembly of electronic and mechanical components. This book shows you how to give it a

More information

Motorized Balancing Toy

Motorized Balancing Toy Motorized Balancing Toy Category: Physics: Force and Motion, Electricity Type: Make & Take Rough Parts List: 1 Coat hanger 1 Motor 2 Electrical Wire 1 AA battery 1 Wide rubber band 1 Block of wood 1 Plastic

More information

RoboMind Challenges. Line Following. Description. Make robots navigate by itself. Make sure you have the latest software

RoboMind Challenges. Line Following. Description. Make robots navigate by itself. Make sure you have the latest software RoboMind Challenges Line Following Make robots navigate by itself Difficulty: (Medium), Expected duration: Couple of days Description In this activity you will use RoboMind, a robot simulation environment,

More information

GENERAL MACHINE FEATURES

GENERAL MACHINE FEATURES BERNINA 580 Sewing Stitch Package 227 Stitches 29 Practical, 8 Buttonholes, 2 Eyelets, 172 Decorative, 14 Quilting; 7 Alphabets + 2 Darning Programs Sewing view is shown. Embroidery module is also included.

More information

Pre-Activity Quiz. building a robot to fight another robot by trying to push it out of a ring? in the competition? the way when racing?

Pre-Activity Quiz. building a robot to fight another robot by trying to push it out of a ring? in the competition? the way when racing? Sumobot - RaceCar Challenge Pre-Activity Quiz 1. What must you keep in mind when building a robot to fight another robot by trying to push it out of a ring? 2. How can you use gears to your advantage in

More information

IW SERIES IRONWORKERS DURMA

IW SERIES IRONWORKERS DURMA IW SERIES IRONWORKERS BETTER PARTS BETTER PROFITS IW SERIES IRONWORKERS STANDARD EQUIPMENT Swing Away Stripper Punching Station Section Cutting Angle Cutting Flat Bar Shearing Notching Twist and Drop Punch

More information

E Technology: A. Innovations Activity: Introduction to Robotics

E Technology: A. Innovations Activity: Introduction to Robotics Science as Inquiry: As a result of their activities in grades 5 8, all students should develop Understanding about scientific inquiry. Abilities necessary to do scientific inquiry: identify questions,

More information

Catapult Engineering

Catapult Engineering With support from Oxfordshire County Council, Science Oxford is pleased to present; Catapult Engineering The Physics of Siege Weapons STEM Club Resource Pack Introduction: Catapult engineering involves

More information

Hare and Snail Challenges READY, GO!

Hare and Snail Challenges READY, GO! Hare and Snail Challenges READY, GO! Pre-Activity Quiz 1. What are some design considerations to make a fast robot? 2. What are some design considerations to make a slow robot? 2 Pre-Activity Quiz Answers

More information

After Performance Report Of the Robot

After Performance Report Of the Robot After Performance Report Of the Robot Engineering 112 Spring 2007 Instructor: Dr. Ghada Salama By Mahmudul Alam Tareq Al Maaita Ismail El Ebiary Section- 502 Date: May 2, 2007 Introduction: The report

More information

RUNNYMEDE COLLEGE & TECHTALENTS

RUNNYMEDE COLLEGE & TECHTALENTS RUNNYMEDE COLLEGE & TECHTALENTS Why teach Scratch? The first programming language as a tool for writing programs. The MIT Media Lab's amazing software for learning to program, Scratch is a visual, drag

More information

Activity Template. Subject Area(s): Science and Technology Activity Title: Header. Grade Level: 9-12 Time Required: Group Size:

Activity Template. Subject Area(s): Science and Technology Activity Title: Header. Grade Level: 9-12 Time Required: Group Size: Activity Template Subject Area(s): Science and Technology Activity Title: What s In a Name? Header Image 1 ADA Description: Picture of a rover with attached pen for writing while performing program. Caption:

More information

RLS2. Owner s Manual. Portable All-Band Radar and Laser Detector with GPS Technology

RLS2. Owner s Manual. Portable All-Band Radar and Laser Detector with GPS Technology RLS2 Owner s Manual Portable All-Band Radar and Laser Detector with GPS Technology K40 Consult Don t like to read manuals? Call our experienced K40 Consultants. We ll explain the whole thing. 800.323.5608

More information

MazeBot. Our Urban City. Challenge Manual

MazeBot. Our Urban City. Challenge Manual MazeBot Our Urban City Challenge Manual Updated as of 27 th February 2017 Eligibility Participants must be between the ages of 7 and 12 (inclusive) as of 31 December 2017. The minimum number of participants

More information

IEEE PSU Student Chapter Robotics Competition 2014/2015

IEEE PSU Student Chapter Robotics Competition 2014/2015 IEEE PSU Student Chapter Robotics Competition 2014/2015 Official Contest Rules Last revised: December 4, 2014 The IEEE Penn State Chapter is pleased to announce the third annual PSU IEEE Robotics Competition

More information

Versatile sewing and embroidery machine

Versatile sewing and embroidery machine Versatile sewing and embroidery machine Create high quality embroidery designs and sewing projects quickly and easily. 260mm x160mm embroidery area 72 built-in embroidery designs and 8 fonts Large sewing

More information

Simple Leggings Two girls. Same name. One mission. Teach the world to sew.

Simple Leggings Two girls. Same name. One mission. Teach the world to sew. Simple Simon and Company Simple Leggings Two girls. Same name. One mission. Teach the world to sew. Simple Leggings Sewing with knits is made easy with this simple leggings pattern. Once you are finished

More information

MV SERIES MV6 / MV6L / MV16 ARC WELDING AND HANDLING ROBOTS

MV SERIES MV6 / MV6L / MV16 ARC WELDING AND HANDLING ROBOTS MV SERIES MV6 / MV6L / MV16 ARC WELDING AND HANDLING ROBOTS M Remarkable Enhancements in Motion Performance MANIPULATORS High Speed - Smooth Movement Shortens Production Time hfaster, yet smoother motion

More information

Horizon Memory Craft Quilt Maker New Owner Lesson

Horizon Memory Craft Quilt Maker New Owner Lesson Ordinary Sewing Session: MC15000 Quilt Maker Embroidery Unit Power cord Knee Lift All the accessories that were packed with the machine Optional: Quilting Template for Ruler Work Fabric: Several 6 squares

More information

SINGLE SENSOR LINE FOLLOWER

SINGLE SENSOR LINE FOLLOWER SINGLE SENSOR LINE FOLLOWER One Sensor Line Following Sensor on edge of line If sensor is reading White: Robot is too far right and needs to turn left Black: Robot is too far left and needs to turn right

More information