mirror of
https://github.com/BroncBotz3481/YAGSL
synced 2026-06-22 06:41:39 +00:00
Updated swervelib
This commit is contained in:
17
swervelib/parser/deserializer/PIDFRange.java
Normal file
17
swervelib/parser/deserializer/PIDFRange.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package frc.robot.subsystems.swervedrive2.swervelib.parser.deserializer;
|
||||
|
||||
/**
|
||||
* Class to hold the minimum and maximum input or output of the PIDF.
|
||||
*/
|
||||
public class PIDFRange
|
||||
{
|
||||
|
||||
/**
|
||||
* Minimum value.
|
||||
*/
|
||||
public double min = -1;
|
||||
/**
|
||||
* Maximum value.
|
||||
*/
|
||||
public double max = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user