Skip to content

Commit 79639a1

Browse files
committed
tweak dash locations
1 parent 876405d commit 79639a1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/frc/robot/RobotContainer.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ private void configureMatchDashboard() {
522522

523523
Shuffleboard.getTab("Match")
524524
.addString("Score Side", () -> robotStateSubsystem.getScoreSide().name())
525-
.withPosition(4, 2)
525+
.withPosition(5, 1)
526526
.withSize(1, 1);
527527

528528
Shuffleboard.getTab("Match")
@@ -532,22 +532,22 @@ private void configureMatchDashboard() {
532532

533533
Shuffleboard.getTab("Match")
534534
.addBoolean("Has Coral", () -> robotStateSubsystem.hasCoral())
535-
.withPosition(3, 2)
535+
.withPosition(4, 1)
536536
.withSize(1, 1);
537537

538538
Shuffleboard.getTab("Match")
539539
.addString("Coral Location", () -> robotStateSubsystem.getCoralLoc().name())
540-
.withPosition(2, 3)
540+
.withPosition(6, 1)
541541
.withSize(1, 1);
542542

543543
Shuffleboard.getTab("Match")
544544
.addBoolean("Has Algae", () -> robotStateSubsystem.hasAlgae())
545-
.withPosition(3, 3)
545+
.withPosition(7, 1)
546546
.withSize(1, 1);
547547

548548
Shuffleboard.getTab("Match")
549549
.addString("Coral Level", () -> robotStateSubsystem.getCoralLevel().name())
550-
.withPosition(4, 3)
550+
.withPosition(5, 1)
551551
.withSize(1, 1);
552552

553553
Shuffleboard.getTab("Match")
@@ -575,7 +575,7 @@ private void configureMatchDashboard() {
575575
Shuffleboard.getTab("Match")
576576
.add("Zero Biscuit", new ZeroBiscuitCommand(biscuitSubsystem))
577577
.withSize(1, 1)
578-
.withPosition(10, 0);
578+
.withPosition(8, 0);
579579

580580
// Shuffleboard.getTab("Match")
581581
// .addBoolean(

0 commit comments

Comments
 (0)