Skip to content

Commit

Permalink
integration
Browse files Browse the repository at this point in the history
  • Loading branch information
M1stersushiguy committed Nov 21, 2024
1 parent 07aebbe commit 624dedf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/main/java/frc/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public class Robot extends TimedRobot {
// Subsystems
private final Swerve drivetrain = SwerveConfig.swerve;
private final Intake intake = new Intake();
private final Shooter shooterLeft = new Shooter(15);
private final Shooter shooterRight = new Shooter(16);

// Utilities
static double squareInput(double input) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/system/Shooter.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Shooter implements Subsystem {

public Shooter(int id) {
// Motor
shooterMotor = new TalonSRX(int id);
shooterMotor = new TalonSRX(id);

// Configs
shooterMotor.setInverted(false);
Expand Down

0 comments on commit 624dedf

Please sign in to comment.