You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FtcRobotController/src/main/java/org/firstinspires/ftc/robotcontroller/external/samples/BasicOmniOpMode_Linear.java
+33-33Lines changed: 33 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -69,20 +69,20 @@ public class BasicOmniOpMode_Linear extends LinearOpMode {
69
69
70
70
// Declare OpMode members for each of the 4 motors.
71
71
privateElapsedTimeruntime = newElapsedTime();
72
-
privateDcMotorleftFrontDrive = null;
73
-
privateDcMotorleftBackDrive = null;
74
-
privateDcMotorrightFrontDrive = null;
75
-
privateDcMotorrightBackDrive = null;
72
+
privateDcMotorfrontLeftDrive = null;
73
+
privateDcMotorbackLeftDrive = null;
74
+
privateDcMotorfrontRightDrive = null;
75
+
privateDcMotorbackRightDrive = null;
76
76
77
77
@Override
78
78
publicvoidrunOpMode() {
79
79
80
80
// Initialize the hardware variables. Note that the strings used here must correspond
81
81
// to the names assigned during the robot configuration step on the DS or RC devices.
Copy file name to clipboardExpand all lines: FtcRobotController/src/main/java/org/firstinspires/ftc/robotcontroller/external/samples/ConceptVisionColorLocator.java
+26-11Lines changed: 26 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -149,39 +149,54 @@ public void runOpMode()
149
149
* Note: All contours will be still displayed on the Stream Preview, but only those that satisfy the filter
150
150
* conditions will remain in the current list of "blobs". Multiple filters may be used.
0 commit comments