We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2ed688 commit ed4e9b5Copy full SHA for ed4e9b5
src/main/java/frc/robot/subsystems/superstructure/Superstructure.java
@@ -122,10 +122,10 @@ public Command runPrepare(State goal) {
122
public static final Rotation2d STOW_CORAL_ANGLE = Rotation2d.fromDegrees(-90);
123
public static final Rotation2d STOW_CORAL_ANGLE_HIGH = Rotation2d.fromDegrees(90);
124
125
+ // TODO: Integrate lightstrip commands into this stuff
126
public Command prepareL1() {
127
return Commands.parallel(
128
elevator.runPositionPrepare(L1_HEIGHT), coralWrist.runPositionPrepare(L1_CORAL_ANGLE));
- // .beforeStarting(new SetAddressableLEDPattern(lights, new Ligh));
129
}
130
131
public Command prepareL2() {
0 commit comments