1
1
package frc .robot .subsystems ;
2
2
3
- import java .util .ArrayList ;
4
3
import java .util .Arrays ;
5
4
import java .util .List ;
6
- import java .util .function .BiConsumer ;
7
-
8
- import javax .lang .model .util .ElementScanner14 ;
9
5
10
6
import com .ctre .phoenix6 .hardware .CANcoder ;
11
7
import com .revrobotics .spark .SparkMax ;
22
18
import edu .wpi .first .math .kinematics .SwerveModuleState ;
23
19
import edu .wpi .first .util .sendable .SendableBuilder ;
24
20
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 ;
28
21
import edu .wpi .first .wpilibj2 .command .SubsystemBase ;
29
22
import frc .robot .Constants ;
30
23
import frc .robot .Constants .*;
@@ -91,7 +84,7 @@ public class DriveSubsystem extends SubsystemBase {
91
84
* for each pivot motor. We'll use the CANCoder's absolute angle as the measurement.
92
85
*/
93
86
private List <PIDController > pivotMotorPIDControllers ;
94
-
87
+
95
88
/**
96
89
* Determines whether or not the shuffle board values should affect the wheels
97
90
* of the robot based on if the joystick is being moved.
@@ -283,7 +276,7 @@ public void periodic() {
283
276
SmartDashboard .putNumber ("hi" , 1 );
284
277
switch (driveType ) {
285
278
case DIFFERENTIAL_DRIVE :
286
-
279
+
287
280
288
281
// If the joystick is being moved, then the shuffleboard will be
289
282
// prevented from setting anything. This is to prevent the
@@ -292,8 +285,14 @@ public void periodic() {
292
285
if (input .getForwardBack () != 0 || input .getTurn () != 0 ) {
293
286
differentialDrive .arcadeDrive (input .getForwardBack (), input .getTurn ());
294
287
canShuffleBoardActuate = false ;
295
- } else if (!canShuffleBoardActuate ) {
288
+ } else if (!canShuffleBoardActuate ) {
296
289
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.
297
296
}
298
297
break ;
299
298
case SWERVE_DRIVE :
0 commit comments