Skip to content

Commit

Permalink
spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
yakla committed Feb 8, 2025
1 parent 86b3efc commit 2a50a94
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/main/kotlin/frc/robot/subsystems/leds/LEDs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import edu.wpi.first.wpilibj.LEDPattern
import edu.wpi.first.wpilibj.util.Color
import edu.wpi.first.wpilibj2.command.Command
import edu.wpi.first.wpilibj2.command.SubsystemBase
import frc.robot.IS_RED
import frc.robot.climber
import frc.robot.gripper

Expand Down
16 changes: 8 additions & 8 deletions src/main/kotlin/frc/robot/subsystems/leds/LEDsConstants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ val teamPattern: LEDPattern =
when (IS_RED) {
false ->
LEDPattern.gradient(
LEDPattern.GradientType.kDiscontinuous,
Color.kAqua,
Color.kBlue
)
LEDPattern.GradientType.kDiscontinuous,
Color.kAqua,
Color.kBlue
)
.scrollAtAbsoluteSpeed(
SCROLLING_SPEED_TEAM_PATTERN,
LED_SPACING
)
true ->
LEDPattern.gradient(
LEDPattern.GradientType.kDiscontinuous,
Color(255, 0, 148),
Color.kRed
)
LEDPattern.GradientType.kDiscontinuous,
Color(255, 0, 148),
Color.kRed
)
.scrollAtAbsoluteSpeed(
SCROLLING_SPEED_TEAM_PATTERN,
LED_SPACING
Expand Down

0 comments on commit 2a50a94

Please sign in to comment.