Skip to content

Commit

Permalink
update git ignore and make it not crash on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
shinthebinn committed Feb 17, 2024
1 parent a8188fa commit e75fa8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ out/

# Simulation GUI and other tools window save file
*-window.json
simgui*.json
# !simgui-ds.json
networktables.json

# Simulation data log directory
logs/
Expand All @@ -181,4 +184,6 @@ ctre_sim/
src/main/java/frc/robot/constants/BuildConstants.java

# for testing
src/main/deploy/pathplanner/New*
src/main/deploy/pathplanner/New*
.DataLogTool/
.SysId/
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 @@ -33,7 +33,7 @@ public RobotContainer() {

var driveTab = Shuffleboard.getTab(ShuffleboardConstants.driveTab);

driveTab.add("auto selection", autoChooser).withSize(4, 1);
driveTab.add("auto selection", autoChooser.getSendableChooser()).withSize(4, 1);
}

private void configureBindings() {
Expand Down

0 comments on commit e75fa8d

Please sign in to comment.