From: mixxlto Date: Wed, 21 Jan 2026 05:48:48 +0000 (-0800) Subject: update drivetrain names X-Git-Url: https://git.taranathan.com/?a=commitdiff_plain;h=e90f59a64e9257c159ca5a1b5c6c69265e3e33cf;p=FRC2026.git update drivetrain names --- diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index 66ffdeb..cd01ce2 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -67,15 +67,17 @@ public class RobotContainer { case WaffleHouse: - case SwerveCompetition: + case SwerveCompetition: // AKA "Vantage" - case BetaBot: + case BetaBot: // AKA "Pancake" vision = new Vision(VisionConstants.APRIL_TAG_CAMERAS); // fall-through case Vivace: - case Phil: - case Vertigo: + + case Phil: // AKA "IHOP" + + case Vertigo: // AKA "French Toast" drive = new Drivetrain(vision, new GyroIOPigeon2()); driver = new PS5ControllerDriverConfig(drive); operator = new Operator(drive); @@ -84,7 +86,6 @@ public class RobotContainer { DetectedObject.setDrive(drive); // SignalLogger.start(); - driver.configureControls(); operator.configureControls(); @@ -113,7 +114,7 @@ public class RobotContainer { SmartDashboard.putData("Shutdown Orange Pis", new ShutdownAllPis()); - + } /**