From 1887d31b59d29e4e57d56df378d1aa3ace1bb328 Mon Sep 17 00:00:00 2001 From: mixxlto Date: Tue, 20 Jan 2026 21:52:42 -0800 Subject: [PATCH] not using cam on turret --- src/main/java/frc/robot/RobotContainer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/frc/robot/RobotContainer.java b/src/main/java/frc/robot/RobotContainer.java index 36211e8..e508746 100644 --- a/src/main/java/frc/robot/RobotContainer.java +++ b/src/main/java/frc/robot/RobotContainer.java @@ -61,9 +61,6 @@ public class RobotContainer { * Different robots may have different subsystems. */ public RobotContainer(RobotId robotId) { - turret = new Turret(); - shooter = new Shooter(); - turretVision = new TurretVision("SOME CAMERA NAME"); // TODO: Get a real camera // dispatch on the robot switch (robotId) { case TestBed1: @@ -82,6 +79,9 @@ public class RobotContainer { case Vivace: case Phil: case Vertigo: + turret = new Turret(); + shooter = new Shooter(); + drive = new Drivetrain(vision, new GyroIOPigeon2()); driver = new PS5ControllerDriverConfig(drive, shooter, turret, turretVision); operator = new Operator(drive); -- 2.39.5