From 384c6c388dfd2ea5f80918d728cad833c0223ec6 Mon Sep 17 00:00:00 2001
From: William Yuan <66759156+Wi11iamYuan@users.noreply.github.com>
Date: Fri, 4 Oct 2024 16:18:56 -0700
Subject: [PATCH] prepare for release
new narrbot, camera class, other misc clean up
---
3128-Common.json | 4 +-
3128-common.json | 4 +-
doc/allclasses-index.html | 122 +++---
doc/common/core/misc/NAR_Robot.html | 14 +-
doc/common/core/misc/NAR_Robot2.html | 323 ----------------
doc/common/core/misc/package-summary.html | 6 +-
doc/common/core/misc/package-tree.html | 1 -
doc/common/core/swerve/SwerveBase.html | 1 -
doc/common/core/swerve/package-summary.html | 4 +-
doc/common/hardware/camera/Camera.html | 345 ++++++++++++-----
.../motorcontroller/NAR_TalonSRX.html | 4 +-
doc/common/utility/sysid/CmdSysId.html | 45 ++-
doc/constant-values.html | 11 -
doc/index-all.html | 120 +++---
doc/index.html | 2 +-
doc/legal/ADDITIONAL_LICENSE_INFO | 38 +-
doc/legal/ASSEMBLY_EXCEPTION | 28 +-
doc/legal/LICENSE | 348 +-----------------
doc/member-search-index.js | 2 +-
doc/overview-tree.html | 1 -
doc/type-search-index.js | 2 +-
gradle.properties | 2 +-
src/main/resources/overview.html | 2 +-
23 files changed, 429 insertions(+), 1000 deletions(-)
delete mode 100644 doc/common/core/misc/NAR_Robot2.html
diff --git a/3128-Common.json b/3128-Common.json
index 10f7bc8..9574b3c 100644
--- a/3128-Common.json
+++ b/3128-Common.json
@@ -1,6 +1,6 @@
{
"name": "3128-common",
- "version": "1.8.2",
+ "version": "1.8.3",
"uuid": "ae3fa5a2-78d9-47e8-921a-dba45b889445",
"frcYear": "2024",
"mavenUrls": [
@@ -12,7 +12,7 @@
{
"groupId": "com.github.Team3128",
"artifactId": "3128-common",
- "version": "1.8.2"
+ "version": "1.8.3"
}
],
"jniDependencies": [],
diff --git a/3128-common.json b/3128-common.json
index 10f7bc8..9574b3c 100644
--- a/3128-common.json
+++ b/3128-common.json
@@ -1,6 +1,6 @@
{
"name": "3128-common",
- "version": "1.8.2",
+ "version": "1.8.3",
"uuid": "ae3fa5a2-78d9-47e8-921a-dba45b889445",
"frcYear": "2024",
"mavenUrls": [
@@ -12,7 +12,7 @@
{
"groupId": "com.github.Team3128",
"artifactId": "3128-common",
- "version": "1.8.2"
+ "version": "1.8.3"
}
],
"jniDependencies": [],
diff --git a/doc/allclasses-index.html b/doc/allclasses-index.html
index 992bc82..6a55493 100644
--- a/doc/allclasses-index.html
+++ b/doc/allclasses-index.html
@@ -169,111 +169,105 @@
All Classes and Interfaces<
-
Team 3128's Robot class that includes advantageScope and addPeriodic
+
Team 3128's Custom Robot class
-
+
-
TimedRobot implements the IterativeRobotBase robot program framework.
-
-
-
Team 3128's Wrapper class for Shuffleboard
-
-
-
-
+
+
+
+
Team 3128's streamlined WPI_TalonSRX
class.
-
-
+
+
Wrapper for the WPILib XboxController class.
-
-
+
+
Enum to represent buttons
-
-
-
-
+
+
+
+
Team 3128's WebSocketServer
class, used to log robot data and select autos
-
-
-
-
-
-
+
+
+
+
+
+
Stores PID and feedforward constants.
-
-
-
-
+
+
+
+
Team 3128's Pivot Template class.
-
-
-
-
+
+
+
+
Team 3128's class to take the derivative of a Polynomial Regression function.
-
-
+
+
The PolynomialRegression
class performs a polynomial regression on an set of N
data points (yi , xi ).
-
-
+
+
Team 3128's Shooter Template class.
-
-
-
-
-
+
+
+
+
+
+
+
-
To do fix this garbage
-
-
-
Team 3128's conversion class for Swerve
-
-
+
+
Team 3128's Swerve Module class
-
-
+
+
Swerve Module configuration class which is used to configure
SwerveModule
.
-
-
-
+
-
-
+
+
+
+
Team 3128's Tester utility class used to run system checks at competitions.
-
-
+
+
-
-
+
+
Collection of tests to be run for a system
-
-
+
+
Enum representing test states
-
-
-
-
+
+
+
+
Team 3128's streamlined ProfiledPIDController
class.
diff --git a/doc/common/core/misc/NAR_Robot.html b/doc/common/core/misc/NAR_Robot.html
index 55d85ec..a0d4b4c 100644
--- a/doc/common/core/misc/NAR_Robot.html
+++ b/doc/common/core/misc/NAR_Robot.html
@@ -85,7 +85,19 @@
Class NAR_Robot
public class NAR_Robot
extends edu.wpi.first.wpilibj.IterativeRobotBase
-
Team 3128's Robot class that includes advantageScope and addPeriodic
+
Team 3128's Custom Robot class
+
+
Includes AdvantageKit and addPeriodic()
+
+
NOTES:
+
+ TimedRobot implements the IterativeRobotBase robot program framework.
+ The TimedRobot class is intended to be subclassed by a user creating a robot program.
+ Periodic() functions from the base class are called on an interval by a Notifier instance.
+ AdvantageKit logging is disabled by default.
+
+
+
----------------------------------------------
Since:
2023 Charged Up
diff --git a/doc/common/core/misc/NAR_Robot2.html b/doc/common/core/misc/NAR_Robot2.html
deleted file mode 100644
index 9aee473..0000000
--- a/doc/common/core/misc/NAR_Robot2.html
+++ /dev/null
@@ -1,323 +0,0 @@
-
-
-
-
-NAR_Robot2 (3128-common)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-
-
-java.lang.Object
-
edu.wpi.first.wpilibj.RobotBase
-
edu.wpi.first.wpilibj.IterativeRobotBase
-
common.core.misc.NAR_Robot2
-
-
-
-
-
-All Implemented Interfaces:
-AutoCloseable
-
-
-public class NAR_Robot2
-extends edu.wpi.first.wpilibj.IterativeRobotBase
-TimedRobot implements the IterativeRobotBase robot program framework.
-
-
The TimedRobot class is intended to be subclassed by a user creating a robot program.
-
-
periodic() functions from the base class are called on an interval by a Notifier instance.
-
-
-
-
-
-
-Field Summary
-Fields
-
-
-
-
-
static final double
-
-
-
-
-
-
-
-
-Constructor Summary
-Constructors
-
-
-
-
-
protected
-
-
-
Constructor for TimedRobot.
-
-
protected
-
-
-
Constructor for TimedRobot.
-
-
-
-
-
-
-
-Method Summary
-
-
All Methods Instance Methods Concrete Methods
-
-
-
-
-
-
final void
-
-
-
Add a callback to run at a specific period.
-
-
final void
-
-
-
Add a callback to run at a specific period with a starting time offset.
-
-
void
-
-
-
void
-
-
-
Ends the main loop in startCompetition().
-
-
void
-
-
-
Provide an alternate "main loop" via startCompetition().
-
-
-
-
-
-
Methods inherited from class edu.wpi.first.wpilibj.IterativeRobotBase
-autonomousExit, autonomousInit, autonomousPeriodic, disabledExit, disabledInit, disabledPeriodic, driverStationConnected, enableLiveWindowInTest, getPeriod, isLiveWindowEnabledInTest, loopFunc, robotInit, robotPeriodic, setNetworkTablesFlushEnabled, simulationInit, simulationPeriodic, teleopExit, teleopInit, teleopPeriodic, testExit, testInit, testPeriodic
-
-
Methods inherited from class edu.wpi.first.wpilibj.RobotBase
-getMainThreadId, getRuntimeType, isAutonomous, isAutonomousEnabled, isDisabled, isEnabled, isReal, isSimulation, isTeleop, isTeleopEnabled, isTest, isTestEnabled, startRobot, suppressExitWarning
-
-
Methods inherited from class java.lang.Object
-
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
-
-
-
-
-
-
-
-
-
-Field Details
-
-
-
-kDefaultPeriod
-public static final double kDefaultPeriod
-Default loop period.
-
-See Also:
-
-
-
-
-
-
-
-
-
-
-
-
-Constructor Details
-
-
-
-NAR_Robot2
-protected NAR_Robot2 ()
-Constructor for TimedRobot.
-
-
-
-
-NAR_Robot2
-protected NAR_Robot2 (double period)
-Constructor for TimedRobot.
-
-Parameters:
-period
- Period in seconds.
-
-
-
-
-
-
-
-
-
-Method Details
-
-
-
-close
-public void close ()
-
-Specified by:
-close
in interface AutoCloseable
-Overrides:
-close
in class edu.wpi.first.wpilibj.RobotBase
-
-
-
-
-
-startCompetition
-public void startCompetition ()
-Provide an alternate "main loop" via startCompetition().
-
-Specified by:
-startCompetition
in class edu.wpi.first.wpilibj.IterativeRobotBase
-
-
-
-
-
-endCompetition
-public void endCompetition ()
-Ends the main loop in startCompetition().
-
-Specified by:
-endCompetition
in class edu.wpi.first.wpilibj.RobotBase
-
-
-
-
-
-addPeriodic
-public final void addPeriodic (Runnable callback,
- double periodSeconds)
-Add a callback to run at a specific period.
-
-
This is scheduled on TimedRobot's Notifier, so TimedRobot and the callback run
- synchronously. Interactions between them are thread-safe.
-
-Parameters:
-callback
- The callback to run.
-periodSeconds
- The period at which to run the callback in seconds.
-
-
-
-
-
-addPeriodic
-public final void addPeriodic (Runnable callback,
- double periodSeconds,
- double offsetSeconds)
-Add a callback to run at a specific period with a starting time offset.
-
-
This is scheduled on TimedRobot's Notifier, so TimedRobot and the callback run
- synchronously. Interactions between them are thread-safe.
-
-Parameters:
-callback
- The callback to run.
-periodSeconds
- The period at which to run the callback in seconds.
-offsetSeconds
- The offset from the common starting time in seconds. This is useful for
- scheduling a callback in a different timeslot relative to TimedRobot.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/doc/common/core/misc/package-summary.html b/doc/common/core/misc/package-summary.html
index 65a6770..23f4a9b 100644
--- a/doc/common/core/misc/package-summary.html
+++ b/doc/common/core/misc/package-summary.html
@@ -74,14 +74,10 @@ Package common.core.misc
-
Team 3128's Robot class that includes advantageScope and addPeriodic
+
Team 3128's Custom Robot class
-
-
-
TimedRobot implements the IterativeRobotBase robot program framework.
-
diff --git a/doc/common/core/misc/package-tree.html b/doc/common/core/misc/package-tree.html
index 1aa14f0..3313c07 100644
--- a/doc/common/core/misc/package-tree.html
+++ b/doc/common/core/misc/package-tree.html
@@ -63,7 +63,6 @@
Class Hierarchy
edu.wpi.first.wpilibj.IterativeRobotBase
diff --git a/doc/common/core/swerve/SwerveBase.html b/doc/common/core/swerve/SwerveBase.html
index c51e187..92ab62c 100644
--- a/doc/common/core/swerve/SwerveBase.html
+++ b/doc/common/core/swerve/SwerveBase.html
@@ -83,7 +83,6 @@
Class SwerveBase
public abstract class SwerveBase
extends edu.wpi.first.wpilibj2.command.SubsystemBase
-
To do fix this garbage
diff --git a/doc/common/core/swerve/package-summary.html b/doc/common/core/swerve/package-summary.html
index e668085..556e362 100644
--- a/doc/common/core/swerve/package-summary.html
+++ b/doc/common/core/swerve/package-summary.html
@@ -70,9 +70,7 @@ Package common.core.swerve<
-
-
To do fix this garbage
-
+
Team 3128's conversion class for Swerve
diff --git a/doc/common/hardware/camera/Camera.html b/doc/common/hardware/camera/Camera.html
index 923e198..3874aa6 100644
--- a/doc/common/hardware/camera/Camera.html
+++ b/doc/common/hardware/camera/Camera.html
@@ -80,7 +80,7 @@
Class Camera
Team 3128's class to control the robot's cameras and vision processing.
Since:
-2022 Rapid React
+2024 Crescendo
@@ -94,14 +94,32 @@ Field Summary
-
-
+org.photonvision.PhotonCamera
+
-static double
-
+
+
+
+double
+
+
+edu.wpi.first.math.geometry.Pose2d
+
+
+boolean
+
+
+edu.wpi.first.math.geometry.Transform3d
+
-static int
-
+static double
+
+
+static int
+
+
+edu.wpi.first.math.geometry.Pose2d
+
static double
@@ -123,7 +141,9 @@ Constructor Summary
double yawOffset,
double pitchOffset,
double rollOffset)
-
+
+
Creates a Camera object
+
@@ -140,16 +160,9 @@
Method Summary
static void
-
-
static void
-
-
-
static void
-
configCameras (edu.wpi.first.apriltag.AprilTagFields aprilTagLayout,
- org.photonvision.PhotonPoseEstimator.PoseStrategy calc_strategy,
- BiConsumer <edu.wpi.first.math.geometry.Pose2d,Double > odometry,
- Supplier <edu.wpi.first.math.geometry.Pose2d> robotPose)
-
+
+
Blacklists tags from use
+
void
@@ -163,38 +176,68 @@
Method Summary
double
-
+
getDistance (org.photonvision.targeting.PhotonTrackedTarget target)
-
org.photonvision.targeting.PhotonPipelineResult
-
+
double
+
-
edu.wpi.first.math.geometry.Transform3d
-
-
-
void
-
+
edu.wpi.first.math.geometry.Pose2d
+
getGyroPose (org.photonvision.targeting.PhotonPipelineResult result)
+
+
Overrides the pose's rotation with the gyro angle
+
+
edu.wpi.first.math.geometry.Pose2d
+
+
+
Uses the gyro angle and target position to determine robot pose
+
+
Optional <edu.wpi.first.math.geometry.Pose2d>
+
getPose (org.photonvision.targeting.PhotonPipelineResult result)
+
+
Gets the latest camera updates
+
+
double
+
-
boolean
-
+
void
+
+
boolean
+
+
+
Returns if an estimate is within a valid distance from the robot pose
+
+
boolean
+
isValidTarget (org.photonvision.targeting.PhotonTrackedTarget target)
+
+
Returns true if the target is within the distance and ambiguity thresholds and is not blacklisted
+
static boolean
static void
-
-
+
+
+
Sets the necessary resources for cameras to function.
+
static void
-
-
+
setThresholds (double distanceThreshold,
+ double ambiguityThreshold)
+
+
Sets the necessary thresholds for the cameras to use
+
void
-
-
-
void
-
-
-
static void
-
-
+
+
+
Gets the latest camera updates
+
+
static void
+
+
@@ -213,9 +256,15 @@
Methods inherited from cl
Field Details
-
-updateCounter
-public static int updateCounter
+
+camera
+public org.photonvision.PhotonCamera camera
+
+
+
+
@@ -231,9 +280,39 @@ overrideThreshold
-
-cameras
-
+
+updateCounter
+public static int updateCounter
+
+
+
+
+estimatedPose
+public edu.wpi.first.math.geometry.Pose2d estimatedPose
+
+
+
+
+isDisabled
+public boolean isDisabled
+
+
+
+
+offset
+public edu.wpi.first.math.geometry.Transform3d offset
+
+
+
+
+distance
+public double distance
+
+
+
+
+updatedPose
+public edu.wpi.first.math.geometry.Pose2d updatedPose
@@ -253,6 +332,7 @@ Camera
double yawOffset,
double pitchOffset,
double rollOffset)
+
Creates a Camera object
@@ -264,102 +344,153 @@
Camera
Method Details
-
-getDistanceGround
-public double getDistanceGround ()
-
-
-
-
-configCameras
-public static void configCameras (edu.wpi.first.apriltag.AprilTagFields aprilTagLayout,
- org.photonvision.PhotonPoseEstimator.PoseStrategy calc_strategy,
+
+setResources
+public static void setResources (DoubleSupplier gyro,
BiConsumer <edu.wpi.first.math.geometry.Pose2d,Double > odometry,
+ edu.wpi.first.apriltag.AprilTagFieldLayout aprilTags,
Supplier <edu.wpi.first.math.geometry.Pose2d> robotPose)
+Sets the necessary resources for cameras to function.
+
+Parameters:
+gyro
- Feeds the angle of the robot.
+odometry
- Feeds the robot odometry object for vision estimates to update.
+aprilTags
- Sets the AprilTag positions on the field.
+robotPose
- Supplies the robot's current pose.
+
-
-
-
-seesTag
-public static boolean seesTag ()
+
+getPose
+public Optional <edu.wpi.first.math.geometry.Pose2d> getPose (org.photonvision.targeting.PhotonPipelineResult result)
+Gets the latest camera updates
+
+Parameters:
+result
- Latest result from the camera
+Returns:
+The estimated robot pose
+
-
-updateAll
-public static void updateAll ()
+
+getGyroStablilization
+public edu.wpi.first.math.geometry.Pose2d getGyroStablilization (Optional <edu.wpi.first.math.geometry.Pose3d> targetPosition,
+ org.photonvision.targeting.PhotonTrackedTarget bestTarget)
+Uses the gyro angle and target position to determine robot pose
+
+Parameters:
+targetPosition
- The Pose3d of the target
+bestTarget
- Lowest ambiguity target
+Returns:
+The estimated Pose2d of the robot
+
-
-enableAll
-public static void enableAll ()
+
+isGoodEstimate
+public boolean isGoodEstimate (edu.wpi.first.math.geometry.Pose2d pose)
+Returns if an estimate is within a valid distance from the robot pose
+
+Parameters:
+pose
- Estimated pose
+Returns:
+If the estimated pose is valid
+
-
-disableAll
-public static void disableAll ()
+
-
-setAmbiguityThreshold
-public static void setAmbiguityThreshold (double ambiguityThreshold)
+
+isValidTarget
+public boolean isValidTarget (org.photonvision.targeting.PhotonTrackedTarget target)
+Returns true if the target is within the distance and ambiguity thresholds and is not blacklisted
+
+Parameters:
+target
-
+Returns:
+If the target is valid
+
-
-setCamDistanceThreshold
-public void setCamDistanceThreshold (double distThreshold)
+
+getGyroPose
+public edu.wpi.first.math.geometry.Pose2d getGyroPose (org.photonvision.targeting.PhotonPipelineResult result)
+Overrides the pose's rotation with the gyro angle
+
+Parameters:
+result
-
+Returns:
+
-
-setAllDistanceThreshold
-public static void setAllDistanceThreshold (double distThreshold)
+
+getDistance
+public double getDistance (org.photonvision.targeting.PhotonTrackedTarget target)
-
-update
-public void update ()
+
+getPoseAmbiguity
+public double getPoseAmbiguity (org.photonvision.targeting.PhotonTrackedTarget target)
-
-isGoodEstimate
-public boolean isGoodEstimate (edu.wpi.first.math.geometry.Pose2d pose)
+
+getGyroAngle
+public double getGyroAngle ()
-
-initShuffleboard
-public void initShuffleboard ()
+
+updateAll
+public static void updateAll ()
-
-getLatestResult
-public org.photonvision.targeting.PhotonPipelineResult getLatestResult ()
+
+seesTag
+public static boolean seesTag ()
-
-getOffset
-public edu.wpi.first.math.geometry.Transform3d getOffset ()
+
+enable
+public void enable ()
@@ -369,9 +500,21 @@ disable
-
-enable
-public void enable ()
+
+enableAll
+public static void enableAll ()
+
+
+
+
+disableAll
+public static void disableAll ()
+
+
+
+
+initShuffleboard
+public void initShuffleboard ()
diff --git a/doc/common/hardware/motorcontroller/NAR_TalonSRX.html b/doc/common/hardware/motorcontroller/NAR_TalonSRX.html
index acf83d3..28b67cb 100644
--- a/doc/common/hardware/motorcontroller/NAR_TalonSRX.html
+++ b/doc/common/hardware/motorcontroller/NAR_TalonSRX.html
@@ -225,7 +225,7 @@ Method Summary
void
-
We just burn out our 775's *shrug* and I can't be bothered to figure out a good way to do this with CTRE
+
Still burn our motors nevertheless
void
@@ -474,7 +474,7 @@ enableVoltageCompensation
setCurrentLimit
public void setCurrentLimit (int limit)
-We just burn out our 775's *shrug* and I can't be bothered to figure out a good way to do this with CTRE
+Still burn our motors nevertheless
Specified by:
setCurrentLimit
in class NAR_Motor
diff --git a/doc/common/utility/sysid/CmdSysId.html b/doc/common/utility/sysid/CmdSysId.html
index 35fa1f0..15dc060 100644
--- a/doc/common/utility/sysid/CmdSysId.html
+++ b/doc/common/utility/sysid/CmdSysId.html
@@ -117,18 +117,24 @@ Constructor Summary
-
CmdSysId (String name,
+CmdSysId (String name,
Consumer <Double > voltageConsumer,
Supplier <Double > velocitySupplier,
- double startDelaySecs,
- double rampRateVoltsPerSec,
+ Supplier <Double > positionSupplier,
+ double targetPosition,
+ boolean goingForward,
edu.wpi.first.wpilibj2.command.Subsystem... subsystems)
Creates a new command to identify feed forward constants of the subsystem.
-CmdSysId (String name,
+CmdSysId (String name,
Consumer <Double > voltageConsumer,
Supplier <Double > velocitySupplier,
+ Supplier <Double > positionSupplier,
+ double startDelaySecs,
+ double rampRateVoltsPerSec,
+ double targetPosition,
+ boolean goingForward,
edu.wpi.first.wpilibj2.command.Subsystem... subsystems)
Creates a new command to identify feed forward constants of the subsystem.
@@ -156,12 +162,15 @@
Method Summary
void
+
boolean
+
+
Methods inherited from class edu.wpi.first.wpilibj2.command.Command
-addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineWith, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, initSendable, isFinished, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, runsWhenDisabled, schedule, setName, setSubsystem, unless, until, withInterruptBehavior, withName, withTimeout
+
addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineWith, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, initSendable, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, runsWhenDisabled, schedule, setName, setSubsystem, unless, until, withInterruptBehavior, withName, withTimeout
Methods inherited from class java.lang.Object
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
@@ -177,13 +186,16 @@ Methods inherited from cl
Constructor Details
-
+
CmdSysId
public CmdSysId (String name,
Consumer <Double > voltageConsumer,
Supplier <Double > velocitySupplier,
+ Supplier <Double > positionSupplier,
double startDelaySecs,
double rampRateVoltsPerSec,
+ double targetPosition,
+ boolean goingForward,
edu.wpi.first.wpilibj2.command.Subsystem... subsystems)
Creates a new command to identify feed forward constants of the subsystem.
@@ -191,18 +203,24 @@ CmdSysId
name
- Name of the test.
voltageConsumer
- Motors of the subsystem.
velocitySupplier
- Velocity of the subsystem.
+positionSupplier
- Position of the subsystem.
startDelaySecs
- Delay before the command starts.
rampRateVoltsPerSec
- Rate at which voltage increases.
+targetPosition
- Target position to reach.
+goingForward
- Direction to move in.
subsystems
- Subsystems used.
-
+
CmdSysId
Creates a new command to identify feed forward constants of the subsystem.
@@ -210,6 +228,9 @@ CmdSysId
name
- Name of the test.
voltageConsumer
- Motors of the subsystem.
velocitySupplier
- Velocity of the subsystem.
+positionSupplier
- Position of the subsystem.
+targetPosition
- Target position to reach.
+goingForward
- Direction to move in.
subsystems
- Subsystems used.
@@ -252,6 +273,16 @@ end
+
+
+isFinished
+public boolean isFinished ()
+
+Overrides:
+isFinished
in class edu.wpi.first.wpilibj2.command.Command
+
+
+
diff --git a/doc/constant-values.html b/doc/constant-values.html
index 219f235..e303513 100644
--- a/doc/constant-values.html
+++ b/doc/constant-values.html
@@ -70,17 +70,6 @@ common.core.*
0.02
-
-
-
-
-
-
-
public static final double
-
-
0.02
-
-
diff --git a/doc/index-all.html b/doc/index-all.html
index 55999c3..70a90b8 100644
--- a/doc/index-all.html
+++ b/doc/index-all.html
@@ -105,7 +105,9 @@ A
Displays an updating value in Shuffleboard
addIgnoredTags(int...) - Static method in class common.hardware.camera.Camera
-
+
+Blacklists tags from use
+
addInit(String, Object) - Method in class common.utility.narwhaldashboard.NarwhalDashboard
Sends an object to the web server on intialize
@@ -130,18 +132,10 @@ A
Add a callback to run at a specific period.
- addPeriodic(Runnable, double) - Method in class common.core.misc.NAR_Robot2
-
-Add a callback to run at a specific period.
-
addPeriodic(Runnable, double, double) - Static method in class common.core.misc.NAR_Robot
Add a callback to run at a specific period with a starting time offset.
-addPeriodic(Runnable, double, double) - Method in class common.core.misc.NAR_Robot2
-
-Add a callback to run at a specific period with a starting time offset.
-
addReceiver(boolean, NAR_Robot.LoggingState) - Static method in class common.core.misc.NAR_Robot
Add a data receiver for Adv Kit logging to a USB drive.
@@ -154,8 +148,6 @@ A
Displays sendable values, like subsystems and command, works on all classes that extend sendable
- addTags(int...) - Static method in class common.hardware.camera.Camera
-
addTest(Tester.SystemsTest) - Method in class common.utility.tester.Tester.Test
Adds a System test to be run.
@@ -272,12 +264,16 @@ C
Returns the PID output of the controller.
+ camera - Variable in class common.hardware.camera.Camera
+
Camera - Class in common.hardware.camera
Team 3128's class to control the robot's cameras and vision processing.
Camera(String, double, double, double, double, double) - Constructor for class common.hardware.camera.Camera
-
+
+Creates a Camera object
+
cameraAngle - Variable in class common.hardware.limelight.Limelight
cameraHeight - Variable in class common.hardware.limelight.Limelight
@@ -304,8 +300,6 @@ C
close() - Method in class common.core.misc.NAR_Robot
-close() - Method in class common.core.misc.NAR_Robot2
-
close() - Method in class common.hardware.motorcontroller.NAR_CANSpark
Closes the spark.
@@ -324,11 +318,11 @@ C
Team 3128's command to identify feed forward constants.
- CmdSysId(String, Consumer<Double>, Supplier<Double>, double, double, Subsystem...) - Constructor for class common.utility.sysid.CmdSysId
+CmdSysId(String, Consumer<Double>, Supplier<Double>, Supplier<Double>, double, boolean, Subsystem...) - Constructor for class common.utility.sysid.CmdSysId
Creates a new command to identify feed forward constants of the subsystem.
-CmdSysId(String, Consumer<Double>, Supplier<Double>, Subsystem...) - Constructor for class common.utility.sysid.CmdSysId
+CmdSysId(String, Consumer<Double>, Supplier<Double>, Supplier<Double>, double, double, double, boolean, Subsystem...) - Constructor for class common.utility.sysid.CmdSysId
Creates a new command to identify feed forward constants of the subsystem.
@@ -374,8 +368,6 @@ C
Configures the motor settings
-configCameras(AprilTagFields, PhotonPoseEstimator.PoseStrategy, BiConsumer<Pose2d, Double>, Supplier<Pose2d>) - Static method in class common.hardware.camera.Camera
-
configMotor(NAR_Motor.MotorConfig) - Method in class common.hardware.motorcontroller.NAR_Motor
Configures all major motor settings.
@@ -492,6 +484,8 @@ D
DISCONNECTED - Enum constant in enum class common.utility.narwhaldashboard.NarwhalDashboard.State
+distance - Variable in class common.hardware.camera.Camera
+
distanceFactor - Variable in class common.hardware.motorcontroller.NAR_Motor.MotorConfig
drive(Translation2d, double, boolean) - Method in class common.core.swerve.SwerveBase
@@ -575,10 +569,8 @@ E
Ends the main loop in startCompetition().
-endCompetition() - Method in class common.core.misc.NAR_Robot2
-
-Ends the main loop in startCompetition().
-
+estimatedPose - Variable in class common.hardware.camera.Camera
+
evaluate(double) - Method in class common.utility.sysid.PolynomialDerivative
Returns a y-value by plugging in the x-value into the derivative function.
@@ -710,7 +702,7 @@ G
Get the Differential coefficient.
- getDistanceGround() - Method in class common.hardware.camera.Camera
+getDistance(PhotonTrackedTarget) - Method in class common.hardware.camera.Camera
getDouble(String, String) - Static method in class common.utility.shuffleboard.NAR_Shuffleboard
@@ -738,8 +730,18 @@ G
Gets the current field-relative velocity (x, y and omega) of the robot
+ getGyroAngle() - Method in class common.hardware.camera.Camera
+
+getGyroPose(PhotonPipelineResult) - Method in class common.hardware.camera.Camera
+
+Overrides the pose's rotation with the gyro angle
+
getGyroRotation2d() - Method in class common.core.swerve.SwerveBase
+getGyroStablilization(Optional<Pose3d>, PhotonTrackedTarget) - Method in class common.hardware.camera.Camera
+
+Uses the gyro angle and target position to determine robot pose
+
getHeading() - Method in class common.core.swerve.SwerveBase
getI() - Method in class common.core.controllers.ControllerBase
@@ -780,8 +782,6 @@ G
Returns the kV value calculated by the data.
-getLatestResult() - Method in class common.hardware.camera.Camera
-
getLEDMode() - Method in enum class common.hardware.limelight.LEDMode
getLeftPOVButton() - Method in class common.hardware.input.NAR_Joystick
@@ -834,8 +834,6 @@ G
getNumFailedConfigs() - Static method in class common.hardware.motorcontroller.NAR_TalonFX
-getOffset() - Method in class common.hardware.camera.Camera
-
getP() - Method in class common.core.controllers.ControllerBase
Get the Proportional coefficient.
@@ -850,6 +848,12 @@ G
getPose() - Method in class common.core.swerve.SwerveBase
+getPose(PhotonPipelineResult) - Method in class common.hardware.camera.Camera
+
+Gets the latest camera updates
+
+getPoseAmbiguity(PhotonTrackedTarget) - Method in class common.hardware.camera.Camera
+
getPosition() - Method in class common.hardware.motorcontroller.NAR_Motor
Returns the current motor position, default unit - rotations
@@ -1116,6 +1120,8 @@ I
Return whether the subsystem is in debug mode.
+ isDisabled - Variable in class common.hardware.camera.Camera
+
isEnabled() - Method in class common.core.subsystems.NAR_PIDSubsystem
Returns whether the controller is enabled.
@@ -1124,6 +1130,8 @@ I
isFinished() - Method in class common.core.subsystems.NAR_PIDSubsystem.SetpointTest
+isFinished() - Method in class common.utility.sysid.CmdSysId
+
isFinished() - Method in class common.utility.tester.CurrentTest
isFinished() - Method in class common.utility.tester.PlateauTest
@@ -1135,7 +1143,13 @@ I
isFinished() - Method in class common.utility.tester.ThresholdTest
isGoodEstimate(Pose2d) - Method in class common.hardware.camera.Camera
-
+
+Returns if an estimate is within a valid distance from the robot pose
+
+isValidTarget(PhotonTrackedTarget) - Method in class common.hardware.camera.Camera
+
+Returns true if the target is within the distance and ambiguity thresholds and is not blacklisted
+
K
@@ -1153,10 +1167,6 @@ K
kDefaultPeriod - Static variable in class common.core.misc.NAR_Robot
-kDefaultPeriod - Static variable in class common.core.misc.NAR_Robot2
-
-Default loop period.
-
kG - Variable in class common.core.controllers.ControllerBase
kG - Variable in class common.core.controllers.PIDFFConfig
@@ -1410,7 +1420,7 @@ N
NAR_Robot - Class in common.core.misc
-Team 3128's Robot class that includes advantageScope and addPeriodic
+Team 3128's Custom Robot class
NAR_Robot() - Constructor for class common.core.misc.NAR_Robot
@@ -1422,18 +1432,6 @@ N
NAR_Robot.LoggingState - Enum Class in common.core.misc
-NAR_Robot2 - Class in common.core.misc
-
-TimedRobot implements the IterativeRobotBase robot program framework.
-
-NAR_Robot2() - Constructor for class common.core.misc.NAR_Robot2
-
-Constructor for TimedRobot.
-
-NAR_Robot2(double) - Constructor for class common.core.misc.NAR_Robot2
-
-Constructor for TimedRobot.
-
NAR_Shuffleboard - Class in common.utility.shuffleboard
Team 3128's Wrapper class for Shuffleboard
@@ -1487,6 +1485,8 @@ O
OFF - Enum constant in enum class common.hardware.limelight.LEDMode
+offset - Variable in class common.hardware.camera.Camera
+
ON - Enum constant in enum class common.hardware.limelight.LEDMode
onClose(WebSocket, int, String, boolean) - Method in class common.utility.narwhaldashboard.NarwhalDashboard
@@ -1749,10 +1749,6 @@ S
Sets the motor state with feedforward
-setAllDistanceThreshold(double) - Static method in class common.hardware.camera.Camera
-
-setAmbiguityThreshold(double) - Static method in class common.hardware.camera.Camera
-
setBrakeMode() - Method in class common.hardware.motorcontroller.NAR_CANSpark
setBrakeMode() - Method in class common.hardware.motorcontroller.NAR_Motor
@@ -1769,8 +1765,6 @@ S
Sets the module's neutral mode
-setCamDistanceThreshold(double) - Method in class common.hardware.camera.Camera
-
setCoastMode() - Method in class common.hardware.motorcontroller.NAR_CANSpark
setCoastMode() - Method in class common.hardware.motorcontroller.NAR_Motor
@@ -1797,7 +1791,7 @@ S
setCurrentLimit(int) - Method in class common.hardware.motorcontroller.NAR_TalonSRX
-We just burn out our 775's *shrug* and I can't be bothered to figure out a good way to do this with CTRE
+Still burn our motors nevertheless
setD(double) - Method in class common.core.controllers.ControllerBase
@@ -1973,6 +1967,10 @@ S
Sets power to all motors.
+ setResources(DoubleSupplier, BiConsumer<Pose2d, Double>, AprilTagFieldLayout, Supplier<Pose2d>) - Static method in class common.hardware.camera.Camera
+
+Sets the necessary resources for cameras to function.
+
setRightXDeadband(double) - Method in class common.hardware.input.NAR_XboxController
Sets the horizontal deadband value for the right joystick.
@@ -2007,6 +2005,10 @@ S
setStreamMode(StreamMode) - Method in class common.hardware.limelight.Limelight
+setThresholds(double, double) - Static method in class common.hardware.camera.Camera
+
+Sets the necessary thresholds for the cameras to use
+
setThrottleBounds(double, double) - Method in class common.hardware.input.NAR_Joystick
Sets the throttle bounds for the joystick.
@@ -2111,10 +2113,6 @@ S
Provide an alternate "main loop" via startCompetition().
- startCompetition() - Method in class common.core.misc.NAR_Robot2
-
-Provide an alternate "main loop" via startCompetition().
-
startPID(double) - Method in class common.core.subsystems.NAR_PIDSubsystem
Sets the setpoint for the subsystem.
@@ -2150,9 +2148,7 @@ S
StreamMode - Enum Class in common.hardware.limelight
SwerveBase - Class in common.core.swerve
-
-To do fix this garbage
-
+
SwerveBase(SwerveDriveKinematics, Matrix<N3, N1>, Matrix<N3, N1>, SwerveModuleConfig...) - Constructor for class common.core.swerve.SwerveBase
SwerveConversions - Class in common.core.swerve
@@ -2281,7 +2277,9 @@ U
is a bug, but does not cause anything to crash.
update() - Method in class common.hardware.camera.Camera
-
+
+Gets the latest camera updates
+
update() - Static method in class common.utility.shuffleboard.NAR_Shuffleboard
Updates every widget
@@ -2290,6 +2288,8 @@ U
updateCounter - Static variable in class common.hardware.camera.Camera
+
updatedPose - Variable in class common.hardware.camera.Camera
+
updateIO(NAR_MotorIOAutoLogged) - Method in class common.hardware.motorcontroller.NAR_Motor
useOutput() - Method in class common.core.controllers.ControllerBase
diff --git a/doc/index.html b/doc/index.html
index 6b813a0..12d919e 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -51,7 +51,7 @@
3128-common
FRC Team 3128 Robot Control Program Utility Library
Provides utility classes and functions for FRC robot control programs.
-
Version 1.8.2 (September 23 2024)
+
Version 1.8.2 (October 4 2024)
Packages
diff --git a/doc/legal/ADDITIONAL_LICENSE_INFO b/doc/legal/ADDITIONAL_LICENSE_INFO
index ff700cd..b62cc3e 100644
--- a/doc/legal/ADDITIONAL_LICENSE_INFO
+++ b/doc/legal/ADDITIONAL_LICENSE_INFO
@@ -1,37 +1 @@
- ADDITIONAL INFORMATION ABOUT LICENSING
-
-Certain files distributed by Oracle America, Inc. and/or its affiliates are
-subject to the following clarification and special exception to the GPLv2,
-based on the GNU Project exception for its Classpath libraries, known as the
-GNU Classpath Exception.
-
-Note that Oracle includes multiple, independent programs in this software
-package. Some of those programs are provided under licenses deemed
-incompatible with the GPLv2 by the Free Software Foundation and others.
-For example, the package includes programs licensed under the Apache
-License, Version 2.0 and may include FreeType. Such programs are licensed
-to you under their original licenses.
-
-Oracle facilitates your further distribution of this package by adding the
-Classpath Exception to the necessary parts of its GPLv2 code, which permits
-you to use that code in combination with other independent modules not
-licensed under the GPLv2. However, note that this would not permit you to
-commingle code under an incompatible license with Oracle's GPLv2 licensed
-code by, for example, cutting and pasting such code into a file also
-containing Oracle's GPLv2 licensed code and then distributing the result.
-
-Additionally, if you were to remove the Classpath Exception from any of the
-files to which it applies and distribute the result, you would likely be
-required to license some or all of the other code in that distribution under
-the GPLv2 as well, and since the GPLv2 is incompatible with the license terms
-of some items included in the distribution by Oracle, removing the Classpath
-Exception could therefore effectively compromise your ability to further
-distribute the package.
-
-Failing to distribute notices associated with some files may also create
-unexpected legal consequences.
-
-Proceed with caution and we recommend that you obtain the advice of a lawyer
-skilled in open source matters before removing the Classpath Exception or
-making modifications to this package which may subsequently be redistributed
-and/or involve the use of third party software.
+Please see ..\java.base\ADDITIONAL_LICENSE_INFO
diff --git a/doc/legal/ASSEMBLY_EXCEPTION b/doc/legal/ASSEMBLY_EXCEPTION
index 065b8d9..0d4cfb4 100644
--- a/doc/legal/ASSEMBLY_EXCEPTION
+++ b/doc/legal/ASSEMBLY_EXCEPTION
@@ -1,27 +1 @@
-
-OPENJDK ASSEMBLY EXCEPTION
-
-The OpenJDK source code made available by Oracle America, Inc. (Oracle) at
-openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU
-General Public License
version 2
-only ("GPL2"), with the following clarification and special exception.
-
- Linking this OpenJDK Code statically or dynamically with other code
- is making a combined work based on this library. Thus, the terms
- and conditions of GPL2 cover the whole combination.
-
- As a special exception, Oracle gives you permission to link this
- OpenJDK Code with certain code licensed by Oracle as indicated at
- http://openjdk.java.net/legal/exception-modules-2007-05-08.html
- ("Designated Exception Modules") to produce an executable,
- regardless of the license terms of the Designated Exception Modules,
- and to copy and distribute the resulting executable under GPL2,
- provided that the Designated Exception Modules continue to be
- governed by the licenses under which they were offered by Oracle.
-
-As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code
-to build an executable that includes those portions of necessary code that
-Oracle could not provide under GPL2 (or that Oracle has provided under GPL2
-with the Classpath exception). If you modify or add to the OpenJDK code,
-that new GPL2 code may still be combined with Designated Exception Modules
-if the new code is made subject to this exception by its copyright holder.
+Please see ..\java.base\ASSEMBLY_EXCEPTION
diff --git a/doc/legal/LICENSE b/doc/legal/LICENSE
index 8b400c7..4ad9fe4 100644
--- a/doc/legal/LICENSE
+++ b/doc/legal/LICENSE
@@ -1,347 +1 @@
-The GNU General Public License (GPL)
-
-Version 2, June 1991
-
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-Everyone is permitted to copy and distribute verbatim copies of this license
-document, but changing it is not allowed.
-
-Preamble
-
-The licenses for most software are designed to take away your freedom to share
-and change it. By contrast, the GNU General Public License is intended to
-guarantee your freedom to share and change free software--to make sure the
-software is free for all its users. This General Public License applies to
-most of the Free Software Foundation's software and to any other program whose
-authors commit to using it. (Some other Free Software Foundation software is
-covered by the GNU Library General Public License instead.) You can apply it to
-your programs, too.
-
-When we speak of free software, we are referring to freedom, not price. Our
-General Public Licenses are designed to make sure that you have the freedom to
-distribute copies of free software (and charge for this service if you wish),
-that you receive source code or can get it if you want it, that you can change
-the software or use pieces of it in new free programs; and that you know you
-can do these things.
-
-To protect your rights, we need to make restrictions that forbid anyone to deny
-you these rights or to ask you to surrender the rights. These restrictions
-translate to certain responsibilities for you if you distribute copies of the
-software, or if you modify it.
-
-For example, if you distribute copies of such a program, whether gratis or for
-a fee, you must give the recipients all the rights that you have. You must
-make sure that they, too, receive or can get the source code. And you must
-show them these terms so they know their rights.
-
-We protect your rights with two steps: (1) copyright the software, and (2)
-offer you this license which gives you legal permission to copy, distribute
-and/or modify the software.
-
-Also, for each author's protection and ours, we want to make certain that
-everyone understands that there is no warranty for this free software. If the
-software is modified by someone else and passed on, we want its recipients to
-know that what they have is not the original, so that any problems introduced
-by others will not reflect on the original authors' reputations.
-
-Finally, any free program is threatened constantly by software patents. We
-wish to avoid the danger that redistributors of a free program will
-individually obtain patent licenses, in effect making the program proprietary.
-To prevent this, we have made it clear that any patent must be licensed for
-everyone's free use or not licensed at all.
-
-The precise terms and conditions for copying, distribution and modification
-follow.
-
-TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-0. This License applies to any program or other work which contains a notice
-placed by the copyright holder saying it may be distributed under the terms of
-this General Public License. The "Program", below, refers to any such program
-or work, and a "work based on the Program" means either the Program or any
-derivative work under copyright law: that is to say, a work containing the
-Program or a portion of it, either verbatim or with modifications and/or
-translated into another language. (Hereinafter, translation is included
-without limitation in the term "modification".) Each licensee is addressed as
-"you".
-
-Activities other than copying, distribution and modification are not covered by
-this License; they are outside its scope. The act of running the Program is
-not restricted, and the output from the Program is covered only if its contents
-constitute a work based on the Program (independent of having been made by
-running the Program). Whether that is true depends on what the Program does.
-
-1. You may copy and distribute verbatim copies of the Program's source code as
-you receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice and
-disclaimer of warranty; keep intact all the notices that refer to this License
-and to the absence of any warranty; and give any other recipients of the
-Program a copy of this License along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and you may
-at your option offer warranty protection in exchange for a fee.
-
-2. You may modify your copy or copies of the Program or any portion of it, thus
-forming a work based on the Program, and copy and distribute such modifications
-or work under the terms of Section 1 above, provided that you also meet all of
-these conditions:
-
- a) You must cause the modified files to carry prominent notices stating
- that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in whole or
- in part contains or is derived from the Program or any part thereof, to be
- licensed as a whole at no charge to all third parties under the terms of
- this License.
-
- c) If the modified program normally reads commands interactively when run,
- you must cause it, when started running for such interactive use in the
- most ordinary way, to print or display an announcement including an
- appropriate copyright notice and a notice that there is no warranty (or
- else, saying that you provide a warranty) and that users may redistribute
- the program under these conditions, and telling the user how to view a copy
- of this License. (Exception: if the Program itself is interactive but does
- not normally print such an announcement, your work based on the Program is
- not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If identifiable
-sections of that work are not derived from the Program, and can be reasonably
-considered independent and separate works in themselves, then this License, and
-its terms, do not apply to those sections when you distribute them as separate
-works. But when you distribute the same sections as part of a whole which is a
-work based on the Program, the distribution of the whole must be on the terms
-of this License, whose permissions for other licensees extend to the entire
-whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest your
-rights to work written entirely by you; rather, the intent is to exercise the
-right to control the distribution of derivative or collective works based on
-the Program.
-
-In addition, mere aggregation of another work not based on the Program with the
-Program (or with a work based on the Program) on a volume of a storage or
-distribution medium does not bring the other work under the scope of this
-License.
-
-3. You may copy and distribute the Program (or a work based on it, under
-Section 2) in object code or executable form under the terms of Sections 1 and
-2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable source
- code, which must be distributed under the terms of Sections 1 and 2 above
- on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three years, to
- give any third party, for a charge no more than your cost of physically
- performing source distribution, a complete machine-readable copy of the
- corresponding source code, to be distributed under the terms of Sections 1
- and 2 above on a medium customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer to
- distribute corresponding source code. (This alternative is allowed only
- for noncommercial distribution and only if you received the program in
- object code or executable form with such an offer, in accord with
- Subsection b above.)
-
-The source code for a work means the preferred form of the work for making
-modifications to it. For an executable work, complete source code means all
-the source code for all modules it contains, plus any associated interface
-definition files, plus the scripts used to control compilation and installation
-of the executable. However, as a special exception, the source code
-distributed need not include anything that is normally distributed (in either
-source or binary form) with the major components (compiler, kernel, and so on)
-of the operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the source
-code from the same place counts as distribution of the source code, even though
-third parties are not compelled to copy the source along with the object code.
-
-4. You may not copy, modify, sublicense, or distribute the Program except as
-expressly provided under this License. Any attempt otherwise to copy, modify,
-sublicense or distribute the Program is void, and will automatically terminate
-your rights under this License. However, parties who have received copies, or
-rights, from you under this License will not have their licenses terminated so
-long as such parties remain in full compliance.
-
-5. You are not required to accept this License, since you have not signed it.
-However, nothing else grants you permission to modify or distribute the Program
-or its derivative works. These actions are prohibited by law if you do not
-accept this License. Therefore, by modifying or distributing the Program (or
-any work based on the Program), you indicate your acceptance of this License to
-do so, and all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-6. Each time you redistribute the Program (or any work based on the Program),
-the recipient automatically receives a license from the original licensor to
-copy, distribute or modify the Program subject to these terms and conditions.
-You may not impose any further restrictions on the recipients' exercise of the
-rights granted herein. You are not responsible for enforcing compliance by
-third parties to this License.
-
-7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues), conditions
-are imposed on you (whether by court order, agreement or otherwise) that
-contradict the conditions of this License, they do not excuse you from the
-conditions of this License. If you cannot distribute so as to satisfy
-simultaneously your obligations under this License and any other pertinent
-obligations, then as a consequence you may not distribute the Program at all.
-For example, if a patent license would not permit royalty-free redistribution
-of the Program by all those who receive copies directly or indirectly through
-you, then the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply and
-the section as a whole is intended to apply in other circumstances.
-
-It is not the purpose of this section to induce you to infringe any patents or
-other property right claims or to contest validity of any such claims; this
-section has the sole purpose of protecting the integrity of the free software
-distribution system, which is implemented by public license practices. Many
-people have made generous contributions to the wide range of software
-distributed through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing to
-distribute software through any other system and a licensee cannot impose that
-choice.
-
-This section is intended to make thoroughly clear what is believed to be a
-consequence of the rest of this License.
-
-8. If the distribution and/or use of the Program is restricted in certain
-countries either by patents or by copyrighted interfaces, the original
-copyright holder who places the Program under this License may add an explicit
-geographical distribution limitation excluding those countries, so that
-distribution is permitted only in or among countries not thus excluded. In
-such case, this License incorporates the limitation as if written in the body
-of this License.
-
-9. The Free Software Foundation may publish revised and/or new versions of the
-General Public License from time to time. Such new versions will be similar in
-spirit to the present version, but may differ in detail to address new problems
-or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any later
-version", you have the option of following the terms and conditions either of
-that version or of any later version published by the Free Software Foundation.
-If the Program does not specify a version number of this License, you may
-choose any version ever published by the Free Software Foundation.
-
-10. If you wish to incorporate parts of the Program into other free programs
-whose distribution conditions are different, write to the author to ask for
-permission. For software which is copyrighted by the Free Software Foundation,
-write to the Free Software Foundation; we sometimes make exceptions for this.
-Our decision will be guided by the two goals of preserving the free status of
-all derivatives of our free software and of promoting the sharing and reuse of
-software generally.
-
-NO WARRANTY
-
-11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
-THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
-STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
-PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
-PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
-YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
-ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
-PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
-INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
-BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
-OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-END OF TERMS AND CONDITIONS
-
-How to Apply These Terms to Your New Programs
-
-If you develop a new program, and you want it to be of the greatest possible
-use to the public, the best way to achieve this is to make it free software
-which everyone can redistribute and change under these terms.
-
-To do so, attach the following notices to the program. It is safest to attach
-them to the start of each source file to most effectively convey the exclusion
-of warranty; and each file should have at least the "copyright" line and a
-pointer to where the full notice is found.
-
- One line to give the program's name and a brief idea of what it does.
-
- Copyright (C)
-
- This program is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the Free
- Software Foundation; either version 2 of the License, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this when it
-starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
- with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free
- software, and you are welcome to redistribute it under certain conditions;
- type 'show c' for details.
-
-The hypothetical commands 'show w' and 'show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may be
-called something other than 'show w' and 'show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your school,
-if any, to sign a "copyright disclaimer" for the program, if necessary. Here
-is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- 'Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- signature of Ty Coon, 1 April 1989
-
- Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General Public
-License instead of this License.
-
-
-"CLASSPATH" EXCEPTION TO THE GPL
-
-Certain source files distributed by Oracle America and/or its affiliates are
-subject to the following clarification and special exception to the GPL, but
-only where Oracle has expressly included in the particular source file's header
-the words "Oracle designates this particular file as subject to the "Classpath"
-exception as provided by Oracle in the LICENSE file that accompanied this code."
-
- Linking this library statically or dynamically with other modules is making
- a combined work based on this library. Thus, the terms and conditions of
- the GNU General Public License cover the whole combination.
-
- As a special exception, the copyright holders of this library give you
- permission to link this library with independent modules to produce an
- executable, regardless of the license terms of these independent modules,
- and to copy and distribute the resulting executable under terms of your
- choice, provided that you also meet, for each linked independent module,
- the terms and conditions of the license of that module. An independent
- module is a module which is not derived from or based on this library. If
- you modify this library, you may extend this exception to your version of
- the library, but you are not obligated to do so. If you do not wish to do
- so, delete this exception statement from your version.
+Please see ..\java.base\LICENSE
diff --git a/doc/member-search-index.js b/doc/member-search-index.js
index 62a0653..1b05052 100644
--- a/doc/member-search-index.js
+++ b/doc/member-search-index.js
@@ -1 +1 @@
-memberSearchIndex = [{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"Absolute"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"ABSOLUTE"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"add()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"add(double, double, double)","u":"add(double,double,double)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addAction(String, Consumer)","u":"addAction(java.lang.String,java.util.function.Consumer)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addAutos(String...)","u":"addAutos(java.lang.String...)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addAutos(String[])","u":"addAutos(java.lang.String[])"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addButton(String, BooleanConsumer)","u":"addButton(java.lang.String,edu.wpi.first.util.function.BooleanConsumer)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Object)","u":"addData(java.lang.String,java.lang.String,java.lang.Object)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Object, int, int)","u":"addData(java.lang.String,java.lang.String,java.lang.Object,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Object, int, int, int, int)","u":"addData(java.lang.String,java.lang.String,java.lang.Object,int,int,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Supplier)","u":"addData(java.lang.String,java.lang.String,java.util.function.Supplier)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Supplier, int, int)","u":"addData(java.lang.String,java.lang.String,java.util.function.Supplier,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Supplier, int, int, int, int)","u":"addData(java.lang.String,java.lang.String,java.util.function.Supplier,int,int,int,int)"},{"p":"common.hardware.camera","c":"Camera","l":"addIgnoredTags(int...)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addInit(String, List)","u":"addInit(java.lang.String,java.util.List)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addInit(String, Object)","u":"addInit(java.lang.String,java.lang.Object)"},{"p":"common.core.controllers","c":"ControllerBase","l":"addMotor(MotorController)","u":"addMotor(edu.wpi.first.wpilibj.motorcontrol.MotorController)"},{"p":"common.core.controllers","c":"ControllerBase","l":"addMotor(NAR_Motor)","u":"addMotor(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.core.controllers","c":"ControllerBase","l":"addOutput(DoubleConsumer)","u":"addOutput(java.util.function.DoubleConsumer)"},{"p":"common.core.misc","c":"NAR_Robot","l":"addPeriodic(Runnable, double)","u":"addPeriodic(java.lang.Runnable,double)"},{"p":"common.core.misc","c":"NAR_Robot2","l":"addPeriodic(Runnable, double)","u":"addPeriodic(java.lang.Runnable,double)"},{"p":"common.core.misc","c":"NAR_Robot","l":"addPeriodic(Runnable, double, double)","u":"addPeriodic(java.lang.Runnable,double,double)"},{"p":"common.core.misc","c":"NAR_Robot2","l":"addPeriodic(Runnable, double, double)","u":"addPeriodic(java.lang.Runnable,double,double)"},{"p":"common.core.misc","c":"NAR_Robot","l":"addReceiver(boolean, NAR_Robot.LoggingState)","u":"addReceiver(boolean,common.core.misc.NAR_Robot.LoggingState)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addSendable(String, String, Sendable, int, int)","u":"addSendable(java.lang.String,java.lang.String,edu.wpi.first.util.sendable.Sendable,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addSendable(String, String, Sendable, int, int, int, int)","u":"addSendable(java.lang.String,java.lang.String,edu.wpi.first.util.sendable.Sendable,int,int,int,int)"},{"p":"common.hardware.camera","c":"Camera","l":"addTags(int...)"},{"p":"common.utility.tester","c":"Tester","l":"addTest(String, Tester.SystemsTest)","u":"addTest(java.lang.String,common.utility.tester.Tester.SystemsTest)"},{"p":"common.utility.tester","c":"Tester","l":"addTest(String, Tester.Test)","u":"addTest(java.lang.String,common.utility.tester.Tester.Test)"},{"p":"common.utility.tester","c":"Tester.Test","l":"addTest(Tester.SystemsTest)","u":"addTest(common.utility.tester.Tester.SystemsTest)"},{"p":"common.utility.tester","c":"Tester.Test","l":"addTest(Tester.Test)","u":"addTest(common.utility.tester.Tester.Test)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addUpdate(String, Supplier)","u":"addUpdate(java.lang.String,java.util.function.Supplier)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addVideoStream(String, String, String, String, int, int, int, int)","u":"addVideoStream(java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,int,int,int)"},{"p":"common.core.swerve","c":"SwerveBase","l":"addVisionMeasurement(Pose2d, double)","u":"addVisionMeasurement(edu.wpi.first.math.geometry.Pose2d,double)"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"angleConfig"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"appliedOutput"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"AREA"},{"p":"common.core.controllers","c":"ControllerBase","l":"atSetpoint()"},{"p":"common.core.controllers","c":"TrapController","l":"atSetpoint()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"atSetpoint()"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"beta(int)"},{"p":"common.hardware.limelight","c":"LEDMode","l":"BLINK"},{"p":"common.hardware.limelight","c":"Pipeline","l":"BLUE"},{"p":"common.hardware.limelight","c":"StreamMode","l":"BOTH"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"BRAKE"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"burnFlash()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"burnFlashAll()"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculate(double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculate(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculate(double, double)","u":"calculate(double,double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculate(TrapezoidProfile.State, double)","u":"calculate(edu.wpi.first.math.trajectory.TrapezoidProfile.State,double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"calculateDistToGroundTarget(double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"calculateDistToTopTarget(double)"},{"p":"common.core.controllers","c":"Controller","l":"calculateFF(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculateFF(double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculateFF(double)"},{"p":"common.core.controllers","c":"Controller","l":"calculatePID(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculatePID(double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculatePID(double)"},{"p":"common.hardware.camera","c":"Camera","l":"Camera(String, double, double, double, double, double)","u":"%3Cinit%3E(java.lang.String,double,double,double,double,double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"cameraAngle"},{"p":"common.hardware.limelight","c":"Limelight","l":"cameraHeight"},{"p":"common.hardware.camera","c":"Camera","l":"cameras"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"CAN_SPARK_FLEX"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"CAN_SPARK_MAX"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"canSparkMaxTimeout"},{"p":"common.core.swerve","c":"SwerveBase","l":"chassisVelocityCorrection"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"checkState(String, Supplier)","u":"checkState(java.lang.String,java.util.function.Supplier)"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"clear()"},{"p":"common.core.controllers","c":"ControllerBase","l":"close()"},{"p":"common.core.misc","c":"NAR_Robot","l":"close()"},{"p":"common.core.misc","c":"NAR_Robot2","l":"close()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"close()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"close()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"close()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"close()"},{"p":"common.utility.sysid","c":"CmdSysId","l":"CmdSysId(String, Consumer, Supplier, double, double, Subsystem...)","u":"%3Cinit%3E(java.lang.String,java.util.function.Consumer,java.util.function.Supplier,double,double,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.utility.sysid","c":"CmdSysId","l":"CmdSysId(String, Consumer, Supplier, Subsystem...)","u":"%3Cinit%3E(java.lang.String,java.util.function.Consumer,java.util.function.Supplier,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"COAST"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"command"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"compareTo(PolynomialRegression)","u":"compareTo(common.utility.sysid.PolynomialRegression)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"configAllSettings(TalonSRXConfiguration)","u":"configAllSettings(com.ctre.phoenix.motorcontrol.can.TalonSRXConfiguration)"},{"p":"common.hardware.camera","c":"Camera","l":"configCameras(AprilTagFields, PhotonPoseEstimator.PoseStrategy, BiConsumer, Supplier)","u":"configCameras(edu.wpi.first.apriltag.AprilTagFields,org.photonvision.PhotonPoseEstimator.PoseStrategy,java.util.function.BiConsumer,java.util.function.Supplier)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"configMotor(NAR_Motor.MotorConfig)","u":"configMotor(common.hardware.motorcontroller.NAR_Motor.MotorConfig)"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"configMotors()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"configMotors()"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"configMotors()"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"configMotors()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"controller"},{"p":"common.core.controllers","c":"ControllerBase","l":"controller"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"controller"},{"p":"common.core.controllers","c":"Controller","l":"Controller(PIDFFConfig, Controller.Type)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,common.core.controllers.Controller.Type)"},{"p":"common.core.controllers","c":"Controller","l":"Controller(PIDFFConfig, Controller.Type, double)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,common.core.controllers.Controller.Type,double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"ControllerBase(PIDFFConfig, double)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,double)"},{"p":"common.core.swerve","c":"CTREModuleState","l":"CTREModuleState()","u":"%3Cinit%3E()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"currentLimit"},{"p":"common.utility.tester","c":"CurrentTest","l":"CurrentTest(String, NAR_Motor, double, double, double, BooleanSupplier, Subsystem...)","u":"%3Cinit%3E(java.lang.String,common.hardware.motorcontroller.NAR_Motor,double,double,double,java.util.function.BooleanSupplier,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.utility.tester","c":"CurrentTest","l":"CurrentTest(String, NAR_Motor, double, double, double, double, double, Subsystem...)","u":"%3Cinit%3E(java.lang.String,common.hardware.motorcontroller.NAR_Motor,double,double,double,double,double,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.utility.tester","c":"CurrentTest","l":"CurrentTest(String, NAR_Motor, double, double, double, double, Subsystem...)","u":"%3Cinit%3E(java.lang.String,common.hardware.motorcontroller.NAR_Motor,double,double,double,double,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"debug"},{"p":"common.utility","c":"Log","l":"debug(String, String)","u":"debug(java.lang.String,java.lang.String)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"debug(String, String, double, int, int)","u":"debug(java.lang.String,java.lang.String,double,int,int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"DEFAULT"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"degree()"},{"p":"common.core.swerve","c":"SwerveConversions","l":"degreesToRotations(double, double)","u":"degreesToRotations(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"disable()"},{"p":"common.hardware.camera","c":"Camera","l":"disable()"},{"p":"common.hardware.camera","c":"Camera","l":"disableAll()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"DISCONNECTED"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"distanceFactor"},{"p":"common.core.swerve","c":"SwerveBase","l":"drive(ChassisSpeeds)","u":"drive(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"common.core.swerve","c":"SwerveBase","l":"drive(Translation2d, double, boolean)","u":"drive(edu.wpi.first.math.geometry.Translation2d,double,boolean)"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"driveConfig"},{"p":"common.hardware.limelight","c":"StreamMode","l":"DRIVER_CAMERA"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"ElevatorTemplate(ControllerBase, NAR_Motor...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"enable()"},{"p":"common.hardware.camera","c":"Camera","l":"enable()"},{"p":"common.hardware.camera","c":"Camera","l":"enableAll()"},{"p":"common.core.controllers","c":"ControllerBase","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.core.controllers","c":"TrapController","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"enabled"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"enableVoltageCompensation(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"enableVoltageCompensation(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"enableVoltageCompensation(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"enableVoltageCompensation(double)"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"encoder"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"encoderConfig"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"encoderOffset"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"end(boolean)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"end(boolean)"},{"p":"common.utility.sysid","c":"CmdSysId","l":"end(boolean)"},{"p":"common.utility.tester","c":"CurrentTest","l":"end(boolean)"},{"p":"common.utility.tester","c":"PlateauTest","l":"end(boolean)"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"end(boolean)"},{"p":"common.utility.tester","c":"Tester.Test","l":"end(boolean)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"end(boolean)"},{"p":"common.core.misc","c":"NAR_Robot","l":"endCompetition()"},{"p":"common.core.misc","c":"NAR_Robot2","l":"endCompetition()"},{"p":"common.utility.sysid","c":"PolynomialDerivative","l":"evaluate(double)"},{"p":"common.utility.sysid","c":"PolynomialDerivative","l":"evaluate(List)","u":"evaluate(java.util.List)"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"execute()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"execute()"},{"p":"common.utility.sysid","c":"CmdSysId","l":"execute()"},{"p":"common.utility.tester","c":"CurrentTest","l":"execute()"},{"p":"common.utility.tester","c":"PlateauTest","l":"execute()"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"execute()"},{"p":"common.utility.tester","c":"Tester.Test","l":"execute()"},{"p":"common.utility.tester","c":"ThresholdTest","l":"execute()"},{"p":"common.utility.tester","c":"Tester.TestState","l":"FAILED"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"FALCON_ENCODER_RESOLUTION"},{"p":"common.utility","c":"Log","l":"fatal(String, String)","u":"fatal(java.lang.String,java.lang.String)"},{"p":"common.utility","c":"Log","l":"fatalException(String, String, Exception)","u":"fatalException(java.lang.String,java.lang.String,java.lang.Exception)"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"FFCharacterization(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"common.core.swerve","c":"SwerveBase","l":"fieldRelative"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"FITTED_LONG"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"FITTED_SHORT"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"follow(IMotorController)","u":"follow(com.ctre.phoenix.motorcontrol.IMotorController)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"follow(NAR_CANSpark, boolean)","u":"follow(common.hardware.motorcontroller.NAR_CANSpark,boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"follow(NAR_Motor)","u":"follow(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"follow(NAR_Motor)","u":"follow(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"follow(NAR_Motor)","u":"follow(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"FOLLOWER"},{"p":"common.hardware.limelight","c":"Limelight","l":"frontDistance"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"FULLMATCH"},{"p":"common.core.swerve","c":"SwerveModule","l":"getAbsoluteAngle()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getAllFaults()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getAngleMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getAppliedOutput()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getAppliedOutput()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getAppliedOutput()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getAppliedOutput()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getBoolean(String, String)","u":"getBoolean(java.lang.String,java.lang.String)"},{"p":"common.hardware.input","c":"NAR_ButtonBoard","l":"getButton(int)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getButton(int)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getButton(NAR_XboxController.XboxButton)","u":"getButton(common.hardware.input.NAR_XboxController.XboxButton)"},{"p":"common.core.controllers","c":"ControllerBase","l":"getController()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"getController()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"getCurrent()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getD()"},{"p":"common.hardware.camera","c":"Camera","l":"getDistanceGround()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getDouble(String, String)","u":"getDouble(java.lang.String,java.lang.String)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getDownPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getDownPOVButton()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getDriveMotor()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getEntry(String, String)","u":"getEntry(java.lang.String,java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getFault(CANSparkBase.FaultID)","u":"getFault(com.revrobotics.CANSparkBase.FaultID)"},{"p":"common.core.swerve","c":"SwerveBase","l":"getFieldVelocity()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getGyroRotation2d()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getHeading()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getI()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"getInstance()"},{"p":"common.utility.tester","c":"Tester","l":"getInstance()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkA()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"getkA()"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"getKey()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkG()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkS()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"getkS()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkV()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"getkV()"},{"p":"common.hardware.camera","c":"Camera","l":"getLatestResult()"},{"p":"common.hardware.limelight","c":"LEDMode","l":"getLEDMode()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getLeftPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getLeftPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getLeftX()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getLeftY()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getLong(String, String)","u":"getLong(java.lang.String,java.lang.String)"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"getMeasurement()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"getMeasurement()"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"getMeasurement()"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"getMeasurement()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getModulePosition()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getModules()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getNumFailedConfigs()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getNumFailedConfigs()"},{"p":"common.hardware.camera","c":"Camera","l":"getOffset()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getP()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getPeriod()"},{"p":"common.hardware.limelight","c":"Pipeline","l":"getPipeline()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getPitch()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getPose()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getPosition()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getPositions()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getPOVButton(int)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getPOVButton(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getRawVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getRawVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getRawVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getRawVelocity()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getRightPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getRightPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getRightX()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getRightY()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getRobotVelocity()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getRoll()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getRotation2d()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getRunningState()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"getSelectedAuto()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getSelectedAutoName()"},{"p":"common.hardware.limelight","c":"Limelight","l":"getSelectedPipeline()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getSetpoint()"},{"p":"common.core.controllers","c":"TrapController","l":"getSetpoint()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"getSetpoint()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getStallCurrent()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getStallCurrent()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getStallCurrent()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getStallCurrent()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getState()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getStates()"},{"p":"common.hardware.limelight","c":"StreamMode","l":"getStream()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getString(String, String)","u":"getString(java.lang.String,java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getTemperature()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getTemperature()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getTemperature()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getTemperature()"},{"p":"common.utility.tester","c":"Tester","l":"getTest(String)","u":"getTest(java.lang.String)"},{"p":"common.utility.tester","c":"Tester.Test","l":"getTestState()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getThrottle()"},{"p":"common.core.controllers","c":"Controller","l":"getType()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getUpPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getUpPOVButton()"},{"p":"common.hardware.limelight","c":"Limelight","l":"getValue(LimelightKey)","u":"getValue(common.hardware.limelight.LimelightKey)"},{"p":"common.hardware.limelight","c":"Limelight","l":"getValueAverage(LimelightKey, int)","u":"getValueAverage(common.hardware.limelight.LimelightKey,int)"},{"p":"common.core.swerve","c":"SwerveBase","l":"getVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getVelocity()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getX()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getY()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getYaw()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getZ()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"hasObjectPresent()"},{"p":"common.hardware.limelight","c":"Limelight","l":"hasValidTarget()"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"HIGH_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"HIGH_PRIORITY_FREQ"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"HORIZONTAL_FOV"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"HORIZONTAL_OFFSET"},{"p":"common.hardware.limelight","c":"Limelight","l":"hostname"},{"p":"common.utility.annotations","c":"AutoCommand","l":"identifier()"},{"p":"common.utility","c":"Log","l":"info(String, String)","u":"info(java.lang.String,java.lang.String)"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"initialize()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"initialize()"},{"p":"common.utility.sysid","c":"CmdSysId","l":"initialize()"},{"p":"common.utility.tester","c":"CurrentTest","l":"initialize()"},{"p":"common.utility.tester","c":"PlateauTest","l":"initialize()"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"initialize()"},{"p":"common.utility.tester","c":"Tester.Test","l":"initialize()"},{"p":"common.utility.tester","c":"ThresholdTest","l":"initialize()"},{"p":"common.core.controllers","c":"ControllerBase","l":"initSendable(SendableBuilder)","u":"initSendable(edu.wpi.first.util.sendable.SendableBuilder)"},{"p":"common.core.controllers","c":"TrapController","l":"initSendable(SendableBuilder)","u":"initSendable(edu.wpi.first.util.sendable.SendableBuilder)"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"initShuffleboard()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"initShuffleboard()"},{"p":"common.core.swerve","c":"SwerveBase","l":"initShuffleboard()"},{"p":"common.hardware.camera","c":"Camera","l":"initShuffleboard()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"initShuffleboard(String, String, int)","u":"initShuffleboard(java.lang.String,java.lang.String,int)"},{"p":"common.core.swerve","c":"SwerveBase","l":"initStateCheck()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"inputPower"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"instances"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"intake()"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"invert"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"inverted"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"isDebug()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"isEnabled()"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"isFinished()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"isFinished()"},{"p":"common.utility.tester","c":"CurrentTest","l":"isFinished()"},{"p":"common.utility.tester","c":"PlateauTest","l":"isFinished()"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"isFinished()"},{"p":"common.utility.tester","c":"Tester.Test","l":"isFinished()"},{"p":"common.utility.tester","c":"ThresholdTest","l":"isFinished()"},{"p":"common.hardware.camera","c":"Camera","l":"isGoodEstimate(Pose2d)","u":"isGoodEstimate(edu.wpi.first.math.geometry.Pose2d)"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kA"},{"p":"common.core.controllers","c":"ControllerBase","l":"kA"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kA"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kB"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kBack"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kD"},{"p":"common.core.misc","c":"NAR_Robot","l":"kDefaultPeriod"},{"p":"common.core.misc","c":"NAR_Robot2","l":"kDefaultPeriod"},{"p":"common.core.controllers","c":"ControllerBase","l":"kG"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kG"},{"p":"common.core.controllers","c":"ControllerBase","l":"kG_Function"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kI"},{"p":"common.core.swerve","c":"SwerveBase","l":"kinematics"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kLeftBumper"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kLeftStick"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kLeftTrigger"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kP"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kRightBumper"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kRightStick"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kRightTrigger"},{"p":"common.core.controllers","c":"ControllerBase","l":"kS"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kS"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kStart"},{"p":"common.core.controllers","c":"ControllerBase","l":"kV"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kV"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kX"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kY"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"LATENCY"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"LENGTH_HORIZONTAL"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"LENGTH_VERTICAL"},{"p":"common.hardware.limelight","c":"StreamMode","l":"LIMELIGHT_CAMERA"},{"p":"common.hardware.limelight","c":"Limelight","l":"Limelight(String, double, double, double)","u":"%3Cinit%3E(java.lang.String,double,double,double)"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"LimelightConstants()","u":"%3Cinit%3E()"},{"p":"common.hardware.limelight","c":"LimelightData","l":"LimelightData()","u":"%3Cinit%3E()"},{"p":"common.hardware.limelight","c":"Limelight","l":"limelightTable"},{"p":"common.utility","c":"Log","l":"Log()","u":"%3Cinit%3E()"},{"p":"common.core.misc","c":"NAR_Robot","l":"logWithAdvantageKit"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"LOW_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"LOW_PRIORITY_FREQ"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MAG_ENCODER_RESOLUTION"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"ManipulatorTemplate(double, double, double, double, double, NAR_Motor...)","u":"%3Cinit%3E(double,double,double,double,double,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MAX_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MAX_PRIORITY_FREQ"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"maximumRetries"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"maximumRetries"},{"p":"common.core.swerve","c":"SwerveBase","l":"maxSpeed"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"maxSpeed"},{"p":"common.core.controllers","c":"ControllerBase","l":"measurement"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MEDIUM_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MEDIUM_PRIORITY_FREQ"},{"p":"common.core.swerve","c":"SwerveConversions","l":"metersToRotations(double, double, double)","u":"metersToRotations(double,double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"mode"},{"p":"common.core.swerve","c":"SwerveModule","l":"moduleNumber"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"moduleNumber"},{"p":"common.core.swerve","c":"SwerveBase","l":"modules"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"motor"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"motor"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"motor"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"motorConfig"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"MotorConfig(double, double, int, boolean, NAR_Motor.Neutral)","u":"%3Cinit%3E(double,double,int,boolean,common.hardware.motorcontroller.NAR_Motor.Neutral)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MotorControllerConstants()","u":"%3Cinit%3E()"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"motors"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"motors"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"motors"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"motors"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"moveElevator(double)"},{"p":"common.core.swerve","c":"SwerveConversions","l":"MPSToRPM(double, double, double)","u":"MPSToRPM(double,double,double)"},{"p":"common.utility.annotations","c":"NARUpdateable","l":"name()"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"name()"},{"p":"common.hardware.input","c":"NAR_ButtonBoard","l":"NAR_ButtonBoard(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType, CANSparkLowLevel.MotorType)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType,com.revrobotics.CANSparkLowLevel.MotorType)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType, CANSparkLowLevel.MotorType, NAR_CANSpark.EncoderType)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType,com.revrobotics.CANSparkLowLevel.MotorType,common.hardware.motorcontroller.NAR_CANSpark.EncoderType)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType, CANSparkLowLevel.MotorType, NAR_CANSpark.EncoderType, PIDFFConfig)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType,com.revrobotics.CANSparkLowLevel.MotorType,common.hardware.motorcontroller.NAR_CANSpark.EncoderType,common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"NAR_Joystick(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"NAR_Motor(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"NAR_MotorIO()","u":"%3Cinit%3E()"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"NAR_PIDCommand(ControllerBase, DoubleSupplier, DoubleSupplier, DoubleConsumer, Subsystem...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleConsumer,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"NAR_PIDSubsystem(ControllerBase)","u":"%3Cinit%3E(common.core.controllers.ControllerBase)"},{"p":"common.core.misc","c":"NAR_Robot","l":"NAR_Robot()","u":"%3Cinit%3E()"},{"p":"common.core.misc","c":"NAR_Robot","l":"NAR_Robot(double)","u":"%3Cinit%3E(double)"},{"p":"common.core.misc","c":"NAR_Robot2","l":"NAR_Robot2()","u":"%3Cinit%3E()"},{"p":"common.core.misc","c":"NAR_Robot2","l":"NAR_Robot2(double)","u":"%3Cinit%3E(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"NAR_TalonFX(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"NAR_TalonFX(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"NAR_TalonFX(int, String, PIDFFConfig)","u":"%3Cinit%3E(int,java.lang.String,common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"NAR_TalonSRX(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"NAR_XboxController(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"NEO_550CurrentLimit"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"NEO_CurrentLimit"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"NO_PRIORITY"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"NONE"},{"p":"common.core.swerve","c":"SwerveBase","l":"odometry"},{"p":"common.hardware.limelight","c":"LEDMode","l":"OFF"},{"p":"common.hardware.limelight","c":"LEDMode","l":"ON"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onClose(WebSocket, int, String, boolean)","u":"onClose(org.java_websocket.WebSocket,int,java.lang.String,boolean)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onError(WebSocket, Exception)","u":"onError(org.java_websocket.WebSocket,java.lang.Exception)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onMessage(WebSocket, String)","u":"onMessage(org.java_websocket.WebSocket,java.lang.String)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onOpen(WebSocket, ClientHandshake)","u":"onOpen(org.java_websocket.WebSocket,org.java_websocket.handshake.ClientHandshake)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onStart()"},{"p":"common.core.swerve","c":"CTREModuleState","l":"optimize(SwerveModuleState, Rotation2d)","u":"optimize(edu.wpi.first.math.kinematics.SwerveModuleState,edu.wpi.first.math.geometry.Rotation2d)"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"outtake()"},{"p":"common.hardware.camera","c":"Camera","l":"overrideThreshold"},{"p":"common.hardware.camera","c":"ParseJson","l":"ParseJson(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"PARTIALLY_RUNNING"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"passCondition"},{"p":"common.utility.tester","c":"Tester.TestState","l":"PASSED"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"PercentOutput"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"periodic()"},{"p":"common.core.swerve","c":"SwerveBase","l":"periodic()"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"pidffConfig"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig()","u":"%3Cinit%3E()"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig(double, double, double)","u":"%3Cinit%3E(double,double,double)"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig(double, double, double, double, double, double)","u":"%3Cinit%3E(double,double,double,double,double,double)"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig(double, double, double, double, double, double, double)","u":"%3Cinit%3E(double,double,double,double,double,double,double)"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"PIPELINE"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"PivotTemplate(ControllerBase, NAR_Motor...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"pivotTo(double)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, DoubleSupplier, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.DoubleSupplier,double)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, DoubleSupplier, double, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.DoubleSupplier,double,double)"},{"p":"common.utility.sysid","c":"PolynomialDerivative","l":"PolynomialDerivative(PolynomialRegression)","u":"%3Cinit%3E(common.utility.sysid.PolynomialRegression)"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"PolynomialRegression(double[], double[], int)","u":"%3Cinit%3E(double[],double[],int)"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"PolynomialRegression(double[], double[], int, String)","u":"%3Cinit%3E(double[],double[],int,java.lang.String)"},{"p":"common.core.swerve","c":"SwerveBase","l":"PoseLog(Pose2d)","u":"PoseLog(edu.wpi.first.math.geometry.Pose2d)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"position"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"Position"},{"p":"common.core.controllers","c":"Controller.Type","l":"POSITION"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"POSITION"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"predict(double)"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"print()"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"R2()"},{"p":"common.utility","c":"Log","l":"recoverable(String, String)","u":"recoverable(java.lang.String,java.lang.String)"},{"p":"common.hardware.limelight","c":"Pipeline","l":"RED"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"Relative"},{"p":"common.core.controllers","c":"ControllerBase","l":"reset()"},{"p":"common.core.controllers","c":"TrapController","l":"reset()"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"reset(double)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"reset(double)"},{"p":"common.core.swerve","c":"SwerveBase","l":"resetAll()"},{"p":"common.core.swerve","c":"SwerveBase","l":"resetEncoders()"},{"p":"common.core.swerve","c":"SwerveBase","l":"resetOdometry(Pose2d)","u":"resetOdometry(edu.wpi.first.math.geometry.Pose2d)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"resetPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"resetRawPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"resetRawPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"resetRawPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"resetRawPosition(double)"},{"p":"common.core.swerve","c":"SwerveModule","l":"resetToAbsolute()"},{"p":"common.hardware.camera","c":"ParseJson","l":"returnHashMap()"},{"p":"common.core.swerve","c":"SwerveConversions","l":"rotationsToDegrees(double, double)","u":"rotationsToDegrees(double,double)"},{"p":"common.core.swerve","c":"SwerveConversions","l":"rotationsToMeters(double, double, double)","u":"rotationsToMeters(double,double,double)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"RPM_TO_FALCON"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"RPM_TO_TALONSRX"},{"p":"common.core.swerve","c":"SwerveConversions","l":"RPMToMPS(double, double, double)","u":"RPMToMPS(double,double,double)"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"runElevator(double)"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"runManipulator(double)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"RUNNING"},{"p":"common.utility.tester","c":"Tester.TestState","l":"RUNNING"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"runPivot(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"runShooter(double)"},{"p":"common.utility.tester","c":"Tester","l":"runTest(String)","u":"runTest(java.lang.String)"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"SCREEN_HEIGHT"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"SCREEN_WIDTH"},{"p":"common.hardware.camera","c":"Camera","l":"seesTag()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"sendMessage(String)","u":"sendMessage(java.lang.String)"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"SESSION"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"set(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"set(double, NAR_Motor.Control)","u":"set(double,common.hardware.motorcontroller.NAR_Motor.Control)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"set(double, NAR_Motor.Control, double)","u":"set(double,common.hardware.motorcontroller.NAR_Motor.Control,double)"},{"p":"common.hardware.camera","c":"Camera","l":"setAllDistanceThreshold(double)"},{"p":"common.hardware.camera","c":"Camera","l":"setAmbiguityThreshold(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setBrakeMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setBrakeMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setBrakeMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setBrakeMode()"},{"p":"common.core.swerve","c":"SwerveBase","l":"setBrakeMode(boolean)"},{"p":"common.core.swerve","c":"SwerveModule","l":"setBrakeMode(boolean)"},{"p":"common.hardware.camera","c":"Camera","l":"setCamDistanceThreshold(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setCoastMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setCoastMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setCoastMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setCoastMode()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setConstraints(double, double)","u":"setConstraints(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setCurrentLimit(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setCurrentLimit(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setCurrentLimit(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setCurrentLimit(int)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setD(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setDefaultStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setDefaultStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setDefaultStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setDefaultStatusFrames()"},{"p":"common.core.swerve","c":"SwerveModule","l":"setDesiredState(SwerveModuleState)","u":"setDesiredState(edu.wpi.first.math.kinematics.SwerveModuleState)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setFollowerStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setFollowerStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setFollowerStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setFollowerStatusFrames()"},{"p":"common.core.controllers","c":"ControllerBase","l":"setI(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setInverted(boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setInverted(boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setInverted(boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setInverted(boolean)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkA(DoubleSupplier)","u":"setkA(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkG_Function(DoubleSupplier)","u":"setkG_Function(java.util.function.DoubleSupplier)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setkG_Function(DoubleSupplier)","u":"setkG_Function(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkG(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkG(DoubleSupplier)","u":"setkG(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkS(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkS(DoubleSupplier)","u":"setkS(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkV(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkV(DoubleSupplier)","u":"setkV(java.util.function.DoubleSupplier)"},{"p":"common.hardware.limelight","c":"Limelight","l":"setLEDMode(LEDMode)","u":"setLEDMode(common.hardware.limelight.LEDMode)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setLeftXDeadband(double)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setLeftYDeadband(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setMeasurementSource(DoubleSupplier)","u":"setMeasurementSource(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"Controller","l":"setMeasurementSource(NAR_Motor)","u":"setMeasurementSource(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.core.swerve","c":"SwerveBase","l":"setModuleStates(SwerveModuleState[])","u":"setModuleStates(edu.wpi.first.math.kinematics.SwerveModuleState[])"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setNeutralMode(NAR_Motor.Neutral)","u":"setNeutralMode(common.hardware.motorcontroller.NAR_Motor.Neutral)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setP(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPeriodicFramePeriod(CANSparkLowLevel.PeriodicFrame, int)","u":"setPeriodicFramePeriod(com.revrobotics.CANSparkLowLevel.PeriodicFrame,int)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setPID(double, double, double)","u":"setPID(double,double,double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"setPipeline(Pipeline)","u":"setPipeline(common.hardware.limelight.Pipeline)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setpoint"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"setpointSource"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"SetpointTest(String, double, double, double)","u":"%3Cinit%3E(java.lang.String,double,double,double)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"setPort(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPositionStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setPositionStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setPositionStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setPositionStatusFrames()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"setPower(double)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"setPower(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"setPower(double)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setRightXDeadband(double)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setRightYDeadband(double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setSafetyThresh(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setSetpoint(double)"},{"p":"common.core.controllers","c":"TrapController","l":"setSetpoint(double)"},{"p":"common.core.controllers","c":"TrapController","l":"setSetpoint(TrapezoidProfile.State)","u":"setSetpoint(edu.wpi.first.math.trajectory.TrapezoidProfile.State)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setStatusFramePeriod(StatusFrameEnhanced, int)","u":"setStatusFramePeriod(com.ctre.phoenix.motorcontrol.StatusFrameEnhanced,int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setStatusFrames(NAR_CANSpark.SparkMaxConfig)","u":"setStatusFrames(common.hardware.motorcontroller.NAR_CANSpark.SparkMaxConfig)"},{"p":"common.hardware.limelight","c":"Limelight","l":"setStreamMode(StreamMode)","u":"setStreamMode(common.hardware.limelight.StreamMode)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setThrottleBounds(double, double)","u":"setThrottleBounds(double,double)"},{"p":"common.utility.tester","c":"Tester.Test","l":"setTimeBetweenTests(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setTimeConversionFactor(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setTolerance(double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setTolerance(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setTolerance(double, double)","u":"setTolerance(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setUnitConversionFactor(double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setUpdateTime(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.core.controllers","c":"TrapController","l":"setVelocitySource(DoubleSupplier)","u":"setVelocitySource(java.util.function.DoubleSupplier)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setVelocityStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setVelocityStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setVelocityStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setVelocityStatusFrames()"},{"p":"common.core.swerve","c":"SwerveBase","l":"setVoltage(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setVolts(double)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setXDeadband(double)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setYDeadband(double)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setZDeadband(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"shoot(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"ShooterTemplate(ControllerBase, NAR_Motor...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.core.controllers","c":"TrapController","l":"shouldLog"},{"p":"common.core.swerve","c":"SwerveModule","l":"shouldOptimizeCAN"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"SKEW"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"SPARKMAX_ENCODER_RESOLUTION"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"SPARKMAX_RPM_TO_NUpS"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"stallCurrent"},{"p":"common.core.misc","c":"NAR_Robot","l":"startCompetition()"},{"p":"common.core.misc","c":"NAR_Robot2","l":"startCompetition()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"startPID(double)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"startVibrate()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status0"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status1"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status2"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status3"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status4"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status5"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status6"},{"p":"common.core.swerve","c":"SwerveBase","l":"stop()"},{"p":"common.core.swerve","c":"SwerveModule","l":"stop()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"stopVibrate()"},{"p":"common.core.swerve","c":"SwerveBase","l":"SwerveBase(SwerveDriveKinematics, Matrix, Matrix, SwerveModuleConfig...)","u":"%3Cinit%3E(edu.wpi.first.math.kinematics.SwerveDriveKinematics,edu.wpi.first.math.Matrix,edu.wpi.first.math.Matrix,common.core.swerve.SwerveModuleConfig...)"},{"p":"common.core.swerve","c":"SwerveConversions","l":"SwerveConversions()","u":"%3Cinit%3E()"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"SwerveEncoderConfig(CANcoder, double, boolean)","u":"%3Cinit%3E(com.ctre.phoenix6.hardware.CANcoder,double,boolean)"},{"p":"common.core.swerve","c":"SwerveModule","l":"SwerveModule(SwerveModuleConfig)","u":"%3Cinit%3E(common.core.swerve.SwerveModuleConfig)"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"SwerveModuleConfig(int, SwerveModuleConfig.SwerveMotorConfig, SwerveModuleConfig.SwerveMotorConfig, SwerveModuleConfig.SwerveEncoderConfig, double)","u":"%3Cinit%3E(int,common.core.swerve.SwerveModuleConfig.SwerveMotorConfig,common.core.swerve.SwerveModuleConfig.SwerveMotorConfig,common.core.swerve.SwerveModuleConfig.SwerveEncoderConfig,double)"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"SwerveMotorConfig(NAR_Motor, NAR_Motor.MotorConfig, PIDFFConfig)","u":"%3Cinit%3E(common.hardware.motorcontroller.NAR_Motor,common.hardware.motorcontroller.NAR_Motor.MotorConfig,common.core.controllers.PIDFFConfig)"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"SystemsTest(String, Command)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command)"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"SystemsTest(String, Command, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.BooleanSupplier)"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"tab()"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"TALONSRX_ENCODER_RESOLUTION"},{"p":"common.hardware.limelight","c":"Limelight","l":"targetWidth"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"testName"},{"p":"common.utility.tester","c":"ThresholdTest","l":"testName"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"testState"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, double, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, DoubleSupplier, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.DoubleSupplier,double)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, DoubleSupplier, double, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.DoubleSupplier,double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"timeConversionFactor"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"timeFactor"},{"p":"common.core.swerve","c":"SwerveBase","l":"toggle()"},{"p":"common.hardware.limelight","c":"LimelightData","l":"toString()"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"toString()"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"toString()"},{"p":"common.core.controllers","c":"TrapController","l":"TrapController(PIDFFConfig, TrapezoidProfile.Constraints)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,edu.wpi.first.math.trajectory.TrapezoidProfile.Constraints)"},{"p":"common.core.controllers","c":"TrapController","l":"TrapController(PIDFFConfig, TrapezoidProfile.Constraints, double)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,edu.wpi.first.math.trajectory.TrapezoidProfile.Constraints,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"unitConversionFactor"},{"p":"common.utility","c":"Log","l":"unusual(String, String)","u":"unusual(java.lang.String,java.lang.String)"},{"p":"common.hardware.camera","c":"Camera","l":"update()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"update()"},{"p":"common.hardware.camera","c":"Camera","l":"updateAll()"},{"p":"common.hardware.camera","c":"Camera","l":"updateCounter"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"updateIO(NAR_MotorIOAutoLogged)","u":"updateIO(common.hardware.motorcontroller.NAR_MotorIOAutoLogged)"},{"p":"common.core.controllers","c":"ControllerBase","l":"useOutput()"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"VALID_TARGET"},{"p":"common.hardware.camera","c":"Camera","l":"validDist"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"VALUE_KEYS"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"VALUE_KEYS_PNP"},{"p":"common.core.controllers","c":"Controller.Type","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"LEDMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"Pipeline","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"StreamMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.utility.tester","c":"Tester.TestState","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.core.controllers","c":"Controller.Type","l":"values()"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"values()"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"values()"},{"p":"common.hardware.limelight","c":"LEDMode","l":"values()"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"values()"},{"p":"common.hardware.limelight","c":"Pipeline","l":"values()"},{"p":"common.hardware.limelight","c":"StreamMode","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"values()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"values()"},{"p":"common.utility.tester","c":"Tester.TestState","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"velocity"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"Velocity"},{"p":"common.core.controllers","c":"Controller.Type","l":"VELOCITY"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"VELOCITY"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"VERTICAL_FOV"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"VERTICAL_OFFSET"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"WINDOW_HEIGHT"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"WINDOW_WIDTH"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"x()"},{"p":"common.core.swerve","c":"SwerveBase","l":"xlock()"},{"p":"common.core.swerve","c":"SwerveModule","l":"xLock(Rotation2d)","u":"xLock(edu.wpi.first.math.geometry.Rotation2d)"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"y()"},{"p":"common.core.swerve","c":"SwerveBase","l":"zeroGyro(double)"}];updateSearchResults();
\ No newline at end of file
+memberSearchIndex = [{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"Absolute"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"ABSOLUTE"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"add()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"add(double, double, double)","u":"add(double,double,double)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addAction(String, Consumer)","u":"addAction(java.lang.String,java.util.function.Consumer)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addAutos(String...)","u":"addAutos(java.lang.String...)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addAutos(String[])","u":"addAutos(java.lang.String[])"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addButton(String, BooleanConsumer)","u":"addButton(java.lang.String,edu.wpi.first.util.function.BooleanConsumer)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Object)","u":"addData(java.lang.String,java.lang.String,java.lang.Object)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Object, int, int)","u":"addData(java.lang.String,java.lang.String,java.lang.Object,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Object, int, int, int, int)","u":"addData(java.lang.String,java.lang.String,java.lang.Object,int,int,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Supplier)","u":"addData(java.lang.String,java.lang.String,java.util.function.Supplier)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Supplier, int, int)","u":"addData(java.lang.String,java.lang.String,java.util.function.Supplier,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addData(String, String, Supplier, int, int, int, int)","u":"addData(java.lang.String,java.lang.String,java.util.function.Supplier,int,int,int,int)"},{"p":"common.hardware.camera","c":"Camera","l":"addIgnoredTags(int...)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addInit(String, List)","u":"addInit(java.lang.String,java.util.List)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addInit(String, Object)","u":"addInit(java.lang.String,java.lang.Object)"},{"p":"common.core.controllers","c":"ControllerBase","l":"addMotor(MotorController)","u":"addMotor(edu.wpi.first.wpilibj.motorcontrol.MotorController)"},{"p":"common.core.controllers","c":"ControllerBase","l":"addMotor(NAR_Motor)","u":"addMotor(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.core.controllers","c":"ControllerBase","l":"addOutput(DoubleConsumer)","u":"addOutput(java.util.function.DoubleConsumer)"},{"p":"common.core.misc","c":"NAR_Robot","l":"addPeriodic(Runnable, double)","u":"addPeriodic(java.lang.Runnable,double)"},{"p":"common.core.misc","c":"NAR_Robot","l":"addPeriodic(Runnable, double, double)","u":"addPeriodic(java.lang.Runnable,double,double)"},{"p":"common.core.misc","c":"NAR_Robot","l":"addReceiver(boolean, NAR_Robot.LoggingState)","u":"addReceiver(boolean,common.core.misc.NAR_Robot.LoggingState)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addSendable(String, String, Sendable, int, int)","u":"addSendable(java.lang.String,java.lang.String,edu.wpi.first.util.sendable.Sendable,int,int)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addSendable(String, String, Sendable, int, int, int, int)","u":"addSendable(java.lang.String,java.lang.String,edu.wpi.first.util.sendable.Sendable,int,int,int,int)"},{"p":"common.utility.tester","c":"Tester","l":"addTest(String, Tester.SystemsTest)","u":"addTest(java.lang.String,common.utility.tester.Tester.SystemsTest)"},{"p":"common.utility.tester","c":"Tester","l":"addTest(String, Tester.Test)","u":"addTest(java.lang.String,common.utility.tester.Tester.Test)"},{"p":"common.utility.tester","c":"Tester.Test","l":"addTest(Tester.SystemsTest)","u":"addTest(common.utility.tester.Tester.SystemsTest)"},{"p":"common.utility.tester","c":"Tester.Test","l":"addTest(Tester.Test)","u":"addTest(common.utility.tester.Tester.Test)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"addUpdate(String, Supplier)","u":"addUpdate(java.lang.String,java.util.function.Supplier)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"addVideoStream(String, String, String, String, int, int, int, int)","u":"addVideoStream(java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,int,int,int)"},{"p":"common.core.swerve","c":"SwerveBase","l":"addVisionMeasurement(Pose2d, double)","u":"addVisionMeasurement(edu.wpi.first.math.geometry.Pose2d,double)"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"angleConfig"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"appliedOutput"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"AREA"},{"p":"common.core.controllers","c":"ControllerBase","l":"atSetpoint()"},{"p":"common.core.controllers","c":"TrapController","l":"atSetpoint()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"atSetpoint()"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"beta(int)"},{"p":"common.hardware.limelight","c":"LEDMode","l":"BLINK"},{"p":"common.hardware.limelight","c":"Pipeline","l":"BLUE"},{"p":"common.hardware.limelight","c":"StreamMode","l":"BOTH"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"BRAKE"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"burnFlash()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"burnFlashAll()"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculate(double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculate(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculate(double, double)","u":"calculate(double,double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculate(TrapezoidProfile.State, double)","u":"calculate(edu.wpi.first.math.trajectory.TrapezoidProfile.State,double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"calculateDistToGroundTarget(double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"calculateDistToTopTarget(double)"},{"p":"common.core.controllers","c":"Controller","l":"calculateFF(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculateFF(double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculateFF(double)"},{"p":"common.core.controllers","c":"Controller","l":"calculatePID(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"calculatePID(double)"},{"p":"common.core.controllers","c":"TrapController","l":"calculatePID(double)"},{"p":"common.hardware.camera","c":"Camera","l":"camera"},{"p":"common.hardware.camera","c":"Camera","l":"Camera(String, double, double, double, double, double)","u":"%3Cinit%3E(java.lang.String,double,double,double,double,double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"cameraAngle"},{"p":"common.hardware.limelight","c":"Limelight","l":"cameraHeight"},{"p":"common.hardware.camera","c":"Camera","l":"cameras"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"CAN_SPARK_FLEX"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"CAN_SPARK_MAX"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"canSparkMaxTimeout"},{"p":"common.core.swerve","c":"SwerveBase","l":"chassisVelocityCorrection"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"checkState(String, Supplier)","u":"checkState(java.lang.String,java.util.function.Supplier)"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"clear()"},{"p":"common.core.controllers","c":"ControllerBase","l":"close()"},{"p":"common.core.misc","c":"NAR_Robot","l":"close()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"close()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"close()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"close()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"close()"},{"p":"common.utility.sysid","c":"CmdSysId","l":"CmdSysId(String, Consumer, Supplier, Supplier, double, boolean, Subsystem...)","u":"%3Cinit%3E(java.lang.String,java.util.function.Consumer,java.util.function.Supplier,java.util.function.Supplier,double,boolean,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.utility.sysid","c":"CmdSysId","l":"CmdSysId(String, Consumer, Supplier, Supplier, double, double, double, boolean, Subsystem...)","u":"%3Cinit%3E(java.lang.String,java.util.function.Consumer,java.util.function.Supplier,java.util.function.Supplier,double,double,double,boolean,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"COAST"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"command"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"compareTo(PolynomialRegression)","u":"compareTo(common.utility.sysid.PolynomialRegression)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"configAllSettings(TalonSRXConfiguration)","u":"configAllSettings(com.ctre.phoenix.motorcontrol.can.TalonSRXConfiguration)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"configMotor(NAR_Motor.MotorConfig)","u":"configMotor(common.hardware.motorcontroller.NAR_Motor.MotorConfig)"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"configMotors()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"configMotors()"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"configMotors()"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"configMotors()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"configPID(PIDFFConfig)","u":"configPID(common.core.controllers.PIDFFConfig)"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"controller"},{"p":"common.core.controllers","c":"ControllerBase","l":"controller"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"controller"},{"p":"common.core.controllers","c":"Controller","l":"Controller(PIDFFConfig, Controller.Type)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,common.core.controllers.Controller.Type)"},{"p":"common.core.controllers","c":"Controller","l":"Controller(PIDFFConfig, Controller.Type, double)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,common.core.controllers.Controller.Type,double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"ControllerBase(PIDFFConfig, double)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,double)"},{"p":"common.core.swerve","c":"CTREModuleState","l":"CTREModuleState()","u":"%3Cinit%3E()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"currentLimit"},{"p":"common.utility.tester","c":"CurrentTest","l":"CurrentTest(String, NAR_Motor, double, double, double, BooleanSupplier, Subsystem...)","u":"%3Cinit%3E(java.lang.String,common.hardware.motorcontroller.NAR_Motor,double,double,double,java.util.function.BooleanSupplier,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.utility.tester","c":"CurrentTest","l":"CurrentTest(String, NAR_Motor, double, double, double, double, double, Subsystem...)","u":"%3Cinit%3E(java.lang.String,common.hardware.motorcontroller.NAR_Motor,double,double,double,double,double,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.utility.tester","c":"CurrentTest","l":"CurrentTest(String, NAR_Motor, double, double, double, double, Subsystem...)","u":"%3Cinit%3E(java.lang.String,common.hardware.motorcontroller.NAR_Motor,double,double,double,double,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"debug"},{"p":"common.utility","c":"Log","l":"debug(String, String)","u":"debug(java.lang.String,java.lang.String)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"debug(String, String, double, int, int)","u":"debug(java.lang.String,java.lang.String,double,int,int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"DEFAULT"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"degree()"},{"p":"common.core.swerve","c":"SwerveConversions","l":"degreesToRotations(double, double)","u":"degreesToRotations(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"disable()"},{"p":"common.hardware.camera","c":"Camera","l":"disable()"},{"p":"common.hardware.camera","c":"Camera","l":"disableAll()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"DISCONNECTED"},{"p":"common.hardware.camera","c":"Camera","l":"distance"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"distanceFactor"},{"p":"common.core.swerve","c":"SwerveBase","l":"drive(ChassisSpeeds)","u":"drive(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"common.core.swerve","c":"SwerveBase","l":"drive(Translation2d, double, boolean)","u":"drive(edu.wpi.first.math.geometry.Translation2d,double,boolean)"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"driveConfig"},{"p":"common.hardware.limelight","c":"StreamMode","l":"DRIVER_CAMERA"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"ElevatorTemplate(ControllerBase, NAR_Motor...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"enable()"},{"p":"common.hardware.camera","c":"Camera","l":"enable()"},{"p":"common.hardware.camera","c":"Camera","l":"enableAll()"},{"p":"common.core.controllers","c":"ControllerBase","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.core.controllers","c":"TrapController","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"enableContinuousInput(double, double)","u":"enableContinuousInput(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"enabled"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"enableVoltageCompensation(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"enableVoltageCompensation(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"enableVoltageCompensation(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"enableVoltageCompensation(double)"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"encoder"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"encoderConfig"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"encoderOffset"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"end(boolean)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"end(boolean)"},{"p":"common.utility.sysid","c":"CmdSysId","l":"end(boolean)"},{"p":"common.utility.tester","c":"CurrentTest","l":"end(boolean)"},{"p":"common.utility.tester","c":"PlateauTest","l":"end(boolean)"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"end(boolean)"},{"p":"common.utility.tester","c":"Tester.Test","l":"end(boolean)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"end(boolean)"},{"p":"common.core.misc","c":"NAR_Robot","l":"endCompetition()"},{"p":"common.hardware.camera","c":"Camera","l":"estimatedPose"},{"p":"common.utility.sysid","c":"PolynomialDerivative","l":"evaluate(double)"},{"p":"common.utility.sysid","c":"PolynomialDerivative","l":"evaluate(List)","u":"evaluate(java.util.List)"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"execute()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"execute()"},{"p":"common.utility.sysid","c":"CmdSysId","l":"execute()"},{"p":"common.utility.tester","c":"CurrentTest","l":"execute()"},{"p":"common.utility.tester","c":"PlateauTest","l":"execute()"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"execute()"},{"p":"common.utility.tester","c":"Tester.Test","l":"execute()"},{"p":"common.utility.tester","c":"ThresholdTest","l":"execute()"},{"p":"common.utility.tester","c":"Tester.TestState","l":"FAILED"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"FALCON_ENCODER_RESOLUTION"},{"p":"common.utility","c":"Log","l":"fatal(String, String)","u":"fatal(java.lang.String,java.lang.String)"},{"p":"common.utility","c":"Log","l":"fatalException(String, String, Exception)","u":"fatalException(java.lang.String,java.lang.String,java.lang.Exception)"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"FFCharacterization(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"common.core.swerve","c":"SwerveBase","l":"fieldRelative"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"FITTED_LONG"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"FITTED_SHORT"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"follow(IMotorController)","u":"follow(com.ctre.phoenix.motorcontrol.IMotorController)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"follow(NAR_CANSpark, boolean)","u":"follow(common.hardware.motorcontroller.NAR_CANSpark,boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"follow(NAR_Motor)","u":"follow(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"follow(NAR_Motor)","u":"follow(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"follow(NAR_Motor)","u":"follow(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"FOLLOWER"},{"p":"common.hardware.limelight","c":"Limelight","l":"frontDistance"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"FULLMATCH"},{"p":"common.core.swerve","c":"SwerveModule","l":"getAbsoluteAngle()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getAllFaults()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getAngleMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getAppliedOutput()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getAppliedOutput()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getAppliedOutput()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getAppliedOutput()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getBoolean(String, String)","u":"getBoolean(java.lang.String,java.lang.String)"},{"p":"common.hardware.input","c":"NAR_ButtonBoard","l":"getButton(int)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getButton(int)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getButton(NAR_XboxController.XboxButton)","u":"getButton(common.hardware.input.NAR_XboxController.XboxButton)"},{"p":"common.core.controllers","c":"ControllerBase","l":"getController()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"getController()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"getCurrent()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getD()"},{"p":"common.hardware.camera","c":"Camera","l":"getDistance(PhotonTrackedTarget)","u":"getDistance(org.photonvision.targeting.PhotonTrackedTarget)"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getDouble(String, String)","u":"getDouble(java.lang.String,java.lang.String)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getDownPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getDownPOVButton()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getDriveMotor()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getEntry(String, String)","u":"getEntry(java.lang.String,java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getFault(CANSparkBase.FaultID)","u":"getFault(com.revrobotics.CANSparkBase.FaultID)"},{"p":"common.core.swerve","c":"SwerveBase","l":"getFieldVelocity()"},{"p":"common.hardware.camera","c":"Camera","l":"getGyroAngle()"},{"p":"common.hardware.camera","c":"Camera","l":"getGyroPose(PhotonPipelineResult)","u":"getGyroPose(org.photonvision.targeting.PhotonPipelineResult)"},{"p":"common.core.swerve","c":"SwerveBase","l":"getGyroRotation2d()"},{"p":"common.hardware.camera","c":"Camera","l":"getGyroStablilization(Optional, PhotonTrackedTarget)","u":"getGyroStablilization(java.util.Optional,org.photonvision.targeting.PhotonTrackedTarget)"},{"p":"common.core.swerve","c":"SwerveBase","l":"getHeading()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getI()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"getInstance()"},{"p":"common.utility.tester","c":"Tester","l":"getInstance()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkA()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"getkA()"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"getKey()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkG()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkS()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"getkS()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getkV()"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"getkV()"},{"p":"common.hardware.limelight","c":"LEDMode","l":"getLEDMode()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getLeftPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getLeftPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getLeftX()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getLeftY()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getLong(String, String)","u":"getLong(java.lang.String,java.lang.String)"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"getMeasurement()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"getMeasurement()"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"getMeasurement()"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"getMeasurement()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getModulePosition()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getModules()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getMotor()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getNumFailedConfigs()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getNumFailedConfigs()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getP()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getPeriod()"},{"p":"common.hardware.limelight","c":"Pipeline","l":"getPipeline()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getPitch()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getPose()"},{"p":"common.hardware.camera","c":"Camera","l":"getPose(PhotonPipelineResult)","u":"getPose(org.photonvision.targeting.PhotonPipelineResult)"},{"p":"common.hardware.camera","c":"Camera","l":"getPoseAmbiguity(PhotonTrackedTarget)","u":"getPoseAmbiguity(org.photonvision.targeting.PhotonTrackedTarget)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getPosition()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getPositions()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getPOVButton(int)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getPOVButton(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getRawPosition()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getRawVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getRawVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getRawVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getRawVelocity()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getRightPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getRightPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getRightX()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getRightY()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getRobotVelocity()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getRoll()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getRotation2d()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getRunningState()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"getSelectedAuto()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getSelectedAutoName()"},{"p":"common.hardware.limelight","c":"Limelight","l":"getSelectedPipeline()"},{"p":"common.core.controllers","c":"ControllerBase","l":"getSetpoint()"},{"p":"common.core.controllers","c":"TrapController","l":"getSetpoint()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"getSetpoint()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getStallCurrent()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getStallCurrent()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getStallCurrent()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getStallCurrent()"},{"p":"common.core.swerve","c":"SwerveModule","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getState()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getState()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getStates()"},{"p":"common.hardware.limelight","c":"StreamMode","l":"getStream()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"getString(String, String)","u":"getString(java.lang.String,java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"getTemperature()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getTemperature()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"getTemperature()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"getTemperature()"},{"p":"common.utility.tester","c":"Tester","l":"getTest(String)","u":"getTest(java.lang.String)"},{"p":"common.utility.tester","c":"Tester.Test","l":"getTestState()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getThrottle()"},{"p":"common.core.controllers","c":"Controller","l":"getType()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getUpPOVButton()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"getUpPOVButton()"},{"p":"common.hardware.limelight","c":"Limelight","l":"getValue(LimelightKey)","u":"getValue(common.hardware.limelight.LimelightKey)"},{"p":"common.hardware.limelight","c":"Limelight","l":"getValueAverage(LimelightKey, int)","u":"getValueAverage(common.hardware.limelight.LimelightKey,int)"},{"p":"common.core.swerve","c":"SwerveBase","l":"getVelocity()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"getVelocity()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getX()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getY()"},{"p":"common.core.swerve","c":"SwerveBase","l":"getYaw()"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"getZ()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"hasObjectPresent()"},{"p":"common.hardware.limelight","c":"Limelight","l":"hasValidTarget()"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"HIGH_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"HIGH_PRIORITY_FREQ"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"HORIZONTAL_FOV"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"HORIZONTAL_OFFSET"},{"p":"common.hardware.limelight","c":"Limelight","l":"hostname"},{"p":"common.utility.annotations","c":"AutoCommand","l":"identifier()"},{"p":"common.utility","c":"Log","l":"info(String, String)","u":"info(java.lang.String,java.lang.String)"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"initialize()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"initialize()"},{"p":"common.utility.sysid","c":"CmdSysId","l":"initialize()"},{"p":"common.utility.tester","c":"CurrentTest","l":"initialize()"},{"p":"common.utility.tester","c":"PlateauTest","l":"initialize()"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"initialize()"},{"p":"common.utility.tester","c":"Tester.Test","l":"initialize()"},{"p":"common.utility.tester","c":"ThresholdTest","l":"initialize()"},{"p":"common.core.controllers","c":"ControllerBase","l":"initSendable(SendableBuilder)","u":"initSendable(edu.wpi.first.util.sendable.SendableBuilder)"},{"p":"common.core.controllers","c":"TrapController","l":"initSendable(SendableBuilder)","u":"initSendable(edu.wpi.first.util.sendable.SendableBuilder)"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"initShuffleboard()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"initShuffleboard()"},{"p":"common.core.swerve","c":"SwerveBase","l":"initShuffleboard()"},{"p":"common.hardware.camera","c":"Camera","l":"initShuffleboard()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"initShuffleboard(String, String, int)","u":"initShuffleboard(java.lang.String,java.lang.String,int)"},{"p":"common.core.swerve","c":"SwerveBase","l":"initStateCheck()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"inputPower"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"instances"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"intake()"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"invert"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"inverted"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"isDebug()"},{"p":"common.hardware.camera","c":"Camera","l":"isDisabled"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"isEnabled()"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"isFinished()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"isFinished()"},{"p":"common.utility.sysid","c":"CmdSysId","l":"isFinished()"},{"p":"common.utility.tester","c":"CurrentTest","l":"isFinished()"},{"p":"common.utility.tester","c":"PlateauTest","l":"isFinished()"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"isFinished()"},{"p":"common.utility.tester","c":"Tester.Test","l":"isFinished()"},{"p":"common.utility.tester","c":"ThresholdTest","l":"isFinished()"},{"p":"common.hardware.camera","c":"Camera","l":"isGoodEstimate(Pose2d)","u":"isGoodEstimate(edu.wpi.first.math.geometry.Pose2d)"},{"p":"common.hardware.camera","c":"Camera","l":"isValidTarget(PhotonTrackedTarget)","u":"isValidTarget(org.photonvision.targeting.PhotonTrackedTarget)"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kA"},{"p":"common.core.controllers","c":"ControllerBase","l":"kA"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kA"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kB"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kBack"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kD"},{"p":"common.core.misc","c":"NAR_Robot","l":"kDefaultPeriod"},{"p":"common.core.controllers","c":"ControllerBase","l":"kG"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kG"},{"p":"common.core.controllers","c":"ControllerBase","l":"kG_Function"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kI"},{"p":"common.core.swerve","c":"SwerveBase","l":"kinematics"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kLeftBumper"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kLeftStick"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kLeftTrigger"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kP"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kRightBumper"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kRightStick"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kRightTrigger"},{"p":"common.core.controllers","c":"ControllerBase","l":"kS"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kS"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kStart"},{"p":"common.core.controllers","c":"ControllerBase","l":"kV"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"kV"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kX"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"kY"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"LATENCY"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"LENGTH_HORIZONTAL"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"LENGTH_VERTICAL"},{"p":"common.hardware.limelight","c":"StreamMode","l":"LIMELIGHT_CAMERA"},{"p":"common.hardware.limelight","c":"Limelight","l":"Limelight(String, double, double, double)","u":"%3Cinit%3E(java.lang.String,double,double,double)"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"LimelightConstants()","u":"%3Cinit%3E()"},{"p":"common.hardware.limelight","c":"LimelightData","l":"LimelightData()","u":"%3Cinit%3E()"},{"p":"common.hardware.limelight","c":"Limelight","l":"limelightTable"},{"p":"common.utility","c":"Log","l":"Log()","u":"%3Cinit%3E()"},{"p":"common.core.misc","c":"NAR_Robot","l":"logWithAdvantageKit"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"LOW_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"LOW_PRIORITY_FREQ"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MAG_ENCODER_RESOLUTION"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"ManipulatorTemplate(double, double, double, double, double, NAR_Motor...)","u":"%3Cinit%3E(double,double,double,double,double,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MAX_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MAX_PRIORITY_FREQ"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"maximumRetries"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"maximumRetries"},{"p":"common.core.swerve","c":"SwerveBase","l":"maxSpeed"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"maxSpeed"},{"p":"common.core.controllers","c":"ControllerBase","l":"measurement"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MEDIUM_PRIORITY"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MEDIUM_PRIORITY_FREQ"},{"p":"common.core.swerve","c":"SwerveConversions","l":"metersToRotations(double, double, double)","u":"metersToRotations(double,double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"mode"},{"p":"common.core.swerve","c":"SwerveModule","l":"moduleNumber"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"moduleNumber"},{"p":"common.core.swerve","c":"SwerveBase","l":"modules"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"motor"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"motor"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"motor"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"motorConfig"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"MotorConfig(double, double, int, boolean, NAR_Motor.Neutral)","u":"%3Cinit%3E(double,double,int,boolean,common.hardware.motorcontroller.NAR_Motor.Neutral)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"MotorControllerConstants()","u":"%3Cinit%3E()"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"motors"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"motors"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"motors"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"motors"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"moveElevator(double)"},{"p":"common.core.swerve","c":"SwerveConversions","l":"MPSToRPM(double, double, double)","u":"MPSToRPM(double,double,double)"},{"p":"common.utility.annotations","c":"NARUpdateable","l":"name()"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"name()"},{"p":"common.hardware.input","c":"NAR_ButtonBoard","l":"NAR_ButtonBoard(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType, CANSparkLowLevel.MotorType)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType,com.revrobotics.CANSparkLowLevel.MotorType)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType, CANSparkLowLevel.MotorType, NAR_CANSpark.EncoderType)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType,com.revrobotics.CANSparkLowLevel.MotorType,common.hardware.motorcontroller.NAR_CANSpark.EncoderType)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"NAR_CANSpark(int, NAR_CANSpark.ControllerType, CANSparkLowLevel.MotorType, NAR_CANSpark.EncoderType, PIDFFConfig)","u":"%3Cinit%3E(int,common.hardware.motorcontroller.NAR_CANSpark.ControllerType,com.revrobotics.CANSparkLowLevel.MotorType,common.hardware.motorcontroller.NAR_CANSpark.EncoderType,common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"NAR_Joystick(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"NAR_Motor(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"NAR_MotorIO()","u":"%3Cinit%3E()"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"NAR_PIDCommand(ControllerBase, DoubleSupplier, DoubleSupplier, DoubleConsumer, Subsystem...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleConsumer,edu.wpi.first.wpilibj2.command.Subsystem...)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"NAR_PIDSubsystem(ControllerBase)","u":"%3Cinit%3E(common.core.controllers.ControllerBase)"},{"p":"common.core.misc","c":"NAR_Robot","l":"NAR_Robot()","u":"%3Cinit%3E()"},{"p":"common.core.misc","c":"NAR_Robot","l":"NAR_Robot(double)","u":"%3Cinit%3E(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"NAR_TalonFX(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"NAR_TalonFX(int, String)","u":"%3Cinit%3E(int,java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"NAR_TalonFX(int, String, PIDFFConfig)","u":"%3Cinit%3E(int,java.lang.String,common.core.controllers.PIDFFConfig)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"NAR_TalonSRX(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"NAR_XboxController(int)","u":"%3Cinit%3E(int)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"NEO_550CurrentLimit"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"NEO_CurrentLimit"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"NO_PRIORITY"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"NONE"},{"p":"common.core.swerve","c":"SwerveBase","l":"odometry"},{"p":"common.hardware.limelight","c":"LEDMode","l":"OFF"},{"p":"common.hardware.camera","c":"Camera","l":"offset"},{"p":"common.hardware.limelight","c":"LEDMode","l":"ON"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onClose(WebSocket, int, String, boolean)","u":"onClose(org.java_websocket.WebSocket,int,java.lang.String,boolean)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onError(WebSocket, Exception)","u":"onError(org.java_websocket.WebSocket,java.lang.Exception)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onMessage(WebSocket, String)","u":"onMessage(org.java_websocket.WebSocket,java.lang.String)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onOpen(WebSocket, ClientHandshake)","u":"onOpen(org.java_websocket.WebSocket,org.java_websocket.handshake.ClientHandshake)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"onStart()"},{"p":"common.core.swerve","c":"CTREModuleState","l":"optimize(SwerveModuleState, Rotation2d)","u":"optimize(edu.wpi.first.math.kinematics.SwerveModuleState,edu.wpi.first.math.geometry.Rotation2d)"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"outtake()"},{"p":"common.hardware.camera","c":"Camera","l":"overrideThreshold"},{"p":"common.hardware.camera","c":"ParseJson","l":"ParseJson(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"PARTIALLY_RUNNING"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"passCondition"},{"p":"common.utility.tester","c":"Tester.TestState","l":"PASSED"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"PercentOutput"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"periodic()"},{"p":"common.core.swerve","c":"SwerveBase","l":"periodic()"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"pidffConfig"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig()","u":"%3Cinit%3E()"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig(double, double, double)","u":"%3Cinit%3E(double,double,double)"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig(double, double, double, double, double, double)","u":"%3Cinit%3E(double,double,double,double,double,double)"},{"p":"common.core.controllers","c":"PIDFFConfig","l":"PIDFFConfig(double, double, double, double, double, double, double)","u":"%3Cinit%3E(double,double,double,double,double,double,double)"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"PIPELINE"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"PivotTemplate(ControllerBase, NAR_Motor...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"pivotTo(double)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, DoubleSupplier, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.DoubleSupplier,double)"},{"p":"common.utility.tester","c":"PlateauTest","l":"PlateauTest(String, Command, double, DoubleSupplier, double, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.DoubleSupplier,double,double)"},{"p":"common.utility.sysid","c":"PolynomialDerivative","l":"PolynomialDerivative(PolynomialRegression)","u":"%3Cinit%3E(common.utility.sysid.PolynomialRegression)"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"PolynomialRegression(double[], double[], int)","u":"%3Cinit%3E(double[],double[],int)"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"PolynomialRegression(double[], double[], int, String)","u":"%3Cinit%3E(double[],double[],int,java.lang.String)"},{"p":"common.core.swerve","c":"SwerveBase","l":"PoseLog(Pose2d)","u":"PoseLog(edu.wpi.first.math.geometry.Pose2d)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"position"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"Position"},{"p":"common.core.controllers","c":"Controller.Type","l":"POSITION"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"POSITION"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"predict(double)"},{"p":"common.utility.sysid","c":"FFCharacterization","l":"print()"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"R2()"},{"p":"common.utility","c":"Log","l":"recoverable(String, String)","u":"recoverable(java.lang.String,java.lang.String)"},{"p":"common.hardware.limelight","c":"Pipeline","l":"RED"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"Relative"},{"p":"common.core.controllers","c":"ControllerBase","l":"reset()"},{"p":"common.core.controllers","c":"TrapController","l":"reset()"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"reset(double)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"reset(double)"},{"p":"common.core.swerve","c":"SwerveBase","l":"resetAll()"},{"p":"common.core.swerve","c":"SwerveBase","l":"resetEncoders()"},{"p":"common.core.swerve","c":"SwerveBase","l":"resetOdometry(Pose2d)","u":"resetOdometry(edu.wpi.first.math.geometry.Pose2d)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"resetPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"resetRawPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"resetRawPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"resetRawPosition(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"resetRawPosition(double)"},{"p":"common.core.swerve","c":"SwerveModule","l":"resetToAbsolute()"},{"p":"common.hardware.camera","c":"ParseJson","l":"returnHashMap()"},{"p":"common.core.swerve","c":"SwerveConversions","l":"rotationsToDegrees(double, double)","u":"rotationsToDegrees(double,double)"},{"p":"common.core.swerve","c":"SwerveConversions","l":"rotationsToMeters(double, double, double)","u":"rotationsToMeters(double,double,double)"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"RPM_TO_FALCON"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"RPM_TO_TALONSRX"},{"p":"common.core.swerve","c":"SwerveConversions","l":"RPMToMPS(double, double, double)","u":"RPMToMPS(double,double,double)"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"runElevator(double)"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"runManipulator(double)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"RUNNING"},{"p":"common.utility.tester","c":"Tester.TestState","l":"RUNNING"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"runPivot(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"runShooter(double)"},{"p":"common.utility.tester","c":"Tester","l":"runTest(String)","u":"runTest(java.lang.String)"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"SCREEN_HEIGHT"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"SCREEN_WIDTH"},{"p":"common.hardware.camera","c":"Camera","l":"seesTag()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"sendMessage(String)","u":"sendMessage(java.lang.String)"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"SESSION"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"set(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"set(double, NAR_Motor.Control)","u":"set(double,common.hardware.motorcontroller.NAR_Motor.Control)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"set(double, NAR_Motor.Control, double)","u":"set(double,common.hardware.motorcontroller.NAR_Motor.Control,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setBrakeMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setBrakeMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setBrakeMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setBrakeMode()"},{"p":"common.core.swerve","c":"SwerveBase","l":"setBrakeMode(boolean)"},{"p":"common.core.swerve","c":"SwerveModule","l":"setBrakeMode(boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setCoastMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setCoastMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setCoastMode()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setCoastMode()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setConstraints(double, double)","u":"setConstraints(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setCurrentLimit(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setCurrentLimit(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setCurrentLimit(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setCurrentLimit(int)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setD(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setDefaultStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setDefaultStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setDefaultStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setDefaultStatusFrames()"},{"p":"common.core.swerve","c":"SwerveModule","l":"setDesiredState(SwerveModuleState)","u":"setDesiredState(edu.wpi.first.math.kinematics.SwerveModuleState)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setFollowerStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setFollowerStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setFollowerStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setFollowerStatusFrames()"},{"p":"common.core.controllers","c":"ControllerBase","l":"setI(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setInverted(boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setInverted(boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setInverted(boolean)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setInverted(boolean)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkA(DoubleSupplier)","u":"setkA(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkG_Function(DoubleSupplier)","u":"setkG_Function(java.util.function.DoubleSupplier)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setkG_Function(DoubleSupplier)","u":"setkG_Function(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkG(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkG(DoubleSupplier)","u":"setkG(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkS(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkS(DoubleSupplier)","u":"setkS(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkV(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setkV(DoubleSupplier)","u":"setkV(java.util.function.DoubleSupplier)"},{"p":"common.hardware.limelight","c":"Limelight","l":"setLEDMode(LEDMode)","u":"setLEDMode(common.hardware.limelight.LEDMode)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setLeftXDeadband(double)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setLeftYDeadband(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setMeasurementSource(DoubleSupplier)","u":"setMeasurementSource(java.util.function.DoubleSupplier)"},{"p":"common.core.controllers","c":"Controller","l":"setMeasurementSource(NAR_Motor)","u":"setMeasurementSource(common.hardware.motorcontroller.NAR_Motor)"},{"p":"common.core.swerve","c":"SwerveBase","l":"setModuleStates(SwerveModuleState[])","u":"setModuleStates(edu.wpi.first.math.kinematics.SwerveModuleState[])"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setNeutralMode(NAR_Motor.Neutral)","u":"setNeutralMode(common.hardware.motorcontroller.NAR_Motor.Neutral)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setP(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setPercentOutput(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPeriodicFramePeriod(CANSparkLowLevel.PeriodicFrame, int)","u":"setPeriodicFramePeriod(com.revrobotics.CANSparkLowLevel.PeriodicFrame,int)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setPID(double, double, double)","u":"setPID(double,double,double)"},{"p":"common.hardware.limelight","c":"Limelight","l":"setPipeline(Pipeline)","u":"setPipeline(common.hardware.limelight.Pipeline)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setpoint"},{"p":"common.core.commands","c":"NAR_PIDCommand","l":"setpointSource"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem.SetpointTest","l":"SetpointTest(String, double, double, double)","u":"%3Cinit%3E(java.lang.String,double,double,double)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard","l":"setPort(int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setPositionStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setPositionStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setPositionStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setPositionStatusFrames()"},{"p":"common.core.subsystems","c":"ManipulatorTemplate","l":"setPower(double)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"setPower(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"setPower(double)"},{"p":"common.hardware.camera","c":"Camera","l":"setResources(DoubleSupplier, BiConsumer, AprilTagFieldLayout, Supplier)","u":"setResources(java.util.function.DoubleSupplier,java.util.function.BiConsumer,edu.wpi.first.apriltag.AprilTagFieldLayout,java.util.function.Supplier)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setRightXDeadband(double)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"setRightYDeadband(double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setSafetyThresh(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setSetpoint(double)"},{"p":"common.core.controllers","c":"TrapController","l":"setSetpoint(double)"},{"p":"common.core.controllers","c":"TrapController","l":"setSetpoint(TrapezoidProfile.State)","u":"setSetpoint(edu.wpi.first.math.trajectory.TrapezoidProfile.State)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setStatusFramePeriod(StatusFrameEnhanced, int)","u":"setStatusFramePeriod(com.ctre.phoenix.motorcontrol.StatusFrameEnhanced,int)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setStatusFrames(NAR_CANSpark.SparkMaxConfig)","u":"setStatusFrames(common.hardware.motorcontroller.NAR_CANSpark.SparkMaxConfig)"},{"p":"common.hardware.limelight","c":"Limelight","l":"setStreamMode(StreamMode)","u":"setStreamMode(common.hardware.limelight.StreamMode)"},{"p":"common.hardware.camera","c":"Camera","l":"setThresholds(double, double)","u":"setThresholds(double,double)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setThrottleBounds(double, double)","u":"setThrottleBounds(double,double)"},{"p":"common.utility.tester","c":"Tester.Test","l":"setTimeBetweenTests(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setTimeConversionFactor(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setTolerance(double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setTolerance(double)"},{"p":"common.core.controllers","c":"ControllerBase","l":"setTolerance(double, double)","u":"setTolerance(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setUnitConversionFactor(double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"setUpdateTime(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"common.core.controllers","c":"TrapController","l":"setVelocitySource(DoubleSupplier)","u":"setVelocitySource(java.util.function.DoubleSupplier)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark","l":"setVelocityStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setVelocityStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonFX","l":"setVelocityStatusFrames()"},{"p":"common.hardware.motorcontroller","c":"NAR_TalonSRX","l":"setVelocityStatusFrames()"},{"p":"common.core.swerve","c":"SwerveBase","l":"setVoltage(double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"setVolts(double)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setXDeadband(double)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setYDeadband(double)"},{"p":"common.hardware.input","c":"NAR_Joystick","l":"setZDeadband(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"shoot(double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"ShooterTemplate(ControllerBase, NAR_Motor...)","u":"%3Cinit%3E(common.core.controllers.ControllerBase,common.hardware.motorcontroller.NAR_Motor...)"},{"p":"common.core.controllers","c":"TrapController","l":"shouldLog"},{"p":"common.core.swerve","c":"SwerveModule","l":"shouldOptimizeCAN"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"SKEW"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"SPARKMAX_ENCODER_RESOLUTION"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"SPARKMAX_RPM_TO_NUpS"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"stallCurrent"},{"p":"common.core.misc","c":"NAR_Robot","l":"startCompetition()"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"startPID(double)"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"startVibrate()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status0"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status1"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status2"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status3"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status4"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status5"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"status6"},{"p":"common.core.swerve","c":"SwerveBase","l":"stop()"},{"p":"common.core.swerve","c":"SwerveModule","l":"stop()"},{"p":"common.hardware.input","c":"NAR_XboxController","l":"stopVibrate()"},{"p":"common.core.swerve","c":"SwerveBase","l":"SwerveBase(SwerveDriveKinematics, Matrix, Matrix, SwerveModuleConfig...)","u":"%3Cinit%3E(edu.wpi.first.math.kinematics.SwerveDriveKinematics,edu.wpi.first.math.Matrix,edu.wpi.first.math.Matrix,common.core.swerve.SwerveModuleConfig...)"},{"p":"common.core.swerve","c":"SwerveConversions","l":"SwerveConversions()","u":"%3Cinit%3E()"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveEncoderConfig","l":"SwerveEncoderConfig(CANcoder, double, boolean)","u":"%3Cinit%3E(com.ctre.phoenix6.hardware.CANcoder,double,boolean)"},{"p":"common.core.swerve","c":"SwerveModule","l":"SwerveModule(SwerveModuleConfig)","u":"%3Cinit%3E(common.core.swerve.SwerveModuleConfig)"},{"p":"common.core.swerve","c":"SwerveModuleConfig","l":"SwerveModuleConfig(int, SwerveModuleConfig.SwerveMotorConfig, SwerveModuleConfig.SwerveMotorConfig, SwerveModuleConfig.SwerveEncoderConfig, double)","u":"%3Cinit%3E(int,common.core.swerve.SwerveModuleConfig.SwerveMotorConfig,common.core.swerve.SwerveModuleConfig.SwerveMotorConfig,common.core.swerve.SwerveModuleConfig.SwerveEncoderConfig,double)"},{"p":"common.core.swerve","c":"SwerveModuleConfig.SwerveMotorConfig","l":"SwerveMotorConfig(NAR_Motor, NAR_Motor.MotorConfig, PIDFFConfig)","u":"%3Cinit%3E(common.hardware.motorcontroller.NAR_Motor,common.hardware.motorcontroller.NAR_Motor.MotorConfig,common.core.controllers.PIDFFConfig)"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"SystemsTest(String, Command)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command)"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"SystemsTest(String, Command, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.BooleanSupplier)"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"tab()"},{"p":"common.hardware.motorcontroller","c":"MotorControllerConstants","l":"TALONSRX_ENCODER_RESOLUTION"},{"p":"common.hardware.limelight","c":"Limelight","l":"targetWidth"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"testName"},{"p":"common.utility.tester","c":"ThresholdTest","l":"testName"},{"p":"common.utility.tester","c":"Tester.SystemsTest","l":"testState"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, double, double, BooleanSupplier)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,double,double,java.util.function.BooleanSupplier)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, DoubleSupplier, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.DoubleSupplier,double)"},{"p":"common.utility.tester","c":"ThresholdTest","l":"ThresholdTest(String, Command, DoubleSupplier, double, double)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.wpilibj2.command.Command,java.util.function.DoubleSupplier,double,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"timeConversionFactor"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.MotorConfig","l":"timeFactor"},{"p":"common.core.swerve","c":"SwerveBase","l":"toggle()"},{"p":"common.hardware.limelight","c":"LimelightData","l":"toString()"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"toString()"},{"p":"common.utility.sysid","c":"PolynomialRegression","l":"toString()"},{"p":"common.core.controllers","c":"TrapController","l":"TrapController(PIDFFConfig, TrapezoidProfile.Constraints)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,edu.wpi.first.math.trajectory.TrapezoidProfile.Constraints)"},{"p":"common.core.controllers","c":"TrapController","l":"TrapController(PIDFFConfig, TrapezoidProfile.Constraints, double)","u":"%3Cinit%3E(common.core.controllers.PIDFFConfig,edu.wpi.first.math.trajectory.TrapezoidProfile.Constraints,double)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"unitConversionFactor"},{"p":"common.utility","c":"Log","l":"unusual(String, String)","u":"unusual(java.lang.String,java.lang.String)"},{"p":"common.hardware.camera","c":"Camera","l":"update()"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"update()"},{"p":"common.hardware.camera","c":"Camera","l":"updateAll()"},{"p":"common.hardware.camera","c":"Camera","l":"updateCounter"},{"p":"common.hardware.camera","c":"Camera","l":"updatedPose"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor","l":"updateIO(NAR_MotorIOAutoLogged)","u":"updateIO(common.hardware.motorcontroller.NAR_MotorIOAutoLogged)"},{"p":"common.core.controllers","c":"ControllerBase","l":"useOutput()"},{"p":"common.core.subsystems","c":"ElevatorTemplate","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.core.subsystems","c":"NAR_PIDSubsystem","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.core.subsystems","c":"PivotTemplate","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.core.subsystems","c":"ShooterTemplate","l":"useOutput(double, double)","u":"useOutput(double,double)"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"VALID_TARGET"},{"p":"common.hardware.camera","c":"Camera","l":"validDist"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"VALUE_KEYS"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"VALUE_KEYS_PNP"},{"p":"common.core.controllers","c":"Controller.Type","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"LEDMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"Pipeline","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.limelight","c":"StreamMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.utility.tester","c":"Tester.TestState","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"common.core.controllers","c":"Controller.Type","l":"values()"},{"p":"common.core.misc","c":"NAR_Robot.LoggingState","l":"values()"},{"p":"common.hardware.input","c":"NAR_XboxController.XboxButton","l":"values()"},{"p":"common.hardware.limelight","c":"LEDMode","l":"values()"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"values()"},{"p":"common.hardware.limelight","c":"Pipeline","l":"values()"},{"p":"common.hardware.limelight","c":"StreamMode","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.ControllerType","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.EncoderType","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Neutral","l":"values()"},{"p":"common.utility.narwhaldashboard","c":"NarwhalDashboard.State","l":"values()"},{"p":"common.utility.tester","c":"Tester.TestState","l":"values()"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.NAR_MotorIO","l":"velocity"},{"p":"common.hardware.motorcontroller","c":"NAR_Motor.Control","l":"Velocity"},{"p":"common.core.controllers","c":"Controller.Type","l":"VELOCITY"},{"p":"common.hardware.motorcontroller","c":"NAR_CANSpark.SparkMaxConfig","l":"VELOCITY"},{"p":"common.hardware.limelight","c":"LimelightConstants","l":"VERTICAL_FOV"},{"p":"common.hardware.limelight","c":"LimelightKey","l":"VERTICAL_OFFSET"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"WINDOW_HEIGHT"},{"p":"common.utility.shuffleboard","c":"NAR_Shuffleboard","l":"WINDOW_WIDTH"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"x()"},{"p":"common.core.swerve","c":"SwerveBase","l":"xlock()"},{"p":"common.core.swerve","c":"SwerveModule","l":"xLock(Rotation2d)","u":"xLock(edu.wpi.first.math.geometry.Rotation2d)"},{"p":"common.utility.annotations","c":"ShuffleboardData","l":"y()"},{"p":"common.core.swerve","c":"SwerveBase","l":"zeroGyro(double)"}];updateSearchResults();
\ No newline at end of file
diff --git a/doc/overview-tree.html b/doc/overview-tree.html
index 416d9fe..c588e95 100644
--- a/doc/overview-tree.html
+++ b/doc/overview-tree.html
@@ -143,7 +143,6 @@ Class Hierarchy
edu.wpi.first.wpilibj.IterativeRobotBase
diff --git a/doc/type-search-index.js b/doc/type-search-index.js
index 2b91c91..f4242f3 100644
--- a/doc/type-search-index.js
+++ b/doc/type-search-index.js
@@ -1 +1 @@
-typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"common.utility.annotations","l":"AutoCommand"},{"p":"common.hardware.camera","l":"Camera"},{"p":"common.utility.sysid","l":"CmdSysId"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.Control"},{"p":"common.core.controllers","l":"Controller"},{"p":"common.core.controllers","l":"ControllerBase"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark.ControllerType"},{"p":"common.core.swerve","l":"CTREModuleState"},{"p":"common.utility.tester","l":"CurrentTest"},{"p":"common.core.subsystems","l":"ElevatorTemplate"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark.EncoderType"},{"p":"common.utility.sysid","l":"FFCharacterization"},{"p":"common.hardware.limelight","l":"LEDMode"},{"p":"common.hardware.limelight","l":"Limelight"},{"p":"common.hardware.limelight","l":"LimelightConstants"},{"p":"common.hardware.limelight","l":"LimelightData"},{"p":"common.hardware.limelight","l":"LimelightKey"},{"p":"common.utility","l":"Log"},{"p":"common.core.misc","l":"NAR_Robot.LoggingState"},{"p":"common.core.subsystems","l":"ManipulatorTemplate"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.MotorConfig"},{"p":"common.hardware.motorcontroller","l":"MotorControllerConstants"},{"p":"common.hardware.input","l":"NAR_ButtonBoard"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark"},{"p":"common.hardware.input","l":"NAR_Joystick"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.NAR_MotorIO"},{"p":"common.core.commands","l":"NAR_PIDCommand"},{"p":"common.core.subsystems","l":"NAR_PIDSubsystem"},{"p":"common.core.misc","l":"NAR_Robot"},{"p":"common.core.misc","l":"NAR_Robot2"},{"p":"common.utility.shuffleboard","l":"NAR_Shuffleboard"},{"p":"common.hardware.motorcontroller","l":"NAR_TalonFX"},{"p":"common.hardware.motorcontroller","l":"NAR_TalonSRX"},{"p":"common.hardware.input","l":"NAR_XboxController"},{"p":"common.utility.annotations","l":"NARUpdateable"},{"p":"common.utility.narwhaldashboard","l":"NarwhalDashboard"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.Neutral"},{"p":"common.hardware.camera","l":"ParseJson"},{"p":"common.core.controllers","l":"PIDFFConfig"},{"p":"common.hardware.limelight","l":"Pipeline"},{"p":"common.core.subsystems","l":"PivotTemplate"},{"p":"common.utility.tester","l":"PlateauTest"},{"p":"common.utility.sysid","l":"PolynomialDerivative"},{"p":"common.utility.sysid","l":"PolynomialRegression"},{"p":"common.core.subsystems","l":"NAR_PIDSubsystem.SetpointTest"},{"p":"common.core.subsystems","l":"ShooterTemplate"},{"p":"common.utility.annotations","l":"ShuffleboardData"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark.SparkMaxConfig"},{"p":"common.utility.narwhaldashboard","l":"NarwhalDashboard.State"},{"p":"common.hardware.limelight","l":"StreamMode"},{"p":"common.core.swerve","l":"SwerveBase"},{"p":"common.core.swerve","l":"SwerveConversions"},{"p":"common.core.swerve","l":"SwerveModuleConfig.SwerveEncoderConfig"},{"p":"common.core.swerve","l":"SwerveModule"},{"p":"common.core.swerve","l":"SwerveModuleConfig"},{"p":"common.core.swerve","l":"SwerveModuleConfig.SwerveMotorConfig"},{"p":"common.utility.tester","l":"Tester.SystemsTest"},{"p":"common.utility.tester","l":"Tester.Test"},{"p":"common.utility.tester","l":"Tester"},{"p":"common.utility.tester","l":"Tester.TestState"},{"p":"common.utility.tester","l":"ThresholdTest"},{"p":"common.core.controllers","l":"TrapController"},{"p":"common.core.controllers","l":"Controller.Type"},{"p":"common.hardware.input","l":"NAR_XboxController.XboxButton"}];updateSearchResults();
\ No newline at end of file
+typeSearchIndex = [{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"common.utility.annotations","l":"AutoCommand"},{"p":"common.hardware.camera","l":"Camera"},{"p":"common.utility.sysid","l":"CmdSysId"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.Control"},{"p":"common.core.controllers","l":"Controller"},{"p":"common.core.controllers","l":"ControllerBase"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark.ControllerType"},{"p":"common.core.swerve","l":"CTREModuleState"},{"p":"common.utility.tester","l":"CurrentTest"},{"p":"common.core.subsystems","l":"ElevatorTemplate"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark.EncoderType"},{"p":"common.utility.sysid","l":"FFCharacterization"},{"p":"common.hardware.limelight","l":"LEDMode"},{"p":"common.hardware.limelight","l":"Limelight"},{"p":"common.hardware.limelight","l":"LimelightConstants"},{"p":"common.hardware.limelight","l":"LimelightData"},{"p":"common.hardware.limelight","l":"LimelightKey"},{"p":"common.utility","l":"Log"},{"p":"common.core.misc","l":"NAR_Robot.LoggingState"},{"p":"common.core.subsystems","l":"ManipulatorTemplate"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.MotorConfig"},{"p":"common.hardware.motorcontroller","l":"MotorControllerConstants"},{"p":"common.hardware.input","l":"NAR_ButtonBoard"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark"},{"p":"common.hardware.input","l":"NAR_Joystick"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.NAR_MotorIO"},{"p":"common.core.commands","l":"NAR_PIDCommand"},{"p":"common.core.subsystems","l":"NAR_PIDSubsystem"},{"p":"common.core.misc","l":"NAR_Robot"},{"p":"common.utility.shuffleboard","l":"NAR_Shuffleboard"},{"p":"common.hardware.motorcontroller","l":"NAR_TalonFX"},{"p":"common.hardware.motorcontroller","l":"NAR_TalonSRX"},{"p":"common.hardware.input","l":"NAR_XboxController"},{"p":"common.utility.annotations","l":"NARUpdateable"},{"p":"common.utility.narwhaldashboard","l":"NarwhalDashboard"},{"p":"common.hardware.motorcontroller","l":"NAR_Motor.Neutral"},{"p":"common.hardware.camera","l":"ParseJson"},{"p":"common.core.controllers","l":"PIDFFConfig"},{"p":"common.hardware.limelight","l":"Pipeline"},{"p":"common.core.subsystems","l":"PivotTemplate"},{"p":"common.utility.tester","l":"PlateauTest"},{"p":"common.utility.sysid","l":"PolynomialDerivative"},{"p":"common.utility.sysid","l":"PolynomialRegression"},{"p":"common.core.subsystems","l":"NAR_PIDSubsystem.SetpointTest"},{"p":"common.core.subsystems","l":"ShooterTemplate"},{"p":"common.utility.annotations","l":"ShuffleboardData"},{"p":"common.hardware.motorcontroller","l":"NAR_CANSpark.SparkMaxConfig"},{"p":"common.utility.narwhaldashboard","l":"NarwhalDashboard.State"},{"p":"common.hardware.limelight","l":"StreamMode"},{"p":"common.core.swerve","l":"SwerveBase"},{"p":"common.core.swerve","l":"SwerveConversions"},{"p":"common.core.swerve","l":"SwerveModuleConfig.SwerveEncoderConfig"},{"p":"common.core.swerve","l":"SwerveModule"},{"p":"common.core.swerve","l":"SwerveModuleConfig"},{"p":"common.core.swerve","l":"SwerveModuleConfig.SwerveMotorConfig"},{"p":"common.utility.tester","l":"Tester.SystemsTest"},{"p":"common.utility.tester","l":"Tester.Test"},{"p":"common.utility.tester","l":"Tester"},{"p":"common.utility.tester","l":"Tester.TestState"},{"p":"common.utility.tester","l":"ThresholdTest"},{"p":"common.core.controllers","l":"TrapController"},{"p":"common.core.controllers","l":"Controller.Type"},{"p":"common.hardware.input","l":"NAR_XboxController.XboxButton"}];updateSearchResults();
\ No newline at end of file
diff --git a/gradle.properties b/gradle.properties
index 64176ee..727e5cc 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,4 +1,4 @@
-LibraryVersion=1.8.2
+LibraryVersion=1.8.3
archivesGroup = com.github.Team3128
archivesBaseName = 3128-common
jsonFileName = 3128-common.json
diff --git a/src/main/resources/overview.html b/src/main/resources/overview.html
index 7507b9b..c2717ca 100644
--- a/src/main/resources/overview.html
+++ b/src/main/resources/overview.html
@@ -8,5 +8,5 @@
FRC Team 3128 Robot Control Program Utility Library
Provides utility classes and functions for FRC robot control programs.
-Version 1.8.2 (September 23 2024)
+Version 1.8.3 (October 4 2024)
\ No newline at end of file