PIDDiffSwerveModule

abstract class PIDDiffSwerveModule(pidCoefficients: PIDCoefficients, var feedforward: Feedforward) : SwerveModule

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

Constructors

Link copied to clipboard
constructor(pidCoefficients: PIDCoefficients, feedforward: Feedforward)

Properties

Link copied to clipboard
protected var feedforward: Feedforward
Link copied to clipboard

Functions

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

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

Link copied to clipboard
abstract fun getGearRotations(): List<Angle>

Returns the total rotation of the gears. Angles should exactly match the ordering in setMotorPowers.

Link copied to clipboard

Returns the velocities of the gears in linear distance units. Velocities should exactly match the ordering in setMotorPowers.

Link copied to clipboard
open override fun getModuleOrientation(): Angle
Link copied to clipboard
open override fun getWheelPosition(): Double

Returns the positions of the wheel in linear distance units.

Link copied to clipboard
open override fun getWheelVelocity(): Double?

Returns the velocity of the wheel in linear distance units.

Link copied to clipboard
override fun setDrivePower(power: Double)

Sets the wheel motor power (normalized voltage) on the interval [-1.0, 1.0].

Link copied to clipboard
override fun setModuleOrientation(angle: Angle)
Link copied to clipboard
abstract fun setMotorPowers(top: Double, bottom: Double)

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

Link copied to clipboard
override fun setWheelVelocity(velocity: Double, acceleration: Double)

Sets the wheel velocity (and acceleration) of the wheel motor.

Link copied to clipboard
open override fun update()

Updates the module.