Class PIFGains
- java.lang.Object
-
- io.github.frc5024.common_drive.controller.PIFGains
-
@Deprecated(since="October 2020", forRemoval=true) public class PIFGains extends java.lang.Object
Deprecated, for removal: This API element is subject to removal in a future version.Gains for a PIF controller
-
-
Field Summary
Fields Modifier and Type Field Description double
kFF
Deprecated, for removal: This API element is subject to removal in a future version.double
kI
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 PIFGains(double kP, double kI)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PIF controllerPIFGains(double kP, double kI, double kFF)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PIF controller
-
-
-
Field Detail
-
kP
public double kP
Deprecated, for removal: This API element is subject to removal in a future version.
-
kI
public double kI
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
-
PIFGains
public PIFGains(double kP, double kI)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PIF controller- Parameters:
kP
- P gainkI
- I gain
-
PIFGains
public PIFGains(double kP, double kI, double kFF)
Deprecated, for removal: This API element is subject to removal in a future version.Create gains for a PIF controller- Parameters:
kP
- P gainkI
- I gainkFF
- FeedForward value
-
-