Skip to content

Commit de79737

Browse files
committed
summary
1 parent 854cf71 commit de79737

File tree

3 files changed

+2
-68
lines changed

3 files changed

+2
-68
lines changed

src/main/java/frc/robot/subsystems/algae/AlgaeIO.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//PING EPICPIGGUY ON DISCORD IF QUESTIONS
2-
31
package frc.robot.subsystems.algae;
42

53
import edu.wpi.first.units.measure.AngularVelocity;

src/main/java/frc/robot/subsystems/algae/AlgaeIOFX.java

Lines changed: 0 additions & 62 deletions
This file was deleted.

src/main/java/frc/robot/subsystems/algae/AlgaeSubsystem.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//PING EPICPIGGUY ON DISCORD IF QUESTIONS
2-
3-
41
package frc.robot.subsystems.algae;
52

63
import static edu.wpi.first.units.Units.RotationsPerSecond;
@@ -25,6 +22,7 @@ public class AlgaeSubsystem extends MeasurableSubsystem implements ClosedLoopSpe
2522

2623
private AlgaeStates curState = AlgaeStates.IDLE;
2724

25+
2826
public AlgaeSubsystem(AlgaeIO io) {
2927
this.io = io;
3028
}
@@ -91,7 +89,7 @@ public void periodic() {
9189
case EMPTY -> {
9290
if (inputs.isRevLimitSwitchClosed) { // FIXME: correct?
9391
hold();
94-
setState(AlgaeStates.HAS_ALGAE);
92+
setState(AlgaeStates.HAS_ALGAE);
9593
}
9694
}
9795
case IDLE -> {}

0 commit comments

Comments
 (0)