Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

Use arm replay IO on competition robot #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -90,7 +90,7 @@ public RobotContainer() {
case COMP_BOT:
matchMetadataSubsystem = new MatchMetadataSubsystem(new MatchMetadataIOFms());
lights = new Lights(new LightsIOReplay());
arm = new Arm(new ArmIONeos(), lights);
arm = new Arm(new ArmIOReplay(), lights);
swiffer = new Swiffer(new SwifferIOFalcon500(), lights);
imuSubsystem = new ImuSubsystem(new ImuIOAdis16470());
upperVisionSubsystem = new UpperHubVisionSubsystem(new UpperHubVisionIOReplay());
Expand Down