]> git.taranathan.com Git - FRC2026.git/commitdiff
i broke the robot
authormaxwtan <100314265+MaxwellTTan20@users.noreply.github.com>
Fri, 10 Apr 2026 20:47:04 +0000 (13:47 -0700)
committermaxwtan <100314265+MaxwellTTan20@users.noreply.github.com>
Fri, 10 Apr 2026 20:47:04 +0000 (13:47 -0700)
src/main/java/frc/robot/commands/gpm/Superstructure.java

index 1f7737bf552f8734d5d99040047151a65c3044a0..9ed078b9454332b9a270dcba4275969af4b64c1c 100644 (file)
@@ -251,10 +251,12 @@ public class Superstructure extends Command {
 
         turretOffset = SmartDashboard.getNumber("OPERATOR: Turret Offset", turretOffset);
         SmartDashboard.putNumber("OPERATOR: Turret Offset", turretOffset);
-        SmartDashboard.putData("Hood: Shoot Higher", new InstantCommand(() -> bumpUpHoodOffset()));
-        SmartDashboard.putData("Hood: Shoot Lower", new InstantCommand(() -> bumpDownHoodOffset()));
-        SmartDashboard.putData("Turret: Aim Left", new InstantCommand(() -> bumpUpTurretOffset()));
-        SmartDashboard.putData("Turret: Aim Right", new InstantCommand(() -> bumpDownTurretOffset()));
+
+        // If we ever need to lose a match use this code below
+        // SmartDashboard.putData("Hood: Shoot Higher", new InstantCommand(() -> bumpUpHoodOffset()));
+        // SmartDashboard.putData("Hood: Shoot Lower", new InstantCommand(() -> bumpDownHoodOffset()));
+        // SmartDashboard.putData("Turret: Aim Left", new InstantCommand(() -> bumpUpTurretOffset()));
+        // SmartDashboard.putData("Turret: Aim Right", new InstantCommand(() -> bumpDownTurretOffset()));
 
         // Phase manager stuff
         phaseManager.update(drivepose, shooter, turret);