Skip to main content
Teacher Portal

Teacher Toolbox icon Teacher Toolbox - The Purpose of this Activity

Now that students have experience in treating the brain's screen like one big button, they can turn the screen into two buttons. This activity will introduce students to using nested if-else statements to better manage conditional statements and the underlying logic of doing so. Students are first guided through building the project for having screen presses turn the robot left or right. But, they are then asked to switch the buttons so that what turned the robot left now turns it right, and vice versa.

For more information about if and if-else statements or others used in this activity, visit the help information within VEXcode V5. For more information about this built in help tool, view this article.

The following is an outline of what your students will do in this activity:

  • Reviewing the StopOrDrive project and the layout of the brain's screen in pixels.
  • Building a new LeftOrRight project while being guided through the reasoning of the programming.
  • Revising the project so that the buttons on the screen work oppositely.
  • Extend Your Learning: Splitting the screen into two buttons that when pressed, turn the robot left or right.
     

Make sure you have the hardware required, your engineering notebook, and VEXcode V5 ready.

Materials Required:
Quantity Materials Needed
1

VEX V5 Classroom Starter Kit (with up-to-date firmware)

1

VEXcode V5 (latest version, Windows, macOS)

1

Engineering Notebook

1

StopOrDrive project from the previous Play page

Teacher Toolbox icon Teacher Toolbox

For suggestions on teaching strategies for this section, review the Delivery column of the To Do or Not to Do Pacing Guide! (Google Doc / .docx / .pdf)

The brain's screen can have more than one button.

This activity will let you program the robot to drive forward and turn left or right depending on which side of the brain's screen is pressed.

The three additional types of commands that you will need during this activity are the following:

  • drivetrain.turn(RIGHT)
  • number < 50
  • brain.screen.x_position()

You can use the Help information inside of VEXcode V5 to learn about the instructions.

VEXcode V5 with a drive for command typed in the workspace on the left, and the Help information open on the right. The Help shows a definition of the command and information about how it is used.

Step 1: Let's start by reviewing the StopOrDrive project.

Let's start by reviewing the StopOrDrive project.

The StopOrDrive project had the Clawbot stop if the screen was pressed, or else it had it drive forward.
The entire screen was one big button, but in this next project, we want half the screen to be one button and the other half to be the other.

Image shows the code in VEXcode V5 where the main() function initializes the robot configuration and enters an infinite loop. The loop checks if the Brain's screen is pressed. If it is pressed and the xPosition is less than 240, the robot turns left and waits until the screen is no longer pressed before continuing. If the xPosition is not less than 240, the robot turns right and similarly waits until the screen is no longer pressed. If the screen is not pressed, the robot drives forward.

In order to split the screen into two buttons, we need to understand more about the layout of the screen.

Pixel grid of the V5 Brain screen shows 12 numbered rows along the lefthand side, with the top row labeled Row 1 and the bottom labeled Row 12. Across the top are 48 numbered columns, with Column 1 labeled on the far left and Column 48 labeled on the far right. The total pixel measurements are 480px wide by 240 px tall.

  • Notice that the columns increase in number from left to right. The number of columns is 48 and the screen is 480 pixels wide.
  • Write down in your engineering notebook that the x-value on the screen is equal to the number of pixels measured from left to right.
  • What is the x-value of the center of the screen? For this activity, you can focus on the x-axis alone because you only need a left and right button.

Teacher Toolbox icon Teacher Toolbox - Answer

The x-value at the center of the screen is equal to half of the width of the screen in pixels. So the center point's x-value is 240. Students will need this number to program the conditional for whether the screen is pressed on the left or right. So be sure to check that they all have the correct value.

Looking ahead, the User Interface Challenge in the Rethink section will require students to apply what they have learned to create four buttons on the screen. So for that, they will need both the x- and y-values.

Teacher Tips icon Teacher Tips

For further assistance, see the VEX Library for supplementary help articles.

Step 2: Programming for two buttons.

  • Save StopOrDrive as the LeftOrRight project.

Project name dialog box in the VEXcode V5 Toolbar reads Left or Right and shows Slot 2 is selected.

  • Build the project below. It will have the Clawbot turn left or right when the screen is pressed, depending on the side it is pressed on.

Python code using VEXcode V5. The code begins by importing the VEX library, then starts an infinite loop that checks if the robot's screen is pressed. If the screen is pressed, it checks the x-position of the press. If the press is on the left side (x-position less than 240), the robot turns left and waits while the screen remains pressed. If the press is on the right side, the robot turns right and similarly waits while the screen remains pressed. If the screen is not pressed, the robot drives forward. The loop includes a 5-millisecond wait between each iteration

  • Let's review what this project does.

    It keeps checking if the screen is pressed. If the screen isn't pressed it drives forward, but if it is, it checks where the screen is pressed.

    If the press was on the left side (less than 240), it turns left. Otherwise, it turns right. We don't need another condition for when the x-value is greater than 240 because if it isn't less than 240 (turn left), it must be greater (turn right). We only have two buttons to worry about.

    The while and wait Control commands after each turn have the project wait until the screen is no longer being pressed before continuing.

The Left or Right project is shown with commands labeled with their functionality. The While true and first if commands are labeled as Keeps checking if screen is pressed. The next nested if command is labeled when screen is pressed, checks whether on the left or right. The next turn command is labeled if press was on left (less than 240, turns left), then the wait until command is labeled wait until screen is no longer pressed before continuing. The next turn right command in the else branch is labeled if press was not on left (less than 240), turns right, and the wait until command is labeled waits until screen is no longer pressed before continuing. The outer else branch is labeled is screen is not pressed, drives forward.

  • Now that the project is done, download and run it to test how it works.VEXcode V5 Toolbar with a red box around the Download icon. The Icons shown read, from left to right, Controller, Brain, Download, Run, Stop, and Share.
  • Take notes in your engineering notebook about how the buttons control the movements of the Clawbot.

Teacher Tips icon Teacher Tips

When testing, the students should recognize that the User Interface, when used from behind the Clawbot, seems to work in reverse. From the user's perspective, the Clawbot turns away from the side that is being pressed by the user. That is not an optimal User Experience.

Step 3: Adjust the project for a better User Experience.

When pressing the screen's buttons from behind the Clawbot as it drove forward, you pressed on the right side of the screen to turn left and on the left side of the screen to turn right. That is not a good User Experience. A User Experience is how well a user can interact with a User Interface to control a computer system. There is more information about User Interfaces in the Apply section of this lab.

In this case, we need to improve the User Interface in order to improve the User Experience.

  • Review the LeftOrRight project and revise it so that when the user presses the buttons from behind the Clawbot, the robot turns right when the user presses the left side of the screen. Or else, the Clawbot turns left.

Image of the left or right project in VEXcode V5 Python

  • Plan, test, and iterate on this project and document in your engineering notebook so that the project makes the Clawbot turn toward the side of the screen that the user is pressing from behind the Clawbot.

Teacher Toolbox icon Teacher Toolbox

Students should plan, test, and refine these changes to the project while documenting it within their engineering notebooks. For the individual engineering notebook rubric, click one of the following links (Google Doc / .docx / .pdf), or click one of the following links for team notebooks (Google Doc / .docx / .pdf). Remember to explain the scoring to students before they begin working.

Teacher Toolbox icon Teacher Toolbox - Solutions

There are two possible ways to solve the problem posed above. The first way is the one written into the instruction: Review the LeftOrRight project and revise it so that when the user presses the buttons from behind the Clawbot, the robot turns right when the user presses the left side of the screen. Or else, the Clawbot turns left.Image of an example solution with the operator changed

The other solution is to switch the Operator instruction so that when the x-value is greater than 240, the Clawbot turns left. Image of a sample solution with the operator changed
 

Motivate Discussion icon Motivate Discussion

You needed to use coordinates from a coordinate plane when you programmed the conditional statement for when the x-value was less than 240 (left side of the screen). To have the Brain's screen draw visual buttons, you would also need to use coordinates.
Return to Step 2 where you were shown the coordinates for the V5 Robot Brain's screen.

Pixel grid of the V5 Brain screen shows 12 numbered rows along the lefthand side, with the top row labeled Row 1 and the bottom labeled Row 12. Across the top are 48 numbered columns, with Column 1 labeled on the far left and Column 48 labeled on the far right. The total pixel measurements are 480px wide by 240 px tall.

Q: What is the x-value at the right edge of the screen?
A: The x-value increases from 0 at the left edge to 480 at the right edge.

Q: So the range of the x-value is 480 (0 to 480). What is the range of the y-value?
A: The range of y-value is 240 (0 to 240).

Q: Where is the origin (0, 0) of this coordinate plane?
A: The origin is in the upper left side.

Q: You are at the top of the screen when the y-value is equal to 0. Why is this unusual?
A: Usually, the y-value increases as you move upward but on the V5 screen, the y-value increases as you move downward. But you can think of it as the y-value increasing as you move away from the origin (0, 0) at the top left of the screen.

Extend Your Learning icon Extend Your Learning

In the Rethink section's User Interface Challenge, students will be asked to develop a project that creates four buttons on the screen to control the Clawbot's claw and arm. For that challenge, they are also asked to have those four buttons shown on the screen. This Extend Your Learning, like the previous page's, will help to prepare them for that challenge because the challenge has four buttons to program for, and this only has two.

Have students add an event to the program so that the screen draws two visible buttons when the project runs. Suggest that students use the Help feature in VEXcode V5 for information about Events, particularly the draw rectangle command's information. Direct students to review how the Brain's screen is organized into a coordinate system based on the number of pixels when used in the draw rectangle command. They will need to understand that in order to set parameters within that command. Additionally, they will need to understand how to broadcast events. In this case, the event is drawing buttons.

Students should plan, test, and refine these changes to the project while documenting it within their engineering notebooks. For the individual engineering notebook rubric, click one of the following links (Google Doc / .docx / .pdf), or click one of the following links for team notebooks (Google Doc / .docx / .pdf).

Here is an example solution:

Image of an example solution for drawing buttons on the brain screen

For an additional professionally realistic experience, have students ask their classmates for feedback on their two color choices.

Do the chosen colors make you want to use the interface, or which colors would they prefer as users?

Part of developing a great User Interface is collecting data about the User Experience, even aesthetic preferences.