Skip to content

Commit

Permalink
Fix it probably
Browse files Browse the repository at this point in the history
  • Loading branch information
nh17000 committed Feb 7, 2024
1 parent e27f82f commit d2d2b12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static class LauncherConstants {
public static final double ampLauncherSpeed = 0.17; // 0.14 w/o polycarb bend, from everybot team testing
public static final double ampFeederSpeed = 0.4;

public static final double launcherDelay = .5414*2; // πŸ€―πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€πŸ’€
public static final double launcherDelay = .5414*2; // pretend there are emojis here
}

public static class ClimberConstants {
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/frc/robot/subsystems/Drivetrain.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public class Drivetrain extends SubsystemBase {
private final PearadoxSparkMax rightBack = new PearadoxSparkMax(DrivetrainConstants.rightBackID,
MotorType.kBrushless, PearadoxSparkMax.IdleMode.kBrake, DrivetrainConstants.limit, false, rightFront, 0);

private final RelativeEncoder leftFrontEncoder = leftFront.getEncoder();

/** Creates a new Drivetrain. */
DifferentialDrive m_drivetrain;

Expand Down

0 comments on commit d2d2b12

Please sign in to comment.