Skip to content

Commit

Permalink
fix javadoc pt 3
Browse files Browse the repository at this point in the history
  • Loading branch information
quackitsquinn committed Apr 1, 2024
1 parent 74c8fc9 commit 6974d0a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,16 @@ public static final class Colors {
/** The color for the lights when the robot is disabled. */
public static final Color DISABLED_COLOR = Color.fromHSV(15, 255, 100);

/** The color for the pulse during the boot sequence. */
public static final Color BOOT_SEQUENCE_PULSE_COLOR = Color.fromHSV(0, 0, 255);

/** The enable color for when the robot is not on an alliance */
public static final Color ENABLE_COLOR_NO_ALLIANCE = Color.fromHSV(137, 255, 200);

/** The enable color for when the robot is on the blue alliance */
public static final Color ENABLE_COLOR_BLUE_ALLIANCE = Color.fromHSV(120, 255, 200);

/** The enable color for when the robot is on the red alliance */
public static final Color ENABLE_COLOR_RED_ALLIANCE = Color.fromHSV(0, 255, 200);
}
}
Expand Down

0 comments on commit 6974d0a

Please sign in to comment.