Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 10, 2024
1 parent e71d662 commit db94db3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,5 @@ class Shooter : public frc2::SubsystemBase {
this}};
frc::PIDController m_shooterFeedback{constants::shooter::kP, 0, 0};
frc::SimpleMotorFeedforward<units::turns> m_shooterFeedforward{
constants::shooter::kS, constants::shooter::kV,
constants::shooter::kA};
constants::shooter::kS, constants::shooter::kV, constants::shooter::kA};
};
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ public class Shooter extends SubsystemBase {
// those calculated by SysId
private final SimpleMotorFeedforward m_shooterFeedforward =
new SimpleMotorFeedforward(
ShooterConstants.kSVolts, ShooterConstants.kVVoltSecondsPerRotation, ShooterConstants.kAVoltSecondsSquaredPerRotation);
ShooterConstants.kSVolts,
ShooterConstants.kVVoltSecondsPerRotation,
ShooterConstants.kAVoltSecondsSquaredPerRotation);

/** Creates a new Shooter subsystem. */
public Shooter() {
Expand Down

0 comments on commit db94db3

Please sign in to comment.