File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ public RobotContainer() {
107107 swerveSubsystem ::getPose ));
108108
109109 endEffectorSubsystem = new EndEffectorSubsystem (new EndEffectorIOSim ());
110-
111110 break ;
112111
113112 default :
Original file line number Diff line number Diff line change 55import edu .wpi .first .wpilibj2 .command .Command ;
66import edu .wpi .first .wpilibj2 .command .Commands ;
77import edu .wpi .first .wpilibj2 .command .SubsystemBase ;
8+ import org .littletonrobotics .junction .Logger ;
89
910public class EndEffectorSubsystem extends SubsystemBase {
1011 private final EndEffectorIO io ;
@@ -17,9 +18,9 @@ public EndEffectorSubsystem(EndEffectorIO io) {
1718 new Alert ("Disconnected End Effector motor" + "." , AlertType .kError );
1819 }
1920
20- @ Override
2121 public void periodic () {
2222 io .updateInputs (inputs );
23+ Logger .processInputs ("EndEffector" , inputs );
2324 EndEffectorDisconnectedAlert .set (!inputs .EndEffectorConnected );
2425 }
2526
You can’t perform that action at this time.
0 commit comments