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

Commit

Permalink
hehe
Browse files Browse the repository at this point in the history
  • Loading branch information
raghavsial committed Nov 23, 2024
1 parent 7d2c869 commit 5621fef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public void drive(double leftPower, double rightPower) {
}

public void setArcadeDrivePower(double forward, double turn) {
double leftMotorPower= turn - forward;
double rightMotorPower= -turn - forward;
double leftMotorPower= 0.75*(turn - forward);
double rightMotorPower= 0.75*(-turn - forward);
drive(leftMotorPower, rightMotorPower);


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class PIDElevator extends Procedure {

public PIDElevator(boolean top){
if (top == true ){
this.setpoint = 170;
this.setpoint = 165;
}
else {
this.setpoint = 0 ;
Expand Down

0 comments on commit 5621fef

Please sign in to comment.