Skip to content

Commit

Permalink
Update robot.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Inspirol committed Apr 10, 2024
1 parent 1e2ad2f commit cfc1fa6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,12 @@ def teleopInit(self):
command.DriveSwerveCustom(Robot.drivetrain),
)
)
# self.scheduler.schedule(
# command.DeployIntake(Robot.intake).andThen(command.IntakeIdle(Robot.intake))
# )
self.scheduler.schedule(
command.IntakeIdle(Robot.intake)
command.DeployIntake(Robot.intake).andThen(command.IntakeIdle(Robot.intake))
)
# self.scheduler.schedule(
# command.IntakeIdle(Robot.intake)
# )

if Robot.wrist.note_in_feeder():
states.flywheel_state = states.FlywheelState.shooting
Expand Down

0 comments on commit cfc1fa6

Please sign in to comment.