mirror of
https://github.com/BroncBotz3481/YAGSL
synced 2026-06-19 06:21:40 +00:00
20 lines
402 B
Java
20 lines
402 B
Java
package swervelib.parser.json;
|
|
|
|
import swervelib.parser.PIDFConfig;
|
|
|
|
/**
|
|
* {@link swervelib.SwerveModule} PID with Feedforward for the drive motor and angle motor.
|
|
*/
|
|
public class PIDFPropertiesJson
|
|
{
|
|
|
|
/**
|
|
* The PIDF with Integral Zone used for the drive motor.
|
|
*/
|
|
public PIDFConfig drive;
|
|
/**
|
|
* The PIDF with Integral Zone used for the angle motor.
|
|
*/
|
|
public PIDFConfig angle;
|
|
}
|