File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/frc/robot/subsystems/superstructure/intake/sensor Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ public class Sensor {
88 private final SensorIO io ;
99 private final SensorIO .SensorIOInputs inputs = new SensorIO .SensorIOInputs ();
1010
11- private final Alert disconnectedAlert = new Alert ("Intake sensor disconnected!" , Alert .AlertType .kWarning );
11+ private final Alert disconnectedAlert =
12+ new Alert ("Intake sensor disconnected!" , Alert .AlertType .kWarning );
1213
1314 private final Debouncer debouncer = new Debouncer (0.1 );
1415 private boolean hasItem = false ;
Original file line number Diff line number Diff line change 11package frc .robot .subsystems .superstructure .intake .sensor ;
22
3- import java .util .Random ;
4-
53import edu .wpi .first .wpilibj .Timer ;
4+ import java .util .Random ;
65
76public class SensorIOSim implements SensorIO {
87
You can’t perform that action at this time.
0 commit comments