Skip to content

Commit 8b6dec5

Browse files
author
uakotaobi
committed
Remove some unused imports and add a comment that might be helpful.
1 parent be3feb0 commit 8b6dec5

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

src/main/java/frc/robot/subsystems/DriveSubsystem.java

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
package frc.robot.subsystems;
22

3-
import java.util.ArrayList;
43
import java.util.Arrays;
54
import java.util.List;
6-
import java.util.function.BiConsumer;
7-
8-
import javax.lang.model.util.ElementScanner14;
95

106
import com.ctre.phoenix6.hardware.CANcoder;
117
import com.revrobotics.spark.SparkMax;
@@ -22,9 +18,6 @@
2218
import edu.wpi.first.math.kinematics.SwerveModuleState;
2319
import edu.wpi.first.util.sendable.SendableBuilder;
2420
import edu.wpi.first.wpilibj.drive.DifferentialDrive;
25-
import edu.wpi.first.wpilibj.motorcontrol.PWMMotorController;
26-
import edu.wpi.first.wpilibj.motorcontrol.PWMSparkMax;
27-
import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
2821
import edu.wpi.first.wpilibj2.command.SubsystemBase;
2922
import frc.robot.Constants;
3023
import frc.robot.Constants.*;
@@ -91,7 +84,7 @@ public class DriveSubsystem extends SubsystemBase {
9184
* for each pivot motor. We'll use the CANCoder's absolute angle as the measurement.
9285
*/
9386
private List<PIDController> pivotMotorPIDControllers;
94-
87+
9588
/**
9689
* Determines whether or not the shuffle board values should affect the wheels
9790
* of the robot based on if the joystick is being moved.
@@ -283,7 +276,7 @@ public void periodic() {
283276
SmartDashboard.putNumber("hi", 1);
284277
switch (driveType) {
285278
case DIFFERENTIAL_DRIVE:
286-
279+
287280

288281
// If the joystick is being moved, then the shuffleboard will be
289282
// prevented from setting anything. This is to prevent the
@@ -292,8 +285,14 @@ public void periodic() {
292285
if (input.getForwardBack() != 0 || input.getTurn() != 0) {
293286
differentialDrive.arcadeDrive(input.getForwardBack(), input.getTurn());
294287
canShuffleBoardActuate = false;
295-
} else if (!canShuffleBoardActuate) {
288+
} else if (!canShuffleBoardActuate) {
296289
differentialDrive.arcadeDrive(0, 0);
290+
} else {
291+
// canShuffleBoardActuate is true and the driver is not
292+
// touching the controls. Therefore, do _nothing_; this
293+
// will permit motor values that were set in the
294+
// shuffleboard to 'escape' into the actual robot without
295+
// being overwritten.
297296
}
298297
break;
299298
case SWERVE_DRIVE:

0 commit comments

Comments
 (0)