]> git.taranathan.com Git - FRC2026.git/commitdiff
change default
authoriefomit <timofei.stem@gmail.com>
Fri, 6 Mar 2026 01:49:26 +0000 (17:49 -0800)
committeriefomit <timofei.stem@gmail.com>
Fri, 6 Mar 2026 01:49:26 +0000 (17:49 -0800)
src/main/java/frc/robot/RobotContainer.java
src/main/java/frc/robot/controls/PS5XboxModeDriverConfig.java

index 1b6e2ebe14fa2a1894a191f9ad934480061719ff..bbe567dea42f8b86cec59921941aa3f8accc0021 100644 (file)
@@ -24,7 +24,7 @@ import frc.robot.constants.AutoConstants;
 import frc.robot.constants.Constants;
 import frc.robot.controls.BaseDriverConfig;
 import frc.robot.controls.Operator;
-import frc.robot.controls.PS5XboxModeDriverConfig;
+import frc.robot.controls.PS5ControllerDriverConfig;
 import frc.robot.subsystems.Climb.LinearClimb;
 import frc.robot.subsystems.Intake.Intake;
 import frc.robot.subsystems.drivetrain.Drivetrain;
@@ -110,7 +110,7 @@ public class RobotContainer {
 
       case Vertigo: // AKA "French Toast"
         drive = new Drivetrain(vision, new GyroIOPigeon2());
-        driver = new PS5XboxModeDriverConfig(drive, shooter, turret, hood, intake, spindexer, linearClimb);
+        driver = new PS5ControllerDriverConfig(drive, shooter, turret, hood, intake, spindexer, linearClimb);
         operator = new Operator(drive);
 
         // Detected objects need access to the drivetrain
index e2f6879bd77bc31a0ef52561ee83afc46406fcbb..af8a0f8e1ac15bf8340b8c43480dd082b23290b8 100644 (file)
@@ -36,7 +36,7 @@ import lib.controllers.GameController.DPad;
  * - install ViGEmBus driver (if app doesn't auto prompt)
  * - in dsx, set "controller emulation" to Xbox 360
  * - ensure rumble is enabled in dsx settings
- * - once code is depoloyed, change controller to "Xbox 360" controller in driverstation
+ * - once code is depoloyed, change controller to "Xbox 360" in driverstation
  */
 
 public class PS5XboxModeDriverConfig extends BaseDriverConfig {