Package-level declarations

Abstract definitions for various drivetrains

Types

Link copied to clipboard
public abstract class AbstractMecanumDrive extends Drive

This class provides the basic functionality of a mecanum drive using MecanumKinematics.

Link copied to clipboard
public abstract class AbstractSwerveDrive extends Drive

This class provides the basic functionality of a swerve drive using SwerveKinematics.

Link copied to clipboard
public abstract class AbstractTankDrive extends Drive

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

Link copied to clipboard
public 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.

Link copied to clipboard
public final class DriveSignal

Signal indicating the commanded kinematic state of a drive.

Link copied to clipboard
public abstract class PIDDiffSwerveModule extends SwerveModule

A basic SwerveModule implementation using a PIDController to control a differential swerve module.

Link copied to clipboard
public abstract class PIDSwerveModule extends SwerveModule

A basic SwerveModule implementation using a PIDController to hold module position.

Link copied to clipboard
public abstract class SwerveModule