New PR for One Handed Mode #1

Merged
Bradley merged 2 commits from onehandedmode into main 2025-08-14 21:25:37 -04:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit a1aaf44cf9 - Show all commits

0
gradlew vendored Normal file → Executable file
View File

View File

@ -129,6 +129,11 @@ public class RobotContainer {
.withSize(2, 1) .withSize(2, 1)
.withWidget(BuiltInWidgets.kBooleanBox); .withWidget(BuiltInWidgets.kBooleanBox);
tab.addBoolean("One Handed Mode?", () -> oneHandedMode)
.withPosition(2, 0)
.withSize(2, 1)
.withWidget(BuiltInWidgets.kBooleanBox);
Shuffleboard.selectTab("DRIVE"); Shuffleboard.selectTab("DRIVE");
} }