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;
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
* - 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 {