Skip to content

Commit

Permalink
Merge pull request #91 from CyberCoyotes/Yellow
Browse files Browse the repository at this point in the history
Yellow
  • Loading branch information
JediScoy authored Jan 31, 2024
2 parents 2d2e99c + 2b38fb6 commit 5e5bb0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/main/java/frc/robot/subsystems/LedSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ public void ColorGreen (){
public void ColorBlue (){
m_candle.setLEDs(0,0,255) ;
}
public void ColorYellow (){
m_candle.setLEDs(255,255,0) ;
}

/*******************************
Color | RGB Values
Expand All @@ -70,6 +73,7 @@ public void ColorBlue (){
Blue | (0, 0, 255)
Orange | (255, 165, 0)
Dark Orange | (255, 60,0)
Yellow | (255, 255,0)
********************************/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void setLEDColor() {

} else if (isNoteLoaded() == false) {
//SetColor decide UnLoaded color
m_ledSubsystem.ColorRed();
m_ledSubsystem.ColorYellow();
}
}

Expand Down

0 comments on commit 5e5bb0f

Please sign in to comment.