]> git.taranathan.com Git - FRC2026.git/commitdiff
update drivetrain names
authormixxlto <maxtan0626@gmail.com>
Wed, 21 Jan 2026 05:48:48 +0000 (21:48 -0800)
committermixxlto <maxtan0626@gmail.com>
Wed, 21 Jan 2026 05:48:48 +0000 (21:48 -0800)
src/main/java/frc/robot/RobotContainer.java

index 66ffdeb30e2fdccc8c1e1ebbc40624de209a8ec2..cd01ce25655b4ff1b8e679eee63dce55a0961544 100644 (file)
@@ -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());
 
-    
+
   }
 
   /**