Package-level declarations

Algorithms for robot localization

Types

Link copied to clipboard
abstract class AngleSensor

A class describing an abstract angle measuring device. This includes the IMU in the Control/Expansion Hub as well as any other similar sensors.

Link copied to clipboard
Link copied to clipboard
class HeadingLocalizer(headingSensor: AngleSensor, deadReckoningLocalizer: DeadReckoningLocalizer) : Localizer

A localizer that uses a DeadReckoningLocalizer with an added heading sensor to increase accuracy.

Link copied to clipboard
interface Localizer

Generic interface for estimating robot pose over time.

Link copied to clipboard
class MecanumLocalizer @JvmOverloads constructor(val getWheelPositions: () -> List<Double>, val getWheelVelocities: () -> List<Double>? = { null }, trackWidth: Double, wheelBase: Double = trackWidth, lateralMultiplier: Double = 1.0) : DeadReckoningLocalizer

Default localizer for mecanum drives based on the drive encoders.

Link copied to clipboard
class SwerveLocalizer(val modules: List<SwerveModule>, modulePositions: List<Vector2d>) : DeadReckoningLocalizer

Default localizer for swerve drives based on the drive encoder positions and module orientations.

Link copied to clipboard
class TankLocalizer @JvmOverloads constructor(val getWheelPositions: () -> List<Double>, val getWheelVelocities: () -> List<Double>? = { null }, trackWidth: Double) : DeadReckoningLocalizer

Default localizer for tank drives based on the drive encoders.

Link copied to clipboard
abstract class ThreeTrackingWheelLocalizer(val wheelPoses: List<Pose2d>) : Localizer

Localizer based on three unpowered tracking omni wheels.

Link copied to clipboard
abstract class TwoTrackingWheelLocalizer(val wheelPoses: List<Pose2d>) : Localizer

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