Lesson 18 – how to add a new button for pivot right

Slides:



Advertisements
Similar presentations
CECE STMWPR[ ] GO CM BASIC ROAMER CONTROLS: Click on the buttons to see what they each do!
Advertisements

EducateNXT The Corridor Challenge The Corridor Challenge requires programming of a robot to negotiate obstacles and the corridor walls in order to reach.
Lesson 5: Indenting Text Paragraphs What indenting refers to The types of indents available How to set an indent How to adjust an indent Adding bullets.
Race Car Integers October 18, Race Car Rules / Positive numbers mean “forward” / Negative numbers mean “reverse” / Add means “keep going” / Subtract.
Introduction to TouchDevelop
Lesson 4-5 Example Example 1 Find the product of 3 and 7 by using repeated addition. Then write the multiplication fact and its commutative fact.
Create Forms Lesson 5. Software Orientation Creating Forms A form is a database object –enter, edit, or display data from a table or query Providing.
Robotics Engineering Basic Maneuvers. Getting the Boe-Bot to Move One of the first tasks we need to do is to get our bots moving.One of the first tasks.
10/10/ Controlling YOUR ROBOT. 10/10/2015 Basic Stamp  Basic Stamp Input - output pins Interpreter Chip Power supply: 5 Volts voltage Memory: EEPROM.
Introduction to Algorithms using Netlogo. What’s an Algorithm Definitions of Algorithm on the Web: –A procedure or formula for solving a problem.
Introduction to TouchDevelop
Math on the Mind Model y = –2x + 4 with a table of values and a graph.
Lesson 1: Learning About Computer Basics. 2 Concept 1.1 Computer Basics What can you do with a computer? –Write a letter –Make a picture –Find maps and.
Lesson 4-7 Example Example 1 Find 4.32 × Multiply the factors, ignoring the decimal points for now. 432 × 6 = 2592.
Roamer help file: Use this power-point slide to find out more about the buttons on Roamer…
Office 2003 Post-Advanced Concepts and Techniques M i c r o s o f t Access Project 7 Advanced Report and Form Techniques.
Adding SubtractingMultiplyingDividingMiscellaneous.
PROMGRAMING YOUR ROBOT How Servos Work: How to control your robot.
By Droids Robotics INTERMEDIATE PROGRAMMING LESSON BRICK BUTTONS AS SENSORS.
CS320n –Visual Programming Definite / Counted Loops (Slides 7-1) Thanks to Wanda Dann, Steve Cooper, and Susan Rodger for slide ideas.
Command Buttons in Access Forms. What are Command Buttons?  Buttons that perform commands (duh)  With proper programming, you can make a button perform.
My first robot programming - Simple “Go” Young Joon Kim MSRDS First Beginner Course – STEP4.
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.
3:00. 2:59 2:58 2:57 2:56 2:55 2:54 2:53 2:52.
How to save reports. When you log in as a teacher you will arrive at the page below.
Learning about Inverse Operations. What is the inverse of Opening the door? Turning Right? Driving Forward? The inverse undoes the original function.
Adding & Subtracting Decimals I will add and subtract decimals.
Definitions of the Day (DODs) 10.1 Adding and Subtracting Polynomials Term Polynomial Degree of a Term Degree of a polynomial Standard Form.
The Corridor Challenge
Sequencing Learning Objective: to be able to design algorithms that use sequencing.
How to Create Workplaces
Adding and Subtracting Real Numbers
Add and Subtract Negative Numbers
1-3 Example 1 A tricycle has 3 wheels. How many wheels are on 7 tricycles? 1. Each tricycle has 3 wheels. Lesson 1-3 Example 1.
N, A, X, M - #1 Start Changes made from 2014 Rules to 2016 Rules are as follows: Move original Sign #49 “Back Up 3 Steps Dog Stays in Position” to Sign.
Learning Objective: to be able to design programs that use sequencing.
PROMGRAMING YOUR ROBOT
Online Gifts Buy for wishes happy mother's day to yours choice and with happy gifts find here:
Top Fire Protection Services Ottawa available on Dubinskyconstruction
Database Management System
Adding Month Due to Dairy Comp Basis File
Sequencing Learning Objective: to be able to design algorithms that use sequencing.
Controlling YOUR ROBOT
بسم الله الرحمن الرحيم الموضوع:الوضوء صفته وفرائضه وسننه
Lesson 3 Sub-Routines.
Proxies Granting proxy authorization enables another provider to access your Inbox Documents and handle them for you. Your proxy can review, sign, refuse,
Recap the basics Lesson 1.
The Basics Subtitle.
INTERMEDIATE PROGRAMMING LESSON
Lesson 4 Variables.
Lesson Objective: I will be able to …
Which way does the robot have to turn to get to the charger?
Unit 2. Day 10..
Working With Progress Reports
Your Name: Blockly Games: MAZE.
Adding with 9’s.
Adding with 10’s.
Recap the basics Lesson 1.
Objective Solve inequalities that contain more than one operation.
Using a Drawing Robot to Make Angles (Using Rotations)
My first robot programming - Simple “Go”
To find , start from 0, move left 4 units
2-3 Subtracting Integers Warm Up Problem of the Day
Mod 2 Lesson 2 Repeating with loops
Adding ____ + 10.
Exploring Computer Science Lesson 6-11
+/- Numbers Year 2-3 – Addition and subtraction of two-digit numbers
My first robot programming - Simple “GoTo”
Rotations.
Presentation transcript:

Lesson 18 – how to add a new button for pivot right Day 10 Lesson 18 – how to add a new button for pivot right

Step 1 – Open Lesson18HBridgeMotorControl

Step 2 – Save as MyIRRobotControl

Keep in mind Pivot Right Forward button We want number pad button 3 to be pivot right forward, meaning go forward and right. A pivot right forward means the right wheel is stopped and the left wheel is turning counterclockwise. The button on the remote control is the number 3. The command for this button is 2.

Step 3 – Add MOTOR_PIVOTRIGHT_FORWARD button definition Added Line

Step 4 – Add Command Case to setDirection() Added Case

Step 5 – Add pivotRightForward() method New Method