Basic NXT-G Programming

Size: px
Start display at page:

Download "Basic NXT-G Programming"

Transcription

1 Basic NXT-G Programming

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

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

4 Forward 2, Back 2, Talk

5 02 Simple Structure - Loop.rbt Loop 36 times

6 Loop 36 times

7 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...

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

9 Branch on a Variable & Use Wires

10 Branch on a Sensor & Use Wires 03.1-Sensor And Branch.rbt

11 Branch on a Sensor & Use Wires

12 Design Principles & Strategies

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

14 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

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

16 Basic Techniques

17 Incremental Development with Bluetooth Where to go from here?

18 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

19 Incremental Development with Bluetooth Mission 1 - Basic

20 Incremental Development with Bluetooth

21 Hold one wheel still Precise Turns Left Face! 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

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

23 Precise Turns Left Face!

24 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

25 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 Watch: 1 House & Core Rig Slow Mo video.mp4

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

27 Sensors When should I stop?

28 Sensors When should I stop?

29 Sensors When should I stop? Go Forward until you see dark Use a move and a wait block Then add a stop block Check your light levels The wait until sensor block is one way to stop on a line... Our way is better when you need both power and accuracy. Now we'll build an improved loop checking sensor every 6 degrees Then try changing the number of degrees

30 Sensors When should I stop?

31 Sensors When should I stop?

32 Medium Techniques

33 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

34 MyBlocks Good things come in small packages

35 MyBlocks Good things come in small packages

36 MyBlocks Good things come in small packages

37 MyBlocks Good things come in small packages

38 MyBlocks Good things come in small packages

39 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.

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

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

42 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 Use your own loops to check sensors and control movement for best accuracy CONTROL your own destiny by writing your own code

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

44 Happy Birthday Kate

45 Advanced Techniques

46 MyBlocks with Parameters Siri, take me here! Parameters make MyBlocks reusable in more situations MyBlocks become adaptable You only program 1 MyBlock that is applicable in different scenarios

47 MyBlocks with Parameters Siri, take me here! Take our two part turn and add direction math Determine desired direction Add a variable for input Cut the wire and make a MyBlock!

48 MyBlocks with Parameters

49 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?

50 Sensor Calibration Is it night or just cloudy?

51 Sensor Calibration Is it night or just cloudy?

52 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

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

54 Position Registration Our Favorite, X marks the spot

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

56 Position Registration Our Favorite, X marks the spot

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

58 Position Registration Our Favorite, X marks the spot

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

60 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! 2 Slow Motion Video How it's supposed to work.mp4 3 Slow Motion Video How it sometimes failed.mp4 4 Slow Motion Video How we fixed it.mp4

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

62 Dependent Threads & Synchronization throwing the newspaper while riding your bike Our Grey Balls mission from Climate Connection really showed smoothness of dependent threads. 5 Philip & Jacob 400 point run - FLL First Lego League 2009 Climate Connections Robot Run.mp4

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

64 Master Programs/Menus/Scripting Your wish is my command We use a Master Program We have a plan and a script FIRST changed the rules because of the Cougars's mission checklist!

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

66 Master Programs/Menus/Scripting Your wish is my command We use a Master Program We have a plan and a script FIRST changed the rules because of the Cougars's mission checklist! Our Master Program helps us follow our plan and do it quickly

67 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

68 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

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

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

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

72 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

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

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

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

76 Timers When will this match be over?

77 Timers When will this match be over?

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

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

80 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.

81 Miscellaneous Innovate Early Consolidate Late

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

83 Resources cfabe d-8b76-c7e23d41f9b8 Brian Davis Ph.D., Adjunct Assistant Professor at Indiana University South Bend, & LEGO MDP

84 Put It All Together!

85 Our Thanks to...

Basic NXT-G Programming

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

BUILDING A COMPETITION ROBOT SESHAN BROTHERS

