Interface LegacySwerveRequest
- All Known Implementing Classes:
LegacySwerveRequest.ApplyChassisSpeeds,LegacySwerveRequest.FieldCentric,LegacySwerveRequest.FieldCentricFacingAngle,LegacySwerveRequest.Idle,LegacySwerveRequest.PointWheelsAt,LegacySwerveRequest.RobotCentric,LegacySwerveRequest.SwerveDriveBrake,LegacySwerveRequest.SysIdSwerveRotation,LegacySwerveRequest.SysIdSwerveSteerGains,LegacySwerveRequest.SysIdSwerveTranslation
public interface LegacySwerveRequest
Container for all the Swerve Requests. Use this to find all applicable swerve
drive requests.
This is also an interface common to all swerve drive control requests that allow the request to calculate the state to apply to the modules.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classAccepts a generic ChassisSpeeds to apply to the drivetrain.static classDrives the swerve drivetrain in a field-centric manner.static classDrives the swerve drivetrain in a field-centric manner, maintaining a specified heading angle to ensure the robot is facing the desired directionstatic enumThe reference for "forward" is sometimes different if you're talking about field relative.static classDoes nothing to the swerve module state.static classstatic classSets the swerve drive modules to point to a specified direction.static classDrives the swerve drivetrain in a robot-centric manner.static classSets the swerve drive module states to point inward on the robot in an "X" fashion, creating a natural brake which will oppose any motion.static classSysId-specific SwerveRequest to characterize the rotational characteristics of a swerve drivetrain.static classSysId-specific SwerveRequest to characterize the steer module characteristics of a swerve drivetrain.static classSysId-specific SwerveRequest to characterize the translational characteristics of a swerve drivetrain. -
Method Summary
Modifier and TypeMethodDescriptionapply(LegacySwerveRequest.LegacySwerveControlRequestParameters parameters, LegacySwerveModule... modulesToApply) Applies this swerve request to the given modules.
-
Method Details
-
apply
StatusCode apply(LegacySwerveRequest.LegacySwerveControlRequestParameters parameters, LegacySwerveModule... modulesToApply) Applies this swerve request to the given modules. This is typically called by the SwerveDrivetrain.- Parameters:
parameters- Parameters the control request needs to calculate the module statemodulesToApply- Modules to which the control request is applied- Returns:
- Status code of sending the request
-