Programming Design ROBOTC Software Principles Of Engineering

Slides:



Advertisements
Similar presentations
Engineering Roles We will be forming groups of 3 students
Advertisements

Automation and Robotics
VEX and Robot C Chris Patterson Presented by Modified by J. Andazola.
Developed in collaboration with Introduction to Programming.
VEX Robotics Platform and ROBOTC Software Introduction.
Connecting VEX and ROBOTC
Vex 1.0 © 2005 Carnegie Mellon Robotics Academy Inc. Programming in easyC.
RobotC Programming for LEGO Mindstorms NXT Carnegie Mellon Dacta Lego Timothy Friez Miha Štajdohar SOURCES:
Testbed: Exercises.
VEX Robotics Platform and ROBOTC Software
ROBOTC Software Introduction. ROBOTC Software ROBOTC developed specifically for classrooms and competitions Complete programming solution for VEX Cortex.
Introduction to the VEX ® Robotics Platform and ROBOTC Software © 2012 Project Lead The Way, Inc.Principles of Engineering.
Programming Design ROBOTC Software Principles of Engineering
Robot C and Natural Language
AUTOMATION WITH ROBOTC Starting to write and troubleshoot computer code.
ROBOTC for CORTEX.
The George Washington University Department of ECE ECE Intro: Electrical & Computer Engineering Dr. S. Ahmadi Class 4/Lab3.
Automated Mechanisms Help. Potentiometers Potentiometer Check –Analog Port 2 How they work –Analog sensor –Measures rotation of a shaft between 0 and.
VEX and Robot C Chris Patterson Frisco ISD CTE Center Presented by.
Automation and Robotics.  First you select the platform type so that you can use Natural Language PLTW.
ROBOTC for CORTEX Teacher Training. ROBOTC Overview Thinking about Programming.
ROBOTC for Testbed © 2011 Project Lead The Way, Inc.Automation and Robotics VEX.
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.
Robot C and Natural Language. Create a folder Create a folder on your desktop to insert all your Robot C files, Here you will begin with your template.
ROBOTC for CORTEX Teacher Training © 2011 Project Lead The Way, Inc.Automation and Robotics VEX.
Connect VEX and ROBOTC Electrical Engineer Responsibilities © 2011 Project Lead The Way, Inc.Automation and Robotics VEX.
ROBOTC for VEX Online Professional Development. Homework Questions Thoughts? Questions?
ROBOTC for VEX Online Professional Development By Jesse Flot.
ROBOTC for VEX On-Site Professional Development. Lab Procedures Logging onto CS2N.org – Log in with your user name and password VEX Robots/chargers –
Programming Design ROBOTC Software. Behavior-Based Programming A behavior is anything your robot does –Turning on a single motor or servo Three main types.
Basic Programming: Until Commands. The Problem with Wait States Motor Speed is affected by battery power. –If the battery is fully charged, the motors.
Robotics Programming Wall Follow Line tracking for a set amount of time Line tracking for a distance.
ROBOTC for CORTEX Teacher Training © 2011 Project Lead The Way, Inc. Automation and Robotics VEX.
Programming Design ROBOTC Software Principles Of Engineering
Electrical Engineer Responsibilities
VEX® Robotics Platform and ROBOTC Software
VEX® Robotics Platform and ROBOTC Software
ROBOTC for VEX Online Professional Development
Introduction to Programming
Electrical Engineer Responsibilities
VEX Robotics Platform and ROBOTC Software
ROBOTC for VEX On-Site Professional Development
ROBOTC for VEX Online Professional Development
Electrical Engineer Responsibilities
Automation and Robotics
Programming Design ROBOTC Software Computer Integrated Manufacturing
Electrical Engineer Responsibilities
Automation and Robotics
TECH 1 BAMS Technology Education
While Loops and If-Else Structures
VEX® Robotics Platform and ROBOTC Software
VEX® Robotics Platform and ROBOTC Software
While Loops and If-Else Structures
Multitasking Emergency Stop Computer Integrated Manufacturing
While Loops and If-Else Structures
While Loops and If-Else Structures
VEX® Robotics Platform and ROBOTC Software
While Loops and If-Else Structures
if-else Structures Principles of Engineering
Automation with RobotC
VEX® Robotics Platform and ROBOTC Software
Robotics Programming Using Shaft Encoders
While Loops and If-Else Structures
RobotC Programming for LEGO Mindstorms NXT
Automation with RobotC
Robotics Programming Using Shaft Encoders
While Loops and If-Else Structures
Programming Design ROBOTC Software Principles of Engineering
While Loops And If-Else Structures
Presentation transcript:

Programming Design ROBOTC Software Principles Of Engineering © 2012 Project Lead The Way, Inc.

Behavior-Based Programming Presentation Name Course Name Unit # – Lesson #.# – Lesson Name Behavior-Based Programming A behavior is anything your robot does Turning on a single motor or servo Three main types of behaviors Complex behaviors – Robot performs a complex task (automated fan control) Simple behaviors – Simple task performed by the robot (fan stops when sensor activated) Basic behaviors – Single commands to the robot (turn on a motor) Complex behaviors can always be broken down into simple behaviors, which are then broken down into basic behaviors

Complex Behaviors Describe the task or overall goal that your program will accomplish. A fan will run until someone needs it to stop. A safety device warning light will come on before the fan turns on. Another light will indicate that the fan has stopped. This may be described as one or more complex behaviors.

Creating Pseudocode Break down your behaviors into individual actions. Do not worry about syntax or which commands will be used with ROBOTC. Simply describe them in short phrases. Example Turn a motor on for three seconds Follow a line until running into a wall.

Simple Behaviors Break each complex behavior down into simple behaviors. List the behaviors line by line in the order that each should occur. Describe actions and what prompts each action to continue.

Creating Pseudocode Example Warning light comes on before the fan starts for three seconds Fan turns on and runs until a button is pressed A different light comes on for three seconds before the program stops

Basic Behaviors Break each simple behavior down further into basic behaviors. Think in terms of what each input and output component will be on your device.

Creating Pseudocode Example Program begins Light 1 (LED 1) turns on for three seconds Fan (Motor 1) turns on until a button (bumper switch) is pressed Light 2 (LED 2) turns on for 3 seconds Program ends

Identify Inputs and Outputs Identify which ports each input and output will be plugged into on the Cortex Pay attention to which sensors are analog and which are digital Label planning diagram

PLTW ROBOTC Program Template Open Sample Program PLTWTemplate Use the initial description (complex behaviors) of your overall program goal as the task description Copy pseudocode (basic behaviors) for the Pseudocode section of the PLTW ROBOTC program template

PLTW ROBOTC Program Template

Program Design Identify all inputs and outputs in the Motors and Sensors Setup window. Use the Debugger to confirm that all inputs and outputs are working as expected.

Motor 2 for 5 Seconds Presentation Name Course Name Unit # – Lesson #.# – Lesson Name Motor 2 for 5 Seconds This example is best demonstrated using the test bed.

Motor 2 for 5 Seconds

Motor 2 for 5 Seconds

Motor 2 for 5 Seconds

Motor 2 for 5 Seconds End Result: rightMotor spins for 5.0 seconds Stops the port2 rightMotor. End Result: rightMotor spins for 5.0 seconds

Program Design Many basic behaviors generally come together to create a complex behavior. Troubleshoot basic behaviors as they come together to form a complex behavior.

Program Design Code and test small behaviors or sets of behaviors individually. Edit or add comments as you build code.

Program Design Continue programming while testing one behavior at a time. Temporarily turn sections of code into comments using /* followed by */.

Sample Programs

ROBOTC Natural Language New language developed specifically for PLTW Lines of code for common robot behaviors are consolidated into single commands forward(); lineTrackforTime(); stop(); untilBump();

ROBOTC Natural Language Natural Language is an additional Platform Type in ROBOTC.

Presentation Name Course Name Unit # – Lesson #.# – Lesson Name ROBOT Motion Commands that cause the entire robot to perform a behavior

Movement Commands that allow you to control individual motors / servos Presentation Name Course Name Unit # – Lesson #.# – Lesson Name Movement Commands that allow you to control individual motors / servos

Motor Reversal Reversing motor polarity Check Reverse in Motors and Setup Change speed + / - in program startMotor(rightMotor, 63); startMotor(rightMotor, -63);

Presentation Name Course Name Unit # – Lesson #.# – Lesson Name Special Commands that control the more unique VEX Hardware – LEDs and Flashlights

Presentation Name Course Name Unit # – Lesson #.# – Lesson Name Until Commands that allow you to create behaviors where the robot acts “until” a certain event Button Press Encoder Count Reached

Presentation Name Course Name Unit # – Lesson #.# – Lesson Name Wait Commands that wait for an elapsed amount of time in seconds or milliseconds

Wait States Accuracy Motor Speed is affected by battery power If battery is fully charged, then motors move quickly. If battery is low, then motors move slowly. Device or robot will not move consistently as the battery power drains.

Touch Sensors Digital sensor – Pressed or Released Caution 1 = Pressed and 0 = Released Caution Bouncing may occur when sensor is pressed or released Value may bounce between 0 and 1 very briefly and quickly Very brief wait can be inserted to reduce bouncing effect

References Carnegie Mellon Robotics Academy. (2011). ROBOTC. Retrieved from http://www.robotc.net