Skip to content

Commit

Permalink
🔥 Just make the buttonMap visible
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Sep 30, 2024
1 parent 2b0473d commit 9788701
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/java/frc/robot/utils/ControllerMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class ControllerMapper {
private CommandXboxController operator;
private boolean enabled;

private Map<String, Map<String, String>> buttonMap = new HashMap<>();
public Map<String, Map<String, String>> buttonMap = new HashMap<>();

public ControllerMapper(
boolean enabled, CommandXboxController driver, CommandXboxController operator) {
Expand Down Expand Up @@ -86,8 +86,4 @@ public void outputControllerMap() {
Gson gson = new Gson();
Logger.recordOutput("controllerMap", gson.toJson(buttonMap));
}

public void setLeftJoystickDescription(String controller, String description) {}

public void setRightJoystickDescription(String controller, String description) {}
}

0 comments on commit 9788701

Please sign in to comment.