Skip to content

Commit

Permalink
🚚 Renamed to dumpControllerMap
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Sep 30, 2024
1 parent 9788701 commit 6e41101
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ private void configureBindings() {
controls
.bindDriver("b", "exampleMethodCommand")
.whileTrue(m_exampleSubsystem.exampleMethodCommand());

controls.dumpControllerMap();
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/utils/ControllerMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private Trigger getButton(CommandXboxController controller, String button) {
}
}

public void outputControllerMap() {
public void dumpControllerMap() {
if (!this.enabled) {
return;
}
Expand Down

0 comments on commit 6e41101

Please sign in to comment.