TwoTrackingWheelLocalizer

abstract class TwoTrackingWheelLocalizer(val wheelPoses: List<Pose2d>) : Localizer

Localizer based on two unpowered tracking omni wheels and an orientation sensor.

Parameters

wheelPoses

wheel poses relative to the center of the robot (positive X points forward on the robot)

Constructors

Link copied to clipboard
constructor(wheelPoses: List<Pose2d>)

Properties

Link copied to clipboard
open override var poseEstimate: Pose2d

Current robot pose estimate.

Link copied to clipboard
open override var poseVelocity: Pose2d?

Current robot pose velocity (optional)

Link copied to clipboard

Functions

Link copied to clipboard
abstract fun getHeading(): Angle

Returns the heading of the robot (usually from a gyroscope or IMU).

Link copied to clipboard

Returns the heading of the robot (usually from a gyroscope or IMU).

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

Returns the positions of the tracking wheels in the desired distance units (not encoder counts!)

Link copied to clipboard

Returns the velocities of the tracking wheels in the desired distance units (not encoder counts!)

Link copied to clipboard
open override fun update()

Completes a single localization update.