AbstractTankDrive

abstract class AbstractTankDrive(val trackWidth: Double, val externalHeadingSensor: AngleSensor? = null) : Drive

This class provides the basic functionality of a tank/differential drive using TankKinematics.

Parameters

trackWidth

Lateral distance between pairs of wheels on different sides of the robot.

Constructors

Link copied to clipboard
constructor(trackWidth: Double, externalHeadingSensor: AngleSensor? = null)

Properties

Link copied to clipboard
protected val externalHeadingSensor: AngleSensor? = null
Link copied to clipboard
open override var localizer: Localizer

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
protected val trackWidth: Double

Functions

Link copied to clipboard
abstract fun getWheelPositions(): List<Double>

Returns the positions of the wheels in linear distance units. Positions should exactly match the ordering in setMotorPowers.

Link copied to clipboard

Returns the velocities of the wheels in linear distance units. Positions should exactly match the ordering in setMotorPowers.

Link copied to clipboard
open override fun setDrivePower(drivePower: Pose2d)

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

Link copied to clipboard
open override 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
abstract fun setMotorPowers(left: Double, right: Double)

Sets the following motor powers (normalized voltages). All arguments are on the interval [-1.0, 1.0].

Link copied to clipboard
abstract fun setWheelVelocities(velocities: List<Double>, accelerations: List<Double>)

Sets the wheel velocities (and accelerations) of each motor, in distance units per second. Velocities and accelerations match the ordering in setMotorPowers.