Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
a
  • Loading branch information
kirbt committed Apr 8, 2024
1 parent 653d3b3 commit d21e153
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/frc/team2412/robot/util/auto/AutoLogic.java
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,10 @@ public static Command feederIn() {
return (INTAKE_ENABLED && LAUNCHER_ENABLED
? Commands.waitUntil(isReadyToLaunch())
.andThen(Commands.waitSeconds(FEEDER_DELAY))
.andThen(new FeederInCommand(s.intakeSubsystem).until(untilNoNote())
.andThen(Commands.waitSeconds(0.1))
.andThen(
new FeederInCommand(s.intakeSubsystem)
.until(untilFeederHasNoNote())
.andThen(Commands.waitSeconds(0.1)))
: Commands.none())
.withName("Auto - FeedCommand");
}
Expand Down

0 comments on commit d21e153

Please sign in to comment.