Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/java/frc/robot/subsystems/Lights/LED.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ public void periodic() {
LEDPattern.solid(c).applyTo(m_middle);
}

//start blinking the LEDs .5 seconds before the climber starts pulling the robot up
//For now its plain white
if (RequestManager.getInstance().climber.getState() == ClimberStates.CONTINUE_SUCKING) {
LEDPattern.solid(c).blink(Seconds.of(.2)).applyTo(m_ledBuffer);
c = Color.kWhite;
LEDPattern.solid(c).applyTo(m_ledBuffer);
isBlinking = true;
}

Expand Down