Files
YAGSL/swervelib/parser/json/PIDFPropertiesJson.java

20 lines
402 B
Java
Raw Permalink Normal View History

2023-02-13 17:21:24 -06:00
package swervelib.parser.json;
2023-02-13 14:37:05 -06:00
2023-02-13 17:21:24 -06:00
import swervelib.parser.PIDFConfig;
2023-02-13 14:37:05 -06:00
/**
2023-02-13 17:21:24 -06:00
* {@link swervelib.SwerveModule} PID with Feedforward for the drive motor and angle motor.
2023-02-13 14:37:05 -06:00
*/
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;
}