1_ResetGyro_have you reset everytime?
Reset the Gyro Sensor's value to 0.
Set the Gyro Sensor to register
the current position of the robot as "0 degrees".
2_SetMotor_sets just one motor
Turns motor B On at 35% power.
Starts turning the robot to the right
by driving the left side of the robot forward.
3_SetMotor_
Turns motor C On at -35% power.
Starts turning the robot to the right
by driving the right side of the robot backward.
4_WaitUntil_
Stops the program from processing
additional commands until the Gyro Sensor's Degrees value
is more than 80.
Robot waits until it havs turned to the right 80 degrees.
5_StopMultipleMotors_blah
Stops motors B and C.
Stops the robot (after the WaitUntil block finishes).
1_SetLEDColor_
Sets the EV3's LED color to Orange.
2_Forward_
Moves the robot forward 5.5 rotations at 50% power. The robot drives along the side of the box.
3_SetLEDColor_
Sets the EV3's LED to flash Red.
4_ResetGyro_
Resets the Gyro Sensor's value to 0. This sets the Gyro Sensor to register the current position of the robot as "0 degrees".
5_SetMotor_ Turns motor B On at 35% power. Starts turning the robot to the right by driving the left side of the robot forward.
6_SetMotor_
Turns motor C On at -35% power. Starts turning the robot to the right
by driving the right side of the robot backward.
7_WaitUntil_
Stops the program from processing aditional commands until the Gyro Sensor's Degrees value is more than 80. Robot waits until it has turned to the right 83 degrees, (Approx 90 degrees to the right).
8-14_RepeatedPattern_
Copy of the behavior pattern used earlier in the program.
Robot turns LED Orange and moves forward 5.5 rotations along the side of the box, resets Gyro value to 0, and blinks Red LED as it turns to the right until the Gyro Sensor's value is greater than 80 degrees.
15-21_RepeatedPattern_
Copy of the behavior pattern used earlier in the program. Robot turns LED Orange and moves forward 5.5 rotations along the side of the box, resets Gyro value to 0, and blinks Red LED as it turns to the right until the Gyro Sensor's value is greater than 80 degrees.
22-28_RepeatedPattern_
Copy of the behavior pattern used earlier in the program. Robot turns LED Orange and moves forward 5.5 rotations along the side of the box, resets Gyro value to 0, and blinks Red LED as it turns to the right until the Gyro Sensor's value is greater than 80 degrees.
29_StopMultipleMotors_
Stops the robot (after the WaitUntil block finishes).