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
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ public void execute() {
_leds.runAnimation(LEDAnimation.SolidGreen);
} else{
// if we have a note but are not in position then we are not ready.
_leds.runAnimation(LEDAnimation.SolidRed);
_leds.runAnimation(LEDAnimation.PickedUpNote);
}
// } else if (_leds.shouldRunHasNoteAnimation(_intake.hasNote())) {
// // Only run this animation one time, right when the intake first picks up a note
// // blinks orange when we pick up a note
// _leds.runAnimation(LEDAnimation.PickedUpNote);
// }
} else if(_intake.hasNote()){
_leds.runAnimation(LEDAnimation.SolidYellow);
_leds.runAnimation(LEDAnimation.PickedUpNote);
}
else{
// solid orange when we are doing nothing
Expand Down