BUILDING A COMPETITION ROBOT SESHAN BROTHERS BUILDING A COMPETITION ROBOT SESHAN BROTHERS OUR RULES FOR ROBOT DESIGN RULE #1: Take your time to build your base robot before jumping into attachment building and solving missions. RULE #2: If you are

More information

Robot Design.

Robot Design. Robot Design Michael Hartwig kcfllref@gmail.com Agenda 2016 KC Region robots Design Elements and Process Robot Design Attachment Design Missions Demonstration Resources Questions 9/9/2017 2017 KC FLL Coaches

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

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

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

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

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

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

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

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

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

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

Instructional Technology Center

Instructional Technology Center Partner Teacher Night March 2017 - Lego WeDo 2.0 What are Lego WeDos? WeDos are lego sets that come with a power source and a motor that allows students to create lego constructions that move like robots.

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

Patterns of Building LEGO MINDSTORMS Robots

Patterns of Building LEGO MINDSTORMS Robots Patterns of Building LEGO MINDSTORMS Robots KYLE BROWN, IBM Software Services for WebSphere This paper discusses patterns found in the design and programming of robots built using LEGO MINDSTORMS, particularly

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

Blue-Bot TEACHER GUIDE

Blue-Bot TEACHER GUIDE Blue-Bot TEACHER GUIDE Using Blue-Bot in the classroom Blue-Bot TEACHER GUIDE Programming made easy! Previous Experiences Prior to using Blue-Bot with its companion app, children could work with Remote

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

Note to Teacher. Description of the investigation. Time Required. Materials. Procedures for Wheel Size Matters TEACHER. LESSONS WHEEL SIZE / Overview

Note to Teacher. Description of the investigation. Time Required. Materials. Procedures for Wheel Size Matters TEACHER. LESSONS WHEEL SIZE / Overview In this investigation students will identify a relationship between the size of the wheel and the distance traveled when the number of rotations of the motor axles remains constant. It is likely that many

More information

Instructors. Manual GEARED. After-School Robotics Program By Haley Hanson

Instructors. Manual GEARED. After-School Robotics Program By Haley Hanson Instructors GEARED UP Manual After-School Robotics Program By Haley Hanson Table of Contents Introduction 3 Before you Start 4 Program Overview 5 Proposed Timeline 6 Itemized Materials List and Sample

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

Using the Microscope for a NANSLO Remote Web-based Science Lab Activity

Using the Microscope for a NANSLO Remote Web-based Science Lab Activity Using the Microscope for a NANSLO Remote Web-based Science Lab Activity MICROSCOPE RWSL LAB INTERFACE INSTRUCTIONS The Remote Web-based Science Lab (RWSL) microscope is a high quality digital microscope

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

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

Robot Class. Are all robots created equal?

Robot Class. Are all robots created equal? Robot Class Are all robots created equal? Robot Class Points to Remember: We add classes as we see new types of robots! None of the Classifications are any better (or worse) than any other. Robots can

More information

In this project you ll learn how to create a platform game, in which you have to dodge the moving balls and reach the end of the level.

In this project you ll learn how to create a platform game, in which you have to dodge the moving balls and reach the end of the level. Dodgeball Introduction In this project you ll learn how to create a platform game, in which you have to dodge the moving balls and reach the end of the level. Step 1: Character movement Let s start by

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

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

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

Autonomous Aerial Robot Tournament KISS Institute for Practical Robotics

Autonomous Aerial Robot Tournament KISS Institute for Practical Robotics 2018 Autonomous Aerial Robot Tournament KISS Institute for Practical Robotics Document Version 1.1 Table of Contents KIPR / Botball / GCER Sponsors... 3 Change Log... 4 KIPR Autonomous Aerial Robot Tournament...

More information

FIRST LEGO LEAGUE. PowerUp Summer Game. Presented by FRC 6328

FIRST LEGO LEAGUE. PowerUp Summer Game. Presented by FRC 6328 FIRST LEGO LEAGUE PowerUp Summer Game 2018 Presented by FRC 6328 FLL POWER UP OVERVIEW The purpose of the FLL PowerUP game is to provide an engaging summer program for FLL students that will help prepare

