Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
legoguy1000 committed Jan 27, 2024
1 parent 0b797de commit 29554cb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/frc/lib/util/swerve/SwerveModuleReal.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ public class SwerveModuleReal implements SwerveModuleIO {
private TalonFXConfiguration swerveDriveFXConfig = new TalonFXConfiguration();
private CANcoderConfiguration swerveCANcoderConfig = new CANcoderConfiguration();

/**
* A real Swerve Module with motors and sensors
*
* @param moduleNumber The Module Number
* @param driveMotorID The Drive Motor CAN ID
* @param angleMotorID The Angle Motor CAN ID
* @param cancoderID The CANCode CAN ID
* @param angleOffset The Angle Offset in {@link Rotation2d}
*/
public SwerveModuleReal(int moduleNumber, int driveMotorID, int angleMotorID, int cancoderID,
Rotation2d angleOffset) {

Expand Down

0 comments on commit 29554cb

Please sign in to comment.