]> git.taranathan.com Git - FRC2026.git/commitdiff
u forgot to invert the right motor
authormoo <moogoesmeow123@gmail.com>
Sun, 29 Mar 2026 19:00:37 +0000 (12:00 -0700)
committermoo <moogoesmeow123@gmail.com>
Sun, 29 Mar 2026 19:00:37 +0000 (12:00 -0700)
src/main/java/frc/robot/subsystems/Intake/Intake.java

index ebb9b9aea80d18d2857558ad59949b402e6bb169..c7d6b1dea69368a20d5983877b82d08793bd5ba8 100644 (file)
@@ -131,7 +131,8 @@ public class Intake extends SubsystemBase implements IntakeIO{
         );
 
         rightMotor.getConfigurator().apply(
-            new MotorOutputConfigs().withNeutralMode(NeutralModeValue.Coast)
+            new MotorOutputConfigs().withInverted(InvertedValue.Clockwise_Positive)
+            .withNeutralMode(NeutralModeValue.Coast)
         );
 
         leftMotor.setPosition(0.0);