My first robot programming - Simple “GoTo”

Slides:



Advertisements
Similar presentations
Robots Leslie B.. What is a robot? A robot is a machine that is capable of doing many kinds of actions.
Advertisements

Forces and Breaking Forces Breaking Stopping distance Questions.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Wait, sound sensor >70, Port 2 Flowchart – Heartbeat 1 Start Motor A, Move Backward, 1/3 Rotation, Power 20 Wait, 1 Second Sound Sensor (Port 2) Less than.
Robot Programming. Programming Behaviors Behaviors describe the actions and decisions of your robot.
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.
Program ultrasonic range sensor in autonomous mode
Capacitor Connection in to LED socket Connection to 5v and ground Connection to light sensor pin.
Scribbler Movements Sec 9-3 Web Design. Objectives The student will: Understand the basic movement commands for the Scribbler Know how to create and execute.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Programming the CheapBot-14. Start the Editor Set the Mode.
10/10/ Controlling YOUR ROBOT. 10/10/2015 Basic Stamp  Basic Stamp Input - output pins Interpreter Chip Power supply: 5 Volts voltage Memory: EEPROM.
Human Vision Robot (Light Sensor) Vision White/Light: 100 Black/Dark: 0 Colors:
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
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.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Elegant avoiding of obstacle Young Joon Kim MSRDS First Beginner Course – STEP5.
VPL basic – data and variables Young Joon Kim MSRDS First Beginner Course – STEP6.
How to link the robot and the computer (Bluetooth) How to turn on and off How to connect the adaptor Fluke card connection Sec Getting Started How.
Human Vision Robot (Light Sensor) Vision White/Light: 100 Black/Dark: 0 Colors:
Graphing Motion. You will need: 3 colored pencils: red, blue, green A ruler if straight lines are important to you.
Bunny Eat Broccoli Repetition – Simple loops and Conditional loops Susan Rodger Duke University July 2011.
Find the Mindstorms Icon on the computer.. To start a new program click go.
PROMGRAMING YOUR ROBOT How Servos Work: How to control your robot.
First glance of robotics course (VPL) Young Joon Kim MSRDS First Beginner Course – STEP3.
Available at: – Program Functions to Accept Values Program Functions to Accept Values.
My first robot programming - Simple “Go” Young Joon Kim MSRDS First Beginner Course – STEP4.
3:00. 2:59 2:58 2:57 2:56 2:55 2:54 2:53 2:52.
SPL basic – Build Simulation Environment Young Joon Kim SPL First Beginner Course – 03.
Obstacle Detection. In the previous program the robot moves forward and then checks for something in the way. As we observed it only checks for things.
Forward Until Near Stop when near a wall.
Start Anaglyph Programming Young Joon Kim Stereoscopic & Anaglyph Course.
Presentation Outline I. Background Information II. Design Project
Add and Subtract Negative Numbers
What you asked me to teach…
Bunny Eat Broccoli Repetition – Simple loops and Conditional loops
Linux 104 Training Module File Editing.
What should I do first MSRDS First Beginner Course - STEP1
Programming Part 2 Mod Kit
Programming - Motion Intro to Robotics.
Top Fire Protection Services Ottawa available on Dubinskyconstruction
Title 1  Our experience drives us forward 2.
Sasha Popov November 16, 2018 iRobot Create.
Carbot Robot By Ruben Cossyleon
Controlling YOUR ROBOT
Distance & Displacement
Basic Sensors – Laser Distance Sensor
Young Joon Kim SPL basic – Quick Start SPL First Beginner Course – 01 Young Joon Kim
Which way does the robot have to turn to get to the charger?
Using a Drawing Robot to Make Angles (Using Rotations)
VPL Patterns – Multi-Action Activity
My first robot programming - Simple “GoTo”
Defining Motion Terms for analyzing motion
Robotics Week 3 beginning wheel control
SPL GraphicSprite Command
VPL Patterns – Loop Pattern using Notification
Lesson 18 – how to add a new button for pivot right
Young Joon Kim SPL basic – Quick Start SPL First Beginner Course – 01 Young Joon Kim
SPL Programming – While Loop Pattern
First glance of robotics course (SPL)
Using a Drawing Robot to Make Angles (Using Rotations)
My first robot programming - Simple “Go”
SPL Programming – Procedure Pattern
Pose Sensors – Detect Orientation
Obstacle Detection.
Basic Sensors – RFID Sensor
My first robot programming - Simple “GoFor”
SPL basic – Script types
Mars Rover Challenge – Path around Olympus Mons (middle and early high school) Olympus Mons on the surface of Mars at 69,841 feet (more than twice the.
MATLAB Interface Programming
Presentation transcript:

My first robot programming - Simple “GoTo” MSRDS First Beginner Course – STEP4 Young Joon Kim http://www.helloapps.com

“GoTo” Drive Commands GoTo Usages Range of motor power values Drive given distance Usages robotname.GoTo(distance, power) Range of motor power values -1.0 (Max backwards) ~ 1.0 (Max forwards) 0: Stop the motor Unit of distance meter

“GoTo” command

“GoTo” command Reuse “script/SimpleGo.txt”

“GoTo” command Save as “script/SimpleGoTo.txt”

“GoTo” command Add drive command as follows base1.GoTo(1.0, 0.3) Distance will be set as 1.0 meter Power will be set with 0.3

“GoTo” command Add command as follows

“GoTo” command Execution result 1.0m