Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/Train' into Train
Browse files Browse the repository at this point in the history
# Conflicts:
#	gradle.properties
  • Loading branch information
PatrickT209 committed Oct 17, 2024
2 parents 8c74472 + af652fc commit daf54a6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
import com.qualcomm.robotcore.hardware.DcMotor;
import com.qualcomm.robotcore.hardware.DcMotorSimple;

import org.firstinspires.ftc.robotcore.internal.camera.delegating.DelegatingCaptureSequence;

@Config
@TeleOp
public class NickTeleOp extends LinearOpMode {
Expand Down Expand Up @@ -57,6 +59,28 @@ public void runOpMode() throws InterruptedException {
Grabber.setPower(0.0);
}
}
// if (gamepad1.left_stick_y >.5 ) {
// leftFrontMotor.setPower(1.0);
// leftBackMotor.setPower(1.0);
// rightBackMotor.setPower(1.0);
// rightFrontMotor.setPower(1.0);
//
//
//
// } else if (gamepad1.left_stick_y <-.5 ) {
// leftFrontMotor.setPower(-1.0);
// leftBackMotor.setPower(-1.0);
// rightBackMotor.setPower(-1.0);
// rightFrontMotor.setPower(-1.0);
//
//
//
// } else {leftFrontMotor.setPower(0);
// leftBackMotor.setPower(0);
// rightBackMotor.setPower(0);
// rightFrontMotor.setPower(0);}
//

}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package org.firstinspires.ftc.teamcode.opmode;

public class tictacs {
public String material = "plastic";
public int TicTac = 200;
public String expiration = String.valueOf(2025);
public String Color = "red";
public tictacs TicTacs () {

return null;
}



}

0 comments on commit daf54a6

Please sign in to comment.