Class PDFGains
- java.lang.Object
-
- io.github.frc5024.common_drive.controller.PDFGains
-
@Deprecated(since="October 2020", forRemoval=true) public class PDFGains extends java.lang.Object
Deprecated, for removal: This API element is subject to removal in a future version.Gains for a PDF controller
-
-
Field Summary
Fields Modifier and Type Field Description double
kD
Deprecated, for removal: This API element is subject to removal in a future version.double
kFF
Deprecated, for removal: This API element is subject to removal in a future version.double
kP
Deprecated, for removal: This API element is subject to removal in a future version.
-
Constructor Summary
Constructors Constructor Description PDFGains(double kP, double kD)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PDF controllerPDFGains(double kP, double kD, double kFF)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PDF controller
-
-
-
Field Detail
-
kP
public double kP
Deprecated, for removal: This API element is subject to removal in a future version.
-
kD
public double kD
Deprecated, for removal: This API element is subject to removal in a future version.
-
kFF
public double kFF
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Constructor Detail
-
PDFGains
public PDFGains(double kP, double kD)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PDF controller- Parameters:
kP
- P gainkD
- D gain
-
PDFGains
public PDFGains(double kP, double kD, double kFF)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PDF controller- Parameters:
kP
- P gainkD
- D gainkFF
- FeedForward value
-
-