PIDSwerveModule

abstract class PIDSwerveModule(val pidCoefficients: PIDCoefficients) : SwerveModule

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

Constructors

Link copied to clipboard
constructor(pidCoefficients: PIDCoefficients)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
abstract fun setCorrectedDrivePower(power: Double)

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

Link copied to clipboard
abstract fun setCorrectedWheelVelocity(velocity: Double, acceleration: Double)

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

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 setModulePower(power: Double)

Sets the power of the actuator which rotates the module.

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.