-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fae23a
commit c055019
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
12 changes: 11 additions & 1 deletion
12
src/main/kotlin/com/team4099/robot2023/config/constants/LedConstants.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
package com.team4099.robot2023.config.constants | ||
|
||
object LedConstants { | ||
// TODO: Review states and change them if needed | ||
enum class LEDMode { | ||
IDLE | ||
IDLE, | ||
AUTO, | ||
INTAKE, | ||
OUTTAKE, | ||
TELEOP, | ||
NOTE, | ||
SOURCE, | ||
MOVEMENT, | ||
SCORE_SPEAKER, | ||
SCORE_AMP | ||
} | ||
} |