-
Notifications
You must be signed in to change notification settings - Fork 0
BallChucker9000 + Limelight Command Based #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: Command-Based
Are you sure you want to change the base?
Conversation
…n, add limelight auto, import CTRE, change default command
src/main/java/frc/robot/commands/BallChucker9000RotateLeft.java
Outdated
Show resolved
Hide resolved
|
||
@Override | ||
public void initialize() { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remember to fill this in. We probably want 2 commands: One with limelight input, the other that just takes a DoubleSupplier or double speed
@@ -25,14 +29,16 @@ | |||
|
|||
private final ExampleCommand m_autoCommand = new ExampleCommand(m_exampleSubsystem); | |||
|
|||
|
|||
private final BallChucker9000 BallChucker9000Subsystem; | |||
|
|||
/** | |||
* The container for the robot. Contains subsystems, OI devices, and commands. | |||
*/ | |||
public RobotContainer() { | |||
// Configure the button bindings | |||
configureButtonBindings(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By the way, here's the buttons.
manipulator -- left bumper: manual rotator left.
right bumper: manual rotator right.
Right joystick -- trigger: shoot
Button 3: indexer forward
Button 2: indexer backward
Initial (& basic) implementation.
Ready for testing:
Closes #55 and Closes #15