Skip to content

Commit 9ba7c63

Browse files
committed
Finish climb sequence
1 parent 2e9868e commit 9ba7c63

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

src/main/java/org/littletonrobotics/frc2024/Robot.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import java.util.HashMap;
2929
import java.util.Map;
3030
import java.util.function.BiConsumer;
31+
import java.util.function.DoubleSupplier;
3132
import org.littletonrobotics.frc2024.Constants.Mode;
3233
import org.littletonrobotics.frc2024.subsystems.leds.Leds;
3334
import org.littletonrobotics.frc2024.util.Alert;
@@ -83,12 +84,12 @@ public class Robot extends LoggedRobot {
8384
private final Alert sameBatteryAlert =
8485
new Alert("The battery has not been changed since the last match.", AlertType.WARNING);
8586

86-
public static Trigger createTeleopTimeTrigger(double teleElapsedTime) {
87+
public static Trigger createTeleopTimeTrigger(DoubleSupplier teleElapsedTime) {
8788
return new Trigger(
8889
() ->
8990
DriverStation.isFMSAttached()
9091
&& DriverStation.isTeleopEnabled()
91-
&& Robot.teleElapsedTime > teleElapsedTime);
92+
&& Robot.teleElapsedTime > teleElapsedTime.getAsDouble());
9293
}
9394

9495
/**

src/main/java/org/littletonrobotics/frc2024/commands/ClimbingCommands.java

+17-6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
import edu.wpi.first.wpilibj2.command.WrapperCommand;
1313
import edu.wpi.first.wpilibj2.command.button.Trigger;
1414
import lombok.experimental.ExtensionMethod;
15+
import org.littletonrobotics.frc2024.Robot;
1516
import org.littletonrobotics.frc2024.RobotState;
1617
import org.littletonrobotics.frc2024.subsystems.drive.Drive;
1718
import org.littletonrobotics.frc2024.subsystems.leds.Leds;
@@ -26,16 +27,25 @@
2627
public class ClimbingCommands {
2728
private static final LoggedTunableNumber chainToBack =
2829
new LoggedTunableNumber("ClimbingCommands/ChainToBackOffset", 0.3);
30+
private static final LoggedTunableNumber autoUntrapTime =
31+
new LoggedTunableNumber("ClimbingCommands/AutoUntrapTime", 134.5);
2932

3033
public static Command trapSequence(
3134
Drive drive,
3235
Superstructure superstructure,
3336
Rollers rollers,
3437
Trigger forwardTrigger,
3538
Trigger reverseTrigger) {
39+
Trigger endOfMatch = Robot.createTeleopTimeTrigger(autoUntrapTime);
3640
SteppableCommandGroup sequence =
3741
new SteppableCommandGroup(
38-
forwardTrigger.and(superstructure::atGoal),
42+
forwardTrigger
43+
.and(superstructure::atArmGoal)
44+
.or(
45+
endOfMatch.and(
46+
() ->
47+
superstructure.getDesiredGoal() == Superstructure.Goal.TRAP
48+
&& rollers.getGoal() == Rollers.Goal.TRAP_SCORE)),
3949
reverseTrigger,
4050

4151
// Move arm to prepare prepare climb setpoint while moving climbers up
@@ -57,15 +67,16 @@ public static Command trapSequence(
5767
.alongWith(
5868
superstructure.setGoalWithConstraintsCommand(
5969
Superstructure.Goal.PREPARE_CLIMB,
60-
Arm.prepareClimbProfileConstraints.get())),
70+
Arm.prepareClimbProfileConstraints.get()),
71+
rollers.setGoalCommand(Rollers.Goal.SHUFFLE_BACKPACK)),
6172

6273
// Allow driver to line up and climb
63-
superstructure
64-
.setGoalCommand(Superstructure.Goal.CLIMB)
65-
.alongWith(rollers.setGoalCommand(Rollers.Goal.SHUFFLE_BACKPACK)),
74+
superstructure.setGoalCommand(Superstructure.Goal.CLIMB),
6675

6776
// Extend backpack
68-
superstructure.setGoalCommand(Superstructure.Goal.TRAP),
77+
superstructure
78+
.setGoalCommand(Superstructure.Goal.TRAP)
79+
.alongWith(rollers.setGoalCommand(Rollers.Goal.TRAP_PRESCORE)),
6980

7081
// Trap.
7182
superstructure

0 commit comments

Comments
 (0)