Skip to content

Commit

Permalink
rivera being adult
Browse files Browse the repository at this point in the history
  • Loading branch information
Udunen committed Apr 10, 2024
1 parent 7210784 commit 6045f06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ motor backDriveMotor = motor(PORT20, ratio18_1, false);
inertial inertialSens = inertial(PORT4);
motor arm = motor(PORT1, ratio36_1, false);
motor deploy = motor(PORT2, ratio18_1, false);
motor climbMotorA = motor(PORT6, ratio18_1, false);
motor climbMotorA = motor(PORT6, ratio36_1, false);
motor climbMotorB = motor(PORT16, ratio36_1, true);
motor_group climb = motor_group(climbMotorA, climbMotorB);
motor_group leftDrive = motor_group(leftFrontDriveMotor, leftBackDriveMotor);
Expand Down Expand Up @@ -132,8 +132,8 @@ void auton(void) {
int main() {
climb.setMaxTorque(100, pct);
climb.setVelocity(100, pct);
climbMotorA.setVelocity(100, rpm);
climbMotorB.setVelocity(100, rpm);
climbMotorA.setVelocity(100, pct);
climbMotorB.setVelocity(100, pct);
climbMotorA.setMaxTorque(100, pct);
climbMotorB.setMaxTorque(100, pct);
climb.setStopping(coast);
Expand Down

0 comments on commit 6045f06

Please sign in to comment.