More information

4-H TECH WIZARDS ROBOTICS RALLY

4-H TECH WIZARDS ROBOTICS RALLY 4-H TECH WIZARDS ROBOTICS RALLY FRIDAY, JANUARY 25, 2013 5:00 PM -- 7:30 PM MILWAUKEE CO COOPERATIVE EXTENSION OFFICE 9501 W WATERTOWN PLANK RD. BLDG A WAUWATOSA, WI 53226 INFORMATION & REGISTRATION PACKET

More information

The power of Math in LEGO Robotics

The power of Math in LEGO Robotics The power of Math in LEGO Robotics Disseminator: Marco Diez marcodiez@dadeschools.net Howard D. McMillan Middle School (Mail Code: 6441) 13100 SW 59 ST. Miami, FL 33183 For information concerning Ideas

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

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

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

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

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

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 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

Robodyssey Mini Roach

Robodyssey Mini Roach Robodyssey Mini Roach Assembly Instructions Version 1.1 Robodyssey Systems, LLC. Phone/Fax: 609-585-8535 20 Quimby Avenue Web: www.robodyssey.com Trenton, New Jersey 08610 Email: info@robodyssey.com Copright

More information

Foundation - 2. Exploring how local products, services and environments are designed by people for a purpose and meet social needs

Foundation - 2. Exploring how local products, services and environments are designed by people for a purpose and meet social needs Foundation - 2 LEGO Education Technologies and society Identify how people design and produce familiar products, services and environments and consider sustainability to meet personal and local community

More information

1: Introduction : Caution : Tips for Reading this Manual : Preface : System Highlights : Receiver

1: Introduction : Caution : Tips for Reading this Manual : Preface : System Highlights : Receiver 1: Introduction....1 1 2: Caution.... 2 2 3: Tips for Reading this Manual....3 3 4: Preface....4 4 5: System Highlights....6 6 6: Receiver..7 7 6.1: Specifications......7 7 6.2: Receiver Operation... 7

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

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

OZOBOT BASIC TRAINING LESSON 1 WHAT IS OZOBOT?

OZOBOT BASIC TRAINING LESSON 1 WHAT IS OZOBOT? OZOBOT BASIC TRAINING LESSON 1 WHAT IS OZOBOT? What students will learn What kind of a robot is Ozobot? How does Ozobot sense its environment and move in it? How can you give commands to Ozobot? Topics

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

Your EdVenture into Robotics 10 Lesson plans

Your EdVenture into Robotics 10 Lesson plans Your EdVenture into Robotics 10 Lesson plans Activity sheets and Worksheets Find Edison Robot @ Search: Edison Robot Call 800.962.4463 or email custserv@ Lesson 1 Worksheet 1.1 Meet Edison Edison is a

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

Note to the Teacher. Description of the investigation. Time Required. Additional Materials VEX KITS AND PARTS NEEDED

Note to the Teacher. Description of the investigation. Time Required. Additional Materials VEX KITS AND PARTS NEEDED In this investigation students will identify a relationship between the size of the wheel and the distance traveled when the number of rotations of the motor axles remains constant. Students are required

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

EE 340L Experiment 6: Synchronous Generator - Operation with the Grid

EE 340L Experiment 6: Synchronous Generator - Operation with the Grid EE 340L Experiment 6: Synchronous Generator - Operation with the Grid The synchronous machine (see Fig. 1) is mechanically coupled to the Four-Quadrant Dynamometer/Power Supply (see Fig. 2) using a timing

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

Dumpster Optics BENDING LIGHT REFLECTION

Dumpster Optics BENDING LIGHT REFLECTION Dumpster Optics BENDING LIGHT REFLECTION WHAT KINDS OF SURFACES REFLECT LIGHT? CAN YOU FIND A RULE TO PREDICT THE PATH OF REFLECTED LIGHT? In this lesson you will test a number of different objects to

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