VEX Robotics Computer Science Level 1 Python Course User Guide

VEX Robotics Computer Science Level 1 Python Course User Guide

VEX-Robotics-logo

VEX Robotics Computer Science Level 1 Python Course

VEX-Robotics-Computer-Science-Level-1-Python-Course-product-image

Specifications

Course Computer Science Level 1 – Python
Unit 4
Lesson 3
Topic Driving Until Pressed Quiz

Usage Instructions

Code Example

def main():
    while not left_bumper.pressed():
        drivetrain.drive(FORWARD)
        wait(5, MSEC)
    drivetrain.drive_for(REVERSE, 200, MM)

Question 1

What will the VR Robot do when the Bumper Sensor is pressed in this project?

  • Turn right for 180 degrees.
  • Stop driving.
  • Turn right for 90 degrees.
  • Drive in reverse for 200 millimeters (mm).

Code Example

def main():
    while not left_bumper.pressed():
        drivetrain.drive(FORWARD)
        wait(5, MSEC)
    drivetrain.turn_for(RIGHT, 90, DEGREES)

    while not left_bumper.pressed():
        drivetrain.drive(FORWARD)
        wait(5, MSEC)
    drivetrain.turn_for(LEFT, 90, DEGREES)

Question 2

What needs to happen for the VR Robot to turn left in this project?

  • The Left Bumper Sensor needs to be pressed once.
  • The VR Robot needs to drive for 300 millimeters (mm).
  • The Left Bumper Sensor needs to be pressed twice.
  • The pen needs to draw a circle on the Playground.

Copyright 2021 Innovation First, Inc. (dba VEX Robotics). All rights reserved. See full Copyright terms at https://copyright.vex.com/

Documents / Resources

PDF thumbnailComputer Science Level 1 Python Course
User Guide · Computer Science Level 1 Python Course, Level 1 Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course
PDF thumbnailComputer Science Level 1 - Python Course
User Guide · Computer Science Level 1 - Python Course, Level 1 - Python Course

References

Ask a Question

Use this section to ask about setup, compatibility, troubleshooting, or anything missing from this manual.

Ask a Question

Ask about setup, compatibility, troubleshooting, or anything missing from this manual. Name and email are optional.