Kommand

public class Kommand

The Kommand object provides factory methods to create various commands used in the robot's operation.

This is called for instant commands instead of functions

Types

Link copied to clipboard
public final class ParallelBuilder

A builder class for creating a ParallelCommandGroup.

Link copied to clipboard
public final class SequentialBuilder

A builder class for creating a SequentialCommandGroup.

Properties

Link copied to clipboard
public final static Kommand INSTANCE

Functions

Link copied to clipboard
public final static AlignToPose align(Direction offsetSide)

Creates an AlignToPose command to align the robot to a specified pose.

Link copied to clipboard
public final static AlignToPoseAuto alignAuto(Direction offsetSide)
Link copied to clipboard
public final static InstantCommand cancel()

Creates an InstantCommand to cancel all running commands.

Link copied to clipboard
public final static InstantCommand cmd(Subsystem reqs, Function0<Unit> function)

Creates an InstantCommand that executes the given function.

Link copied to clipboard
public final static InstantCommand coralScoreFalse()
Link copied to clipboard
public final static InstantCommand coralScoring()

Creates an InstantCommand to set the coral scoring state to true, starting the coral scoring process.

Link copied to clipboard
public final static Command createPathfindingCmd(Pose2d targetPose, Double endVelocity)
public final static Command createPathfindingCmd(Pose2d targetPose)

Creates a pathfinding command to move to a specified pose.

Link copied to clipboard
public final static PadDrive drive(XboxController controller)

Creates a PadDrive command to control the robot's driving mechanism.

Link copied to clipboard
public final static InstantCommand flipPidgey()

Creates an InstantCommand to flip the Pidgey sensor.

Link copied to clipboard
public final static InstantCommand hasPieceFalse()

Creates an InstantCommand to set the coral manipulator intaking state to true.

Link copied to clipboard
public final static SequentialCommandGroup moveElevatorState(ElevatorState state)

Creates a SequentialCommandGroup to move the elevator to a specified state.

Link copied to clipboard
public final static Pose2d moveToClosestCoralScore(Direction direction, Pose2d pose)

Creates a command to move the robot to the closest coral scoring position in the specified coral direction.

Link copied to clipboard
public final static Pose2d moveToClosestCoralScoreNotL4(Direction direction, Pose2d pose)

Creates a command to move the robot to the closest coral scoring position in the specified coral direction.

Link copied to clipboard
public final static InstantCommand offVision()

Toggles the vision kill switch state.

Link copied to clipboard
public final static InstantCommand onVision()

Toggles the vision kill switch state.

Link copied to clipboard
public final static PadElevator padElevator(XboxController controller, XboxController controller2)

Creates a PadDrive command to control the elevator.

Link copied to clipboard
public final ParallelCommandGroup parallel(Function1<Kommand.ParallelBuilder, Unit> block)

Creates a ParallelCommandGroup that runs the given commands in parallel.

Link copied to clipboard
public final static InstantCommand resetPidgey()

Creates an InstantCommand to reset the Pidgey sensor.

Link copied to clipboard
public final static ReverseIntake reverseIntake()

Creates an new ReverseIntake command to reverse the intake.

Link copied to clipboard
public final SequentialCommandGroup sequential(Function1<Kommand.SequentialBuilder, Unit> block)

Creates a SequentialCommandGroup using the provided block to add commands.

Link copied to clipboard
public final static InstantCommand setCoralState(CoralState state)

Creates an InstantCommand to set the state of the coral manipulator.

Link copied to clipboard
public final static InstantCommand setElevatorState(ElevatorState state)

Creates an InstantCommand to set the state of the elevator.

Link copied to clipboard
public final static InstantCommand setIntakeAlgae()

Creates an InstantCommand to set the intake to algae.

Link copied to clipboard
public final static InstantCommand setTelePid()

Creates an InstantCommand to set the teleoperation PID.

Link copied to clipboard
public final static InstantCommand startCoralMotors()

Creates an InstantCommand to start the coral motors.

Link copied to clipboard
public final static WaitCommand waitFor(Double seconds)

Creates a WaitCommand to wait for a specified number of seconds.

Link copied to clipboard
public final static WaitUntilCommand waitUntil(Function0<Boolean> function)

Creates a WaitUntilCommand that waits until the given condition is true.