Introductory Presentation

Slides:



Advertisements
Similar presentations
Robofest 2005 Introduction to Programming RIS 2.0 RCX Code.
Advertisements

Full Speed Ahead Introductory Presentation. Opening Activity Choose one of the objects to the right and in ten or more steps explain how it goes from.
NXT 2-Motor Car Adapted from Physics by Design, Second Edition, by Barbara Bratzel, College House Enterprises, 2007 MAXA ROBOTICS 2011.
Dublin Robotics Boosters NXT-Step Programming Workshop.
Follow The Guidelines Introductory Presentation. Opening Activity Make a prediction about how light sensors will use thresholds. Keep in mind: We used.
Introductory Presentation
Computer Basics Dayton Metro Library Place photo here May 20, 2015.
Right Face Introductory Presentation. Opening Activity How can you use this to make a right turn program? This is your program from Full Speed Ahead to.
Parallel Beams INTERMEDIATE EV3 PROGRAMMING LESSON By Droids Robotics
Reviewing Common Blocks for St. Agnes Elementary School Teachers by Jenny Chang Feb. 26th, 2007 USC & University Neighborhood Outreach Robotics STEM program.
LEGO Mindstorms NXT Programming We will be using the Common Palette for our Robots This is how you download your program onto the brick Drag and drop a.
®® Microsoft Windows 7 Windows Tutorial 1 Exploring the Basics of Microsoft Windows 7.
GIRLS Robotic Camp. Let’s Begin Meet and Greet – Camp leaders introduce themselves – Students introduce themselves.
Programming 101 The Common Palette Content provided by Connor Statham (6 th Grade Student) Formatting by Shannon Sieber.
Measured Turns Introductory Presentation. Opening Activity In the Right Face Activity, we made our robot turn right using the program below.
Hello My Name Is… Introductory Presentation. Opening Activity Think about the following: 1.When you are feeling sad, how do you act? 2.How would someone.
Programming a light sensor to follow a black line.
Using Waits, Loops and Switches WAIT please!. Waits, Loops and Switches Pre-Quiz 1. In programming, what is a loop? When is a loop useful? 2. How can.
Minds and Computers 3.1 Preview Spin left motor Spin right motor Wait until the motors have spun two rotations Stop left motor Stop right motor What five.
Vex Robotics Programming Sequence. Now that you’ve had some practice downloading and using the included programs, it's time to learn to write some of.
Obstacle Detection Introductory Presentation. Opening Activity If you were blindfolded, what senses would you use to find things in the room?
Clap On, Clap Off Introductory Presentation. Opening Activity What is a sensor? Can you give examples? ?
By Eric Greene RMS / I. S. 192 Q. Smart Start Question How would you get the robot to flirt with disaster by touching the edge of the “table” as many.
Vex Robotics Program four: reversing and turning.
Programming 101 The Common Palette Content provided by Connor Statham (9 th Grade Student) Formatting by Shannon Sieber.
On the screens click on the number you think is the right answer. Three times tables Good luck!
4) Design the logic to control the motor on a simple remote control car. There are two buttons on the remote control for the motor. If neither button is.
VB.NET and Databases. ADO.NET VB.Net allows you many ways to connect to a database. The technology used to interact with a database or data source is.
Testbed Coding In this activity you will code different challenges for the Testbed. For each challenge a sample program is shown. Use what this sample.
4 |Multitasking Created by H. Robinson & A. Gostelow Multitasking.
Faster Line Tracking Introductory Presentation. Opening Activity Try the following with a partner: Obtain a meter stick Holding the meter stick vertically,
Introductory Presentation
Using the Lego Mindstorms Edu NXT Software
Introductory Presentation
Introductory Presentation
E-folio skills STUDY SKILLS
Introductory Presentation
Classroom Procedures for Ms. Bishop Room 140.
Robot Questions.
Introductory Presentation
Dayton Metro Library Computer Basics September 19, 2018
Programming – Touch Sensors
Introductory Presentation
Music by Touch Music by Touch Presentation > TeachEngineering.org
Introductory Presentation
Automation and Robotics
Introductory Presentation
Introductory Presentation
Introductory Presentation
INTERMEDIATE PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
Forward Until Touch Robot goes forward until it hits a wall.
Follow The Guidelines Light Sensor
Beginner Programming Lesson
Line Following Behavior
Introductory Presentation
Storing Values as Variables
Dayton Metro Library Place photo here Computer Basics December 8, 2018.
While Loops and If-Else Structures
Introductory Presentation
Line Following Behavior
SENSORS.
While Loops and If-Else Structures
While Loops and If-Else Structures
Introductory Presentation
Palm Basic Applications
Advanced Programming Lesson: Parallel Beams
Memory and Learning Our brains are often compared to computers in the way that we process information. We must: Encode, Store, then Retrieve info.
Electrons Exam/ Intro to the Periodic Table
Getting started with LEGO EV3 Mindstorms software
Presentation transcript:

Introductory Presentation Full Stop Introductory Presentation

Opening Activity Think of a time when you had to do multiple things at once, and answer the questions below: What tasks did you have to do? How did you do them? Why did you have to do them at the same time?

Opening Activity Sometimes its necessary to do more than one thing at a time. For example, while you’re in class you have: Listen to the teacher Take notes Remember what you learned yesterday Dodge paper airplanes And finish the homework that’s due later

Preview: Multitasking This is called Multitasking, which is when you do more than one thing at the same time. We multitask because it saves time. Sometimes you have to pay attention to more than one thing at a time to get them all done.

Preview: Sequence Beams Robots need to multitask so they can handle everything going on around them. This is almost like having more than one program running at once. The best way to accomplish this is to use multiple Sequence Beams.

Preview: Sequence Beams To create multiple Sequence Beams, hold down Shift on the keyboard while clicking on the stubs at the top or the bottom of the start block, then drag out a new beam.

Preview: Sequence Beams Here we see that the NXT will be running two tasks at once. It will wait for its Touch Sensor to be bumped then make a noise. It will spin its A and B motors continuously

Preview: Stop Block Sometimes however, everything just needs to stop. If you spent all day building a robot that was about to drive off the edge of a table, you would want a way to quickly stop it so it wouldn’t fall and break.

Preview: Stop Block Programming an emergency stop is what you’ll learn in Full Stop. To do so, you’ll use the Stop block, which will end the running program immediately. Note that this does not turn off the motors automatically…

Preview: Stop Block You’ll use this block in combination with your Sequence Beams to stop your robot in case of an emergency.

Good Luck! Now you have the necessary knowledge to get started in the Full Stop Activity.