Slides:



Advertisements
Similar presentations
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.
Advertisements

Diameter, Circumference, and Rotational Sensors Robotics Academy All Rights Reserved.
  investigate the relationship between the diameter and circumference of a circle.
Using the Gyro Sensor and Dealing with Drift
Programming 101 The Common Palette Content provided by Connor Statham (6 th Grade Student) Formatting by Shannon Sieber.
Application of Math and Science Principles Creating a robot that moves a specified distance straight ahead and Creating a robot that turns a specified.
Measured Turns Introductory Presentation. Opening Activity In the Right Face Activity, we made our robot turn right using the program below.
This block is a : displaydisplay looploop movemove soundsound switchswitch waitwait motor.
In the original lesson we learned that a robot should move forward a specific distance for each rotation. That distance traveled is equivalent to the.
LabVIEW Basics Review LabVIEW Robotics Fundamentals.
Simple Pi Challenge! Pi = 3.14 Diameter = 5.6 cm Distance Robot Travels in 1 Rotation = 3.14 * 5.6 cm 3.14 * 5.6 = cm Circumference = Pi * Diameter.
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.
EV3 Workshop Oct 3, 2015 Instructor: Chris Cartwright
Geometry 1 Area and Circumference of a Circle. Central Angle A central angle is an angle whose vertex is at the center of the circle. 2 The measure of.
By: 1- Aws Al-Nabulsi 2- Ibrahim Wahbeh 3- Odai Abdallah Supervised by: Dr. Kamel Saleh.
Circumference and Diameter 1/31/2006. Circumference A circle is a shape with all points the same distance from the center. It is named by the center.
Real-Time Data through Data Hubs. Begin by adding a basic Move block, 5 rotations 75% power.
Negative Power or Negative Rotation makes robot go backwards. But if both are negative, the robot will go forward! Move Steering Block.
Circumference Lesson #33. What is Circumference? The distance around the outside of a circle is called the circumference (essentially, it is the perimeter.
Robotics NXT-G: variables, file Rotation sensor Lab: Use buttons to hit specific ball. Homework: Postings. Start planning mapping the room.
By Droids Robotics INTERMEDIATE PROGRAMMIN G LESSON MOVE DISTANCE MY BLOCK (MOVE_CM)
Benchmark #03.03 Benchmark Text:Describe the types of sensors and ways in which they can be categorized. Learning Goal:The student will be able to describe.
EV3 Software EV3 Robot Workshop
Programming 101 The Common Palette Content provided by Connor Statham (9 th Grade Student) Formatting by Shannon Sieber.
ROBOTC Software EV3 Robot Workshop
Name these Features The distance from the center to the edge The distance from one side to the other passing through the center The distance all of the.
ROBOTC Software EV3 Robot Workshop Lawrence Technological University.
By Droids Robotics INTERMEDIATE PROGRAMMIN G LESSON COLOR LINE FOLLOWER MY BLOCK WITH INPUTS: MOVE FOR DISTANCE.
MEH108 - Intro. To Engineering Applications KOU Electronics and Communications Engineering.
Area & Perimeter Circumference of a Circle Grade 3.
EV3 Programming: Moving and Turning CONFIDENTIAL © 2014 Cymer, LLC.
Circles Shape and Space. The value of π For any circle the circumference is always just over three times bigger than the radius. The exact number is called.
+ Math Module 1 Rates of Change & Mathematical Models.
Calculating Rotations for Turns
LEGO Robotics Workshop
INTERMEDIATE PROGRAMMING Lesson
Measurement: Circles and Circumference With Mr. Minich
Geometry: Circles and Circumference
Geometry: Circles and Circumference
BEGINNER PROGRAMMING LESSON
Robo-Math How Far? The Distance a Robot Travels in One Rotation of the Motor = The Circumference of the Wheel Circumference (of the Wheel) = Diameter (of.
Introductory Presentation
Introductory Presentation
Measured Turns.
PROMGRAMING YOUR ROBOT
Introductory Presentation
Area and Circumference of a Circle
Introductory Presentation
INTERMEDIATE PROGRAMMING LESSON
Sensors Training.
FeMaidens Programming
Gyro Turns © 2015 EV3Lessons.com, Last edit 12/19/2015.
Using the Gyro Sensor and Dealing with Drift
INTERMEDIATE PROGRAMMING LESSON
By Sanjay and Arvind Seshan
INTERMEDIATE PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
INTERMEDIATE PROGRAMMING LESSON
Geometry: Circles and Circumference
Repeating Behaviors.
By Sanjay and Arvind Seshan
Robotics Week 3 beginning wheel control
By Sanjay and Arvind Seshan
Coding Edbot Dream with Scratch
Wheels and Distance.
Lego MINDSTORMS EV3.
BEGINNER PROGRAMMING LESSON
Using the Gyro Sensor and Dealing with Drift
Geometry: Circles and Circumference
Presentation transcript:

Greg’s Tips Logic wires = Green Numeric wires = Yellow Text wires = Orange Use lots of comments in program Name loops for a cleaner program Motors default to B & C Use.2 sec. “waits” when program changes

Tips Cont. Motors feedback in Degrees ONLY Reset motors before using rotation sensor Speed vs Accuracy Use program HELP! mresources mresources Create a program sequencer. Debugging

Gyro Sensor Calibration

RAW Sensor

Common Issues Wrong Port Not using sensors with WAIT or LOOP block

FORMULAS Calculate Distance D = Diameter of Tire (2.2”) C = D * Pi (3.14) C = Circumference of Tire = (6.90”) Motor Rotations to move 12” 12” / C = 12 / 6.90 = 1.73 Rotations

FORMULAS CONT. D = Diameter of turn B = Distance between drive wheels (center) VR = Right wheel power VL = Left wheel power D = B * (VR+VL) / (VR-VL) If D = negative number, robot will turn right

FORMULAS CONT. Using Standard 43.2 x 22 tires. Motor Rotations Divide by 27 for CM (wheel) Motor Rotations Divide by 36 for CM (tracks) 360 degrees / 27 = 13.3 CM 13.3 CM / 2.54 = 5.23”

CONTACT GREG GREER