Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Commit

Permalink
Tweak constants
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthegreat1 committed Jan 19, 2024
1 parent 1525b30 commit 1d48ee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TeleOp.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void runOpMode() {
driveTrain = new DriveTrain(this);
intakeWheel = hardwareMap.get(DcMotor.class, "intakeWheel");
outputSlide = new LinearSlide("linearSlide", 0.5);
pivot = new MotorOutputPivot("outputPivot", 0.5);
pivot = new MotorOutputPivot("outputPivot", 0.3);
driveTrain.init(hardwareMap);
outputSlide.init(hardwareMap);
pivot.init(hardwareMap);
Expand All @@ -65,7 +65,7 @@ public void runOpMode() {
secondPixel.setAction(false);

planeLaunch = new ServoToggle();
planeLaunch.init(hardwareMap, "launcher", 0.3, 0, true);
planeLaunch.init(hardwareMap, "launcher", 0.2, 0, true);


// Wait for start
Expand Down

0 comments on commit 1d48ee2

Please sign in to comment.