Skip to content

Commit

Permalink
added pose supplier to arm subsystem
Browse files Browse the repository at this point in the history
  • Loading branch information
GearBoxFox committed Feb 28, 2024
1 parent f15de83 commit 725f055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public RobotContainer() {
new ModuleIOTalonFX(Constants.DriveConstants.BL_MOD_CONSTANTS),
new ModuleIOTalonFX(Constants.DriveConstants.BR_MOD_CONSTANTS));
m_shooter = new ShooterSubsystem(new ShooterIOKraken());
m_armSubsystem = new ArmSubsystem(new ArmIOKraken());
m_armSubsystem = new ArmSubsystem(new ArmIOKraken(), m_driveSubsystem::getVisionPose);
m_climber = new ClimberSubsystem(new ClimberIOKraken() {});
}
case PROTO_ARM -> {
Expand Down

0 comments on commit 725f055

Please sign in to comment.