Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
Signed-off-by: Mz <mzmud@icloud.com>
  • Loading branch information
JadedHearth committed Feb 10, 2024
1 parent 85a6e53 commit a4fc33e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import frc.robot.subsystems.flywheel.FlywheelIO;
import frc.robot.subsystems.flywheel.FlywheelIOSim;
import frc.robot.subsystems.flywheel.TopFlywheelIOSparkMax;
import frc.robot.subsystems.flywheel.BottomFlywheelIOSparkMax;
import org.littletonrobotics.junction.networktables.LoggedDashboardChooser;
import org.littletonrobotics.junction.networktables.LoggedDashboardNumber;

Expand Down Expand Up @@ -71,7 +72,7 @@ public RobotContainer() {
new ModuleIOSparkMax(2),
new ModuleIOSparkMax(3));
TopFlywheel = new Flywheel(new TopFlywheelIOSparkMax());
BottomFlywheel = new Flywheel(new TopFlywheelIOSparkMax());
BottomFlywheel = new Flywheel(new BottomFlywheelIOSparkMax());
// drive = new Drive(
// new GyroIOPigeon2(true),
// new ModuleIOTalonFX(0),
Expand Down

0 comments on commit a4fc33e

Please sign in to comment.