PIDFController
open class PIDFController @JvmOverloads constructor(var kP: Double, var kI: Double, var kD: Double, kF: Feedforward = StaticFeedforward(0.0), var setPointTolerance: Double = 10.0) : Controller
PID controller with various feedforward components.
Author
Originally from Roadrunner 0.5, ported to Kotlin & NextFTC by Zach.Waffle
Inheritors
Constructors
Link copied to clipboard
constructor(kP: Double, kI: Double, kD: Double, kF: Feedforward = StaticFeedforward(0.0), setPointTolerance: Double = 10.0)