if-else statements powerpoint

15
ROBOTC for CORTEX if-else Statements

Upload: phamnhu

Post on 02-Jan-2017

221 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: If-Else Statements PowerPoint

ROBOTC for CORTEXif-else Statements

Page 2: If-Else Statements PowerPoint

While Loop Exercise• Example 3: Program the right motor to

spin forward until the potentiometer value is greater than 2048. Then program it to spin in reverse until the potentiometer value is less than 2048. Repeat while the limit switch isn’t pressed.

Page 3: If-Else Statements PowerPoint

Solution Code

Page 4: If-Else Statements PowerPoint

Equivalent Solution Code

• “until” commands are implemented as while loops in the Natural Language

Page 5: If-Else Statements PowerPoint

Equivalent Solution Code

• Program Flow gets stuck in these locations. How do we avoid this?

Page 6: If-Else Statements PowerPoint

If Statements• When your robot reaches an if Statement in the program,

it evaluates the condition contained between the parenthesis. – If the condition is true, any commands between the braces are run. – If the condition is false, those same commands are ignored.

• Very similar to how a while loop works, but does not repeat the code!

Page 7: If-Else Statements PowerPoint

If-else statements• The if-else Statement is an expansion of the basic if

Statement. – The “if” section still checks the condition and runs the appropriate

commands when it evaluates to true– Using the “else” allows for specific code to be run only when the

condition is false.

• Either the “if” or the “else” branch is always run; no more, no less.

Page 8: If-Else Statements PowerPoint

If-else Exercise 1• Program the greenLED to turn on if the

bumperSwitch is pressed, and off if it’s released. Loop Forever.

• Convert the previous program to use an if-else.

Page 9: If-Else Statements PowerPoint

Multiple If-else Statements• Be careful when using two separate if-else

statements, particularly when they are used to control the same mechanism.

• One branch of each if-else statement is always run, so you may create a scenario where the two sets of “fight” eachother.

Page 10: If-Else Statements PowerPoint

Multiple If-else Statements• In this example, if

one of the touch sensors is pressed, the rightMotor will be turned on in one if-else statement, and immediately turned off in the other.

Page 11: If-Else Statements PowerPoint

Multiple If-else Statements• This can be

corrected by embedding the second if-else within the else branch of the first, so that it only runs if the first condition is false.

Page 12: If-Else Statements PowerPoint

If-else Shorthand• An embedded if-else can also be represented as

an else if:

Page 13: If-Else Statements PowerPoint

Additional Resources

Page 14: If-Else Statements PowerPoint

CMU Resources• ROBOTC.net: http://www.robotc.net/

– The ROBOTC Forum: http://www.robotc.net/forums/– Post your homework and questions here!

• ROBOTC PLTW Page: http:// www.robotc.net/pltw• VEX Cortex Video Trainer

– http://www.education.rec.ri.cmu.edu/products/teaching_robotc_cortex/index.html

• Robotics Academy– http://www.education.rec.ri.cmu.edu/content/vex/

index.htm

Page 15: If-Else Statements PowerPoint

Homework• Program the right motor to spin forward if the

light sensor sees dark, and backward if the light sensors sees light, looping forever. Also convert this to an if-else.

• Program the right motor to spin forward if the limit switch is pressed, else it should check if the bumper switch is pressed and spin reverse, else it should turn off when nothing is pressed. Loop forever.