Skip to content

Commit

Permalink
Remove commenting, change visibility of PDP
Browse files Browse the repository at this point in the history
  • Loading branch information
HoodieRocks committed Jan 6, 2024
1 parent a0f9046 commit c5dc04b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private class Controller {
private final LEDSubsystem ledSubsystem;
private final IntakeSubsystem intakeSubsystem;

PowerDistribution pdp = new PowerDistribution();
private final PowerDistribution pdp = new PowerDistribution();

// Set up the base for the drive and drivetrain
final DriveSubsystem drivetrain = DriveConstants.DriveTrain;
Expand Down Expand Up @@ -65,10 +65,6 @@ private void configureBindings() {
)
.ignoringDisable(true));

// if (Utils.isSimulation()) {
// drivetrain.seedFieldRelative(new Pose2d(new Translation2d(), Rotation2d.fromDegrees(90)));
// }

Controller.operator
.yellowButton()
.toggleOnTrue(intakeSubsystem.intakeHoldCommand(IntakeGamepiece.CONE));
Expand Down

0 comments on commit c5dc04b

Please sign in to comment.