Drive

abstract class Drive

Abstraction for generic robot drive motion and localization. Robot poses are specified in a coordinate system with positive x pointing forward, positive y pointing left, and positive heading measured counter-clockwise from the x-axis.

Inheritors

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
abstract var localizer: Localizer

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard

The robot's current pose estimate.

Link copied to clipboard

Current robot pose velocity (optional)

Functions

Link copied to clipboard
abstract fun setDrivePower(drivePower: Pose2d)

Sets the current commanded drive state of the robot. Feedforward is not applied to drivePower.

Link copied to clipboard
abstract fun setDriveSignal(driveSignal: DriveSignal)

Sets the current commanded drive state of the robot. Feedforward is applied to driveSignal before it reaches the motors.

Link copied to clipboard
fun setWeightedDrivePower(drivePower: Pose2d, xWeight: Double = 1.0, yWeight: Double = 1.0, headingWeight: Double = 1.0)

Scales drivePower so that the commanded powers are all within [-1.0, 1.0].

Link copied to clipboard

Updates poseEstimate with the most recent positional change.