Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgrammingSR committed Mar 2, 2024
1 parent 0e6b9e8 commit 35dcab5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 18 deletions.
7 changes: 4 additions & 3 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public static final class IntakeConstants {
public static final int kArmEncoderChannel = 0;

// In degrees
public static final double kIntakeLoweredAngle = -193;
public static final double kIntakeRaisedAngle = 0;
public static final double kIntakeLoweredAngle = -183;
public static final double kIntakeRaisedAngle = -6;
public static final double kIntakeAmpScoringAngle = -93; // 193 - 100 (previous angle)

/** Encoder offset in rotations */
Expand All @@ -117,7 +117,8 @@ public static final class IntakeConstants {
public static final class ShooterConstants {
public static final int kTopShooterMotorPort = 20;
public static final int kBottomShooterMotorPort = 35;
public static final double kShooterSpeed = 0.7;
public static final double kShooterSpeedTop = 0.75;
public static final double kShooterSpeedBottom = 0.9;
public static final double kShooterOff = 0;
}
public static class ClimberConstants {
Expand Down
24 changes: 12 additions & 12 deletions src/main/java/frc/robot/subsystems/DriveSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,18 +94,18 @@ public void periodic() {

m_field.setRobotPose(m_poseEstimator.getEstimatedPosition());

SmartDashboard.putNumber("gyro angle", m_gyro.getAngle());
SmartDashboard.putNumber("odometryX", m_poseEstimator.getEstimatedPosition().getX());
SmartDashboard.putNumber("odometryY", m_poseEstimator.getEstimatedPosition().getY());

// AdvantageScope Logging
double[] logData = {
m_frontLeft.getPosition().angle.getDegrees(), m_frontLeft.driveOutput,
m_frontRight.getPosition().angle.getDegrees(), m_frontRight.driveOutput,
m_rearLeft.getPosition().angle.getDegrees(), m_rearLeft.driveOutput,
m_rearRight.getPosition().angle.getDegrees(), m_rearRight.driveOutput,
};
SmartDashboard.putNumberArray("AdvantageScope Swerve States", logData);
// SmartDashboard.putNumber("gyro angle", m_gyro.getAngle());
// SmartDashboard.putNumber("odometryX", m_poseEstimator.getEstimatedPosition().getX());
// SmartDashboard.putNumber("odometryY", m_poseEstimator.getEstimatedPosition().getY());

// // AdvantageScope Logging
// double[] logData = {
// m_frontLeft.getPosition().angle.getDegrees(), m_frontLeft.driveOutput,
// m_frontRight.getPosition().angle.getDegrees(), m_frontRight.driveOutput,
// m_rearLeft.getPosition().angle.getDegrees(), m_rearLeft.driveOutput,
// m_rearRight.getPosition().angle.getDegrees(), m_rearRight.driveOutput,
// };
// SmartDashboard.putNumberArray("AdvantageScope Swerve States", logData);

setModuleStates(swerveModuleStates);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/IntakeSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class IntakeSubsystem extends SubsystemBase {

private DutyCycleEncoder m_armEncoder = new DutyCycleEncoder(IntakeConstants.kArmEncoderChannel);

private Rev2mDistanceSensor m_distanceSensor = new Rev2mDistanceSensor(Port.kOnboard); // onboard I2C port;
private Rev2mDistanceSensor m_distanceSensor = new Rev2mDistanceSensor(Port.kMXP); // onboard I2C port;

private double m_intakeSpeed = 0;
private double m_armSetpoint = IntakeConstants.kIntakeRaisedAngle;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/ShooterSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ public ShooterSubsystem() {
public void setShootingSpeed(ShootSpeed speed) {
switch (speed){
case Shooting:
m_topSpeed = ShooterConstants.kShooterSpeed;
m_bottomSpeed = ShooterConstants.kShooterSpeed;
m_topSpeed = ShooterConstants.kShooterSpeedTop;
m_bottomSpeed = ShooterConstants.kShooterSpeedBottom;
// System.out.println("shoot speed: " + ShooterConstants.kShooterSpeed);
break;
case Off:
Expand Down

0 comments on commit 35dcab5

Please sign in to comment.