Skip to content

Commit

Permalink
Fix game piece detection leds
Browse files Browse the repository at this point in the history
  • Loading branch information
mpatankar6 committed Apr 12, 2024
1 parent 7e828e6 commit 63a45c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ public Robot() {
m_gamePieceDetection
.hasValidTarget
.and(() -> DriverStation.isAutonomous())
.onTrue(m_lights.startBlink(Color.kBlue));
.onTrue(m_lights.startBlink(Color.kBlue))
.onFalse(m_lights.idle());

m_driverController
.rightTrigger()
Expand Down

0 comments on commit 63a45c6

Please sign in to comment.