Skip to content

Commit

Permalink
changed amp lights state
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen756 committed Jun 8, 2024
1 parent 8bd8d1d commit 3a09461
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/robot_manager/RobotState.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ true, false, false, new LightsState(Color.kBlue, BlinkPattern.BLINK_FAST)),
SPEAKER_SHOOT(true, false, true, new LightsState(null, BlinkPattern.BLINK_FAST)),

/** Note maybe in queuer, need to move it to conveyor, and then transition to WAITING_AMP_SHOT. */
PREPARE_WAITING_AMP_SHOT(true, false, false, new LightsState(null, BlinkPattern.SOLID)),
PREPARE_WAITING_AMP_SHOT(true, false, false, new LightsState(Color.kRed, BlinkPattern.SOLID)),
/** Note in conveyor, waiting for driver to commit to amp score. */
WAITING_AMP_SHOT(true, false, false, new LightsState(null, BlinkPattern.SOLID)),
WAITING_AMP_SHOT(true, false, false, new LightsState(Color.kGreen, BlinkPattern.SOLID)),
/** Get ready for amp shot, automatically go to AMP_SHOT when ready. */
PREPARE_AMP_SHOT(true, false, false, new LightsState(null, BlinkPattern.SOLID)),
/** Actively scoring in the amp. */
Expand Down

0 comments on commit 3a09461

Please sign in to comment.