Skip to content

Commit

Permalink
removed uneeded IO layers
Browse files Browse the repository at this point in the history
  • Loading branch information
GearBoxFox committed Mar 14, 2024
1 parent 7677ab0 commit 3581e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public RobotContainer() {
new ModuleIOTalonFX(Constants.DriveConstants.FR_MOD_CONSTANTS),
new ModuleIOTalonFX(Constants.DriveConstants.BL_MOD_CONSTANTS),
new ModuleIOTalonFX(Constants.DriveConstants.BR_MOD_CONSTANTS));
m_shooter = new ShooterSubsystem(new ShooterIOPrototype());
m_armSubsystem = new ArmSubsystem(new ArmIOPrototype());
m_shooter = new ShooterSubsystem(new ShooterIO() {});
m_armSubsystem = new ArmSubsystem(new ArmIO() {});
}
case PROTO_ARM -> {
m_driveSubsystem = new DriveSubsystem(
Expand Down

0 comments on commit 3581e54

Please sign in to comment.