From ff3f1e3763f08c9af427b71f0462587eca0a5567 Mon Sep 17 00:00:00 2001 From: BrownGenius <49494444+BrownGenius@users.noreply.github.com> Date: Fri, 8 Mar 2024 19:57:51 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20javadoc=20from=20@=20DevilBotz?= =?UTF-8?q?2876/Crescendo2024@fc537551e749293565f29ee46606b8248714ccc8=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- javadoc/constant-values.html | 10 +-- javadoc/frc/robot/subsystems/arm/Arm.html | 18 +++++ .../robot/subsystems/arm/ArmSubsystem.html | 26 +++++++ .../frc/robot/subsystems/climber/Climber.html | 54 +++++++++++++ .../subsystems/climber/ClimberIOStub.html | 4 +- .../subsystems/climber/ClimberSubsystem.html | 78 +++++++++++++++++++ .../frc/robot/subsystems/intake/Intake.html | 17 +++- .../subsystems/intake/IntakeSubsystem.html | 23 ++++-- .../frc/robot/subsystems/vision/Vision.html | 24 +++++- .../subsystems/vision/VisionSubsystem.html | 32 +++++++- javadoc/index-all.html | 44 +++++++++++ javadoc/member-search-index.js | 2 +- 12 files changed, 309 insertions(+), 23 deletions(-) diff --git a/javadoc/constant-values.html b/javadoc/constant-values.html index 1afed502..9d8669c5 100644 --- a/javadoc/constant-values.html +++ b/javadoc/constant-values.html @@ -66,10 +66,10 @@

frc.robot.*

Value
public static final String
BUILD_DATE
-
"2024-03-06 20:20:54 EST"
+
"2024-03-08 14:57:43 EST"
public static final long
BUILD_UNIX_TIME
-
1709774454485L
+
1709927863760L
public static final int
DIRTY
0
@@ -78,13 +78,13 @@

frc.robot.*

"main"
public static final String
GIT_DATE
-
"2024-03-06 20:20:10 EST"
+
"2024-03-08 14:56:55 EST"
public static final int
GIT_REVISION
-
64
+
65
public static final String
GIT_SHA
-
"f20d42b0410d4c77d69a71f757e105b073807e0b"
+
"fc537551e749293565f29ee46606b8248714ccc8"
public static final String
MAVEN_GROUP
""
diff --git a/javadoc/frc/robot/subsystems/arm/Arm.html b/javadoc/frc/robot/subsystems/arm/Arm.html index f08c6db5..2ed8cac5 100644 --- a/javadoc/frc/robot/subsystems/arm/Arm.html +++ b/javadoc/frc/robot/subsystems/arm/Arm.html @@ -108,6 +108,12 @@

Method Summary

default boolean
isAbsoluteEncoderConnected()
 
+
default boolean
+
isAtMaxLimit()
+
 
+
default boolean
+
isAtMinLimit()
+
 
default void
setAngle(double degrees)
 
@@ -167,6 +173,18 @@

getConstraints

default edu.wpi.first.math.trajectory.TrapezoidProfile.Constraints getConstraints()
+
  • +
    +

    isAtMaxLimit

    +
    default boolean isAtMaxLimit()
    +
    +
  • +
  • +
    +

    isAtMinLimit

    +
    default boolean isAtMinLimit()
    +
    +
  • diff --git a/javadoc/frc/robot/subsystems/arm/ArmSubsystem.html b/javadoc/frc/robot/subsystems/arm/ArmSubsystem.html index abc19d07..3e048973 100644 --- a/javadoc/frc/robot/subsystems/arm/ArmSubsystem.html +++ b/javadoc/frc/robot/subsystems/arm/ArmSubsystem.html @@ -123,6 +123,12 @@

    Method Summary

    boolean
    isAbsoluteEncoderConnected()
     
    +
    boolean
    +
    isAtMaxLimit()
    +
     
    +
    boolean
    +
    isAtMinLimit()
    +
     
    void
    periodic()
     
    @@ -281,6 +287,26 @@

    periodic

    +
  • +
    +

    isAtMaxLimit

    +
    public boolean isAtMaxLimit()
    +
    +
    Specified by:
    +
    isAtMaxLimit in interface Arm
    +
    +
    +
  • +
  • +
    +

    isAtMinLimit

    +
    public boolean isAtMinLimit()
    +
    +
    Specified by:
    +
    isAtMinLimit in interface Arm
    +
    +
    +
  • diff --git a/javadoc/frc/robot/subsystems/climber/Climber.html b/javadoc/frc/robot/subsystems/climber/Climber.html index 86fe2074..37d4985d 100644 --- a/javadoc/frc/robot/subsystems/climber/Climber.html +++ b/javadoc/frc/robot/subsystems/climber/Climber.html @@ -102,6 +102,24 @@

    Method Summary

    Extends climber arms min limit
    +
    default double
    +
    getCurrentPositionLeft()
    +
     
    +
    default double
    +
    getCurrentPositionRight()
    +
     
    +
    default boolean
    +
    isAtMaxLimitLeft()
    +
     
    +
    default boolean
    +
    isAtMaxLimitRight()
    +
     
    +
    default boolean
    +
    isAtMinLimitLeft()
    +
     
    +
    default boolean
    +
    isAtMinLimitRight()
    +
     
    boolean
    isExtending()
     
    @@ -192,6 +210,42 @@

    isExtending

    boolean isExtending()
    +
  • +
    +

    getCurrentPositionLeft

    +
    default double getCurrentPositionLeft()
    +
    +
  • +
  • +
    +

    getCurrentPositionRight

    +
    default double getCurrentPositionRight()
    +
    +
  • +
  • +
    +

    isAtMaxLimitLeft

    +
    default boolean isAtMaxLimitLeft()
    +
    +
  • +
  • +
    +

    isAtMinLimitLeft

    +
    default boolean isAtMinLimitLeft()
    +
    +
  • +
  • +
    +

    isAtMaxLimitRight

    +
    default boolean isAtMaxLimitRight()
    +
    +
  • +
  • +
    +

    isAtMinLimitRight

    +
    default boolean isAtMinLimitRight()
    +
    +
  • diff --git a/javadoc/frc/robot/subsystems/climber/ClimberIOStub.html b/javadoc/frc/robot/subsystems/climber/ClimberIOStub.html index d873a937..4885a7d1 100644 --- a/javadoc/frc/robot/subsystems/climber/ClimberIOStub.html +++ b/javadoc/frc/robot/subsystems/climber/ClimberIOStub.html @@ -119,7 +119,7 @@

    Method Summary

    Method
    Description
    void
    -
    setPosition(double posiiton)
    +
    setPosition(double position)
     
    void
    setVoltage(double volts)
    @@ -181,7 +181,7 @@

    setVoltage

  • setPosition

    -
    public void setPosition(double posiiton)
    +
    public void setPosition(double position)
    Specified by:
    setPosition in interface ClimberIO
    diff --git a/javadoc/frc/robot/subsystems/climber/ClimberSubsystem.html b/javadoc/frc/robot/subsystems/climber/ClimberSubsystem.html index 7cf230dd..2290b409 100644 --- a/javadoc/frc/robot/subsystems/climber/ClimberSubsystem.html +++ b/javadoc/frc/robot/subsystems/climber/ClimberSubsystem.html @@ -123,6 +123,24 @@

    Method Summary

    Extends climber arms min limit
    +
    double
    + +
     
    +
    double
    + +
     
    +
    boolean
    + +
     
    +
    boolean
    + +
     
    +
    boolean
    + +
     
    +
    boolean
    + +
     
    boolean
     
    @@ -286,6 +304,66 @@

    enableLimits

  • +
  • +
    +

    getCurrentPositionLeft

    +
    public double getCurrentPositionLeft()
    +
    +
    Specified by:
    +
    getCurrentPositionLeft in interface Climber
    +
    +
    +
  • +
  • +
    +

    getCurrentPositionRight

    +
    public double getCurrentPositionRight()
    +
    +
    Specified by:
    +
    getCurrentPositionRight in interface Climber
    +
    +
    +
  • +
  • +
    +

    isAtMaxLimitLeft

    +
    public boolean isAtMaxLimitLeft()
    +
    +
    Specified by:
    +
    isAtMaxLimitLeft in interface Climber
    +
    +
    +
  • +
  • +
    +

    isAtMinLimitLeft

    +
    public boolean isAtMinLimitLeft()
    +
    +
    Specified by:
    +
    isAtMinLimitLeft in interface Climber
    +
    +
    +
  • +
  • +
    +

    isAtMaxLimitRight

    +
    public boolean isAtMaxLimitRight()
    +
    +
    Specified by:
    +
    isAtMaxLimitRight in interface Climber
    +
    +
    +
  • +
  • +
    +

    isAtMinLimitRight

    +
    public boolean isAtMinLimitRight()
    +
    +
    Specified by:
    +
    isAtMinLimitRight in interface Climber
    +
    +
    +
  • diff --git a/javadoc/frc/robot/subsystems/intake/Intake.html b/javadoc/frc/robot/subsystems/intake/Intake.html index 4b136535..e5abd3a2 100644 --- a/javadoc/frc/robot/subsystems/intake/Intake.html +++ b/javadoc/frc/robot/subsystems/intake/Intake.html @@ -91,12 +91,15 @@

    Method Summary

    Modifier and Type
    Method
    Description
    -
    default boolean
    -
    isPieceDetected()
    +
    default double
    +
    getCurrentVoltage()
     
    -
    default void
    -
    runVoltage(double volts)
    +
    default boolean
    +
    isPieceDetected()
     
    +
    default void
    +
    runVoltage(double volts)
    +
     
    @@ -123,6 +126,12 @@

    runVoltage

    default void runVoltage(double volts)
    +
  • +
    +

    getCurrentVoltage

    +
    default double getCurrentVoltage()
    +
    +
  • diff --git a/javadoc/frc/robot/subsystems/intake/IntakeSubsystem.html b/javadoc/frc/robot/subsystems/intake/IntakeSubsystem.html index c0caa96f..20d66a0c 100644 --- a/javadoc/frc/robot/subsystems/intake/IntakeSubsystem.html +++ b/javadoc/frc/robot/subsystems/intake/IntakeSubsystem.html @@ -111,15 +111,18 @@

    Method Summary

    Modifier and Type
    Method
    Description
    -
    boolean
    -
    isPieceDetected()
    +
    double
    +
    getCurrentVoltage()
     
    -
    void
    -
    periodic()
    +
    boolean
    +
    isPieceDetected()
     
    void
    -
    runVoltage(double volts)
    +
    periodic()
     
    +
    void
    +
    runVoltage(double volts)
    +
     
    @@ -187,6 +190,16 @@

    isPieceDetected

    +
  • +
    +

    getCurrentVoltage

    +
    public double getCurrentVoltage()
    +
    +
    Specified by:
    +
    getCurrentVoltage in interface Intake
    +
    +
    +
  • diff --git a/javadoc/frc/robot/subsystems/vision/Vision.html b/javadoc/frc/robot/subsystems/vision/Vision.html index 65285060..8b10300c 100644 --- a/javadoc/frc/robot/subsystems/vision/Vision.html +++ b/javadoc/frc/robot/subsystems/vision/Vision.html @@ -110,11 +110,17 @@

    Method Summary

    enableSimulation(Supplier<edu.wpi.first.math.geometry.Pose2d> poseSupplier, boolean enableWireFrame)
     
    -
    Optional<Double>
    -
    getDistanceToAprilTag(int id)
    -
    +
    Optional<Integer>
    +
    getBestTargetId()
    +
     
    +
    Optional<Double>
    +
    getDistanceToAprilTag(int id)
    +
    Returns the distance to the specified april tag in meters (relative to the primary camera)
    +
    Optional<Double>
    +
    getDistanceToBestTarget()
    +
     
    List<Vision.VisionPose>
    getEstimatedRobotPoses()
    @@ -155,6 +161,18 @@

    setPrimaryCamera

  • +
    +

    getBestTargetId

    +
    Optional<Integer> getBestTargetId()
    +
    +
  • +
  • +
    +

    getDistanceToBestTarget

    +
    Optional<Double> getDistanceToBestTarget()
    +
    +
  • +
  • getYawToBestTarget

    Optional<Double> getYawToBestTarget()
    diff --git a/javadoc/frc/robot/subsystems/vision/VisionSubsystem.html b/javadoc/frc/robot/subsystems/vision/VisionSubsystem.html index 53a5415c..268f4e3b 100644 --- a/javadoc/frc/robot/subsystems/vision/VisionSubsystem.html +++ b/javadoc/frc/robot/subsystems/vision/VisionSubsystem.html @@ -125,11 +125,17 @@

    Method Summary

    enableSimulation(Supplier<edu.wpi.first.math.geometry.Pose2d> poseSupplier, boolean enableWireFrame)
     
    - - -
    + + +
     
    + + +
    Returns the distance to the specified april tag in meters (relative to the primary camera)
    + + +
     
    @@ -228,6 +234,16 @@

    getDistanceToAprilTag

  • +
    +

    getBestTargetId

    +
    public Optional<Integer> getBestTargetId()
    +
    +
    Specified by:
    +
    getBestTargetId in interface Vision
    +
    +
    +
  • +
  • getYawToBestTarget

    public Optional<Double> getYawToBestTarget()
    @@ -242,6 +258,16 @@

    getYawToBestTarget

  • +
    +

    getDistanceToBestTarget

    +
    public Optional<Double> getDistanceToBestTarget()
    +
    +
    Specified by:
    +
    getDistanceToBestTarget in interface Vision
    +
    +
    +
  • +
  • getYawToAprilTag

    public Optional<Double> getYawToAprilTag(int id)
    diff --git a/javadoc/index-all.html b/javadoc/index-all.html index 00b3cea3..e117cafd 100644 --- a/javadoc/index-all.html +++ b/javadoc/index-all.html @@ -450,20 +450,40 @@

    G

     
    getAutonomousCommand() - Method in class frc.robot.RobotContainer
     
    +
    getBestTargetId() - Method in interface frc.robot.subsystems.vision.Vision
    +
     
    +
    getBestTargetId() - Method in class frc.robot.subsystems.vision.VisionSubsystem
    +
     
    getConstraints() - Method in interface frc.robot.subsystems.arm.Arm
     
    getConstraints() - Method in class frc.robot.subsystems.arm.ArmSubsystem
     
    +
    getCurrentPositionLeft() - Method in interface frc.robot.subsystems.climber.Climber
    +
     
    +
    getCurrentPositionLeft() - Method in class frc.robot.subsystems.climber.ClimberSubsystem
    +
     
    +
    getCurrentPositionRight() - Method in interface frc.robot.subsystems.climber.Climber
    +
     
    +
    getCurrentPositionRight() - Method in class frc.robot.subsystems.climber.ClimberSubsystem
    +
     
    getCurrentSpeed() - Method in interface frc.robot.subsystems.shooter.Shooter
     
    getCurrentSpeed() - Method in class frc.robot.subsystems.shooter.ShooterSubsystem
     
    +
    getCurrentVoltage() - Method in interface frc.robot.subsystems.intake.Intake
    +
     
    +
    getCurrentVoltage() - Method in class frc.robot.subsystems.intake.IntakeSubsystem
    +
     
    getDistanceToAprilTag(int) - Method in interface frc.robot.subsystems.vision.Vision
    Returns the distance to the specified april tag in meters (relative to the primary camera)
    getDistanceToAprilTag(int) - Method in class frc.robot.subsystems.vision.VisionSubsystem
     
    +
    getDistanceToBestTarget() - Method in interface frc.robot.subsystems.vision.Vision
    +
     
    +
    getDistanceToBestTarget() - Method in class frc.robot.subsystems.vision.VisionSubsystem
    +
     
    getEstimatedRobotPoses() - Method in interface frc.robot.subsystems.vision.Vision
    Returns a list of vision-based estimated robot poses
    @@ -639,6 +659,30 @@

    I

     
    isAmpMode() - Static method in class frc.robot.util.RobotState
     
    +
    isAtMaxLimit() - Method in interface frc.robot.subsystems.arm.Arm
    +
     
    +
    isAtMaxLimit() - Method in class frc.robot.subsystems.arm.ArmSubsystem
    +
     
    +
    isAtMaxLimitLeft() - Method in interface frc.robot.subsystems.climber.Climber
    +
     
    +
    isAtMaxLimitLeft() - Method in class frc.robot.subsystems.climber.ClimberSubsystem
    +
     
    +
    isAtMaxLimitRight() - Method in interface frc.robot.subsystems.climber.Climber
    +
     
    +
    isAtMaxLimitRight() - Method in class frc.robot.subsystems.climber.ClimberSubsystem
    +
     
    +
    isAtMinLimit() - Method in interface frc.robot.subsystems.arm.Arm
    +
     
    +
    isAtMinLimit() - Method in class frc.robot.subsystems.arm.ArmSubsystem
    +
     
    +
    isAtMinLimitLeft() - Method in interface frc.robot.subsystems.climber.Climber
    +
     
    +
    isAtMinLimitLeft() - Method in class frc.robot.subsystems.climber.ClimberSubsystem
    +
     
    +
    isAtMinLimitRight() - Method in interface frc.robot.subsystems.climber.Climber
    +
     
    +
    isAtMinLimitRight() - Method in class frc.robot.subsystems.climber.ClimberSubsystem
    +
     
    isExtending() - Method in interface frc.robot.subsystems.climber.Climber
     
    isExtending() - Method in class frc.robot.subsystems.climber.ClimberSubsystem
    diff --git a/javadoc/member-search-index.js b/javadoc/member-search-index.js index d11c1d59..181b8fe5 100644 --- a/javadoc/member-search-index.js +++ b/javadoc/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absoluteEncoderConnected"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"absoluteEncoderInversion"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absolutePositionDegree"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"absolutePositionOffset"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absolutePositionRad"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absolutePositionRaw"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"AlignToTarget(Drive, Vision)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,frc.robot.subsystems.vision.Vision)"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"AlignToTarget(Drive, Vision, IntSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,frc.robot.subsystems.vision.Vision,java.util.function.IntSupplier)"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"AMP"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ampScoreAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ampScoreVelocityInRPMs"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"anglePidKd"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"anglePidKi"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"anglePidKp"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"arcadeDrive(double, double)","u":"arcadeDrive(double,double)"},{"p":"frc.robot.config","c":"RobotConfig","l":"arm"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"armAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ArmConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"ArmIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"ArmIOSparkMax(int)","u":"%3Cinit%3E(int)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"ArmIOSparkMax(int, boolean)","u":"%3Cinit%3E(int,boolean)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"ArmIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"ArmSubsystem(ArmIO)","u":"%3Cinit%3E(frc.robot.subsystems.arm.ArmIO)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"ArmToPosition(Arm, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.arm","c":"ArmToPositionTP","l":"ArmToPositionTP(DoubleSupplier, Arm)","u":"%3Cinit%3E(java.util.function.DoubleSupplier,frc.robot.subsystems.arm.Arm)"},{"p":"frc.robot.config","c":"RobotConfig","l":"autoChooser"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"AutoConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands","l":"AutoNamedCommands()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"Robot","l":"autonomousExit()"},{"p":"frc.robot","c":"Robot","l":"autonomousInit()"},{"p":"frc.robot","c":"Robot","l":"autonomousPeriodic()"},{"p":"frc.robot.commands.auto","c":"AutoPrepareForScore","l":"AutoPrepareForScore(Arm, Shooter, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.auto","c":"AutoScore","l":"AutoScore(Drive, Arm, Intake, Shooter, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,frc.robot.subsystems.arm.Arm,frc.robot.subsystems.intake.Intake,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"AutoScoreConstants(double, double, double)","u":"%3Cinit%3E(double,double,double)"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroExtendTimeInSeconds"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroMaxCurrent"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroMaxRetractTimeInSeconds"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroMinVelocity"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"autoZeroMode(boolean)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"autoZeroMode(boolean)"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroOffset"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroVoltage"},{"p":"frc.robot","c":"BuildConstants","l":"BUILD_DATE"},{"p":"frc.robot","c":"BuildConstants","l":"BUILD_UNIX_TIME"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"cameraName"},{"p":"frc.robot.config","c":"RobotConfig","l":"climber"},{"p":"frc.robot.commands.climber","c":"ClimberCommand","l":"ClimberCommand(Climber, boolean)","u":"%3Cinit%3E(frc.robot.subsystems.climber.Climber,boolean)"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"ClimberConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"ClimberIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"ClimberIOSparkMax(int, boolean)","u":"%3Cinit%3E(int,boolean)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"ClimberIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"ClimberSubsystem(ClimberIO, ClimberIO)","u":"%3Cinit%3E(frc.robot.subsystems.climber.ClimberIO,frc.robot.subsystems.climber.ClimberIO)"},{"p":"frc.robot.commands.climber","c":"ClimberToPosition","l":"ClimberToPosition(Climber, boolean)","u":"%3Cinit%3E(frc.robot.subsystems.climber.Climber,boolean)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands","l":"configure()"},{"p":"frc.robot","c":"Constants","l":"Constants()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"RobotContainer","l":"controller"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"current"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"current"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"current"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"current"},{"p":"frc.robot","c":"Constants","l":"debugCommands"},{"p":"frc.robot.controls","c":"DebugControls","l":"DebugControls()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"Constants","l":"debugMode"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot","c":"BuildConstants","l":"DIRTY"},{"p":"frc.robot","c":"Robot","l":"disabledExit()"},{"p":"frc.robot","c":"Robot","l":"disabledInit()"},{"p":"frc.robot","c":"Robot","l":"disabledPeriodic()"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"doubleFormat"},{"p":"frc.robot.config","c":"RobotConfig","l":"drive"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"DriveBase()","u":"%3Cinit%3E()"},{"p":"frc.robot.commands.drive","c":"DriveCommand","l":"DriveCommand(DriveBase, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.DriveBase,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.drive","c":"DriveCommand","l":"DriveCommand(DriveBase, DoubleSupplier, DoubleSupplier, DoubleSupplier, Supplier>)","u":"%3Cinit%3E(frc.robot.subsystems.drive.DriveBase,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.Supplier)"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"DriveConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.controls","c":"DriverControls","l":"DriverControls()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"DriveSwerveYAGSL(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"DriveToYaw(Drive, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"DriveTrain()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ejectAngleInDegrees"},{"p":"frc.robot.commands.assist","c":"EjectPiece","l":"EjectPiece(Intake, Arm)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,frc.robot.subsystems.arm.Arm)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"enableLimits(boolean)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"enableLimits(boolean)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"enableSimulation(Supplier, boolean)","u":"enableSimulation(java.util.function.Supplier,boolean)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"enableSimulation(Supplier, boolean)","u":"enableSimulation(java.util.function.Supplier,boolean)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"end(boolean)"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"end(boolean)"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"end(boolean)"},{"p":"frc.robot.commands.debug","c":"TestShooterAngle","l":"end(boolean)"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"end(boolean)"},{"p":"frc.robot.commands.intake","c":"IntakeOut","l":"end(boolean)"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"end(boolean)"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"end(boolean)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"execute()"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"execute()"},{"p":"frc.robot.commands.debug","c":"TestShooterAngle","l":"execute()"},{"p":"frc.robot.commands.drive","c":"DriveCommand","l":"execute()"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"execute()"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"execute()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"extend()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"extend()"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"feedSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKa"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKa"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKaBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKg"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKs"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKs"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKsBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKv"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKv"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKvBottom"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"FIELD"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"get()"},{"p":"frc.robot.util","c":"RobotState","l":"getActiveTargetId()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"getAngle()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"getAngle()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getAngle()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getAngle()"},{"p":"frc.robot.config","c":"RobotConfig","l":"getArmAngleFromDistance(double)"},{"p":"frc.robot.config","c":"RobotConfigInferno","l":"getArmAngleFromDistance(double)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"getAsDouble()"},{"p":"frc.robot","c":"RobotContainer","l":"getAutonomousCommand()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"getConstraints()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"getConstraints()"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"getCurrentSpeed()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"getCurrentSpeed()"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getDistanceToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getDistanceToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getEstimatedRobotPoses()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getEstimatedRobotPoses()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getLeftFollower()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getLeftMaster()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getPose()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getPose()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getRightFollower()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getRightMaster()"},{"p":"frc.robot.util","c":"RobotState","l":"getShooterVelocity()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"getState()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"getState()"},{"p":"frc.robot.util","c":"RobotState","l":"getTargetMode()"},{"p":"frc.robot.util","c":"RobotState","l":"getTargetName(int)"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"getVoltage()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"getVoltage()"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getYawToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getYawToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getYawToBestTarget()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getYawToBestTarget()"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_BRANCH"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_DATE"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_REVISION"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_SHA"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"hasChanged(int)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"ifChanged(int, Consumer, LoggedTunableNumber...)","u":"ifChanged(int,java.util.function.Consumer,frc.robot.util.LoggedTunableNumber...)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"ifChanged(int, Runnable, LoggedTunableNumber...)","u":"ifChanged(int,java.lang.Runnable,frc.robot.util.LoggedTunableNumber...)"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"IndexPiece(Intake)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake)"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"IndexPiece(Intake, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"indexSpeedInVolts"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"initDefault(double)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"initialize()"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"initialize()"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"initialize()"},{"p":"frc.robot.commands.climber","c":"ClimberCommand","l":"initialize()"},{"p":"frc.robot.commands.climber","c":"ClimberToPosition","l":"initialize()"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"initialize()"},{"p":"frc.robot.commands.intake","c":"IntakeOut","l":"initialize()"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"initialize()"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"initialize()"},{"p":"frc.robot.config","c":"RobotConfig","l":"instance"},{"p":"frc.robot.config","c":"RobotConfig","l":"intake"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"intakeAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"IntakeConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"IntakeIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOSparkMax","l":"IntakeIOSparkMax()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOStub","l":"IntakeIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"IntakeIOTalonSRX(int)","u":"%3Cinit%3E(int)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"IntakeIOTalonSRX(int, boolean)","u":"%3Cinit%3E(int,boolean)"},{"p":"frc.robot.commands.intake","c":"IntakeOut","l":"IntakeOut(Intake)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake)"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"IntakeSubsystem(IntakeIO)","u":"%3Cinit%3E(frc.robot.subsystems.intake.IntakeIO)"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.util","c":"RobotState","l":"isAmpMode()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"isExtending()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"isExtending()"},{"p":"frc.robot.util","c":"RobotState","l":"isFieldOriented()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"isFieldOrientedDrive()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"isFieldOrientedDrive()"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"isFinished()"},{"p":"frc.robot.commands.arm","c":"ArmToPositionTP","l":"isFinished()"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"isFinished()"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"isFinished()"},{"p":"frc.robot.commands.climber","c":"ClimberCommand","l":"isFinished()"},{"p":"frc.robot.commands.climber","c":"ClimberToPosition","l":"isFinished()"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"isFinished()"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"isFinished()"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"isFinished()"},{"p":"frc.robot.subsystems.intake","c":"Intake","l":"isPieceDetected()"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"isPieceDetected()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"limitHigh"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"limitLow"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"limitSwitchIntake"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkD"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkFF"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkI"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkIz"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkMaxOutput"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkMinOutput"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkP"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lmaxRPS"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"lockPose()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"lockPose()"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"LoggedTunableNumber(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"LoggedTunableNumber(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"frc.robot","c":"Main","l":"main(String...)","u":"main(java.lang.String...)"},{"p":"frc.robot","c":"BuildConstants","l":"MAVEN_GROUP"},{"p":"frc.robot","c":"BuildConstants","l":"MAVEN_NAME"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"maxAcceleration"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"maxAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"maxAngularVelocityRadiansSec"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"maxPositionInRadians"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"maxVelocity"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"maxVelocityInRPMs"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"maxVelocityMetersPerSec"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"minAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"minPositionInRadians"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"periodic()"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"periodic()"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidAngleErrorInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"pidAngleErrorInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidKd"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKd"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKdBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidKi"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKi"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKiBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidKp"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKp"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKpBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidMaxOutput"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidMinOutput"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidSettlingTimeInMilliseconds"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidSettlingTimeInMilliseconds"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidTimeoutInSeconds"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidVelocityErrorInRPMS"},{"p":"frc.robot.controls","c":"PitControls","l":"PitControls()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"positionRad"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"positionRadians"},{"p":"frc.robot.commands.assist","c":"PrepareForIntake","l":"PrepareForIntake(Arm, Intake)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.intake.Intake)"},{"p":"frc.robot.commands.assist","c":"PrepareForIntake","l":"PrepareForIntake(Arm, Intake, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.intake.Intake,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.assist","c":"PrepareForScore","l":"PrepareForScore(Arm, Shooter, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"relativePositionRotations"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"resetEncoders()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"resetOdometry()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"resetOdometry()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"resetPosition()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"resetPosition()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"resetRelativeEncoder(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"resetRelativeEncoder(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"retract()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"retract()"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"ROBOT"},{"p":"frc.robot","c":"Robot","l":"Robot()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"RobotContainer","l":"robotConfig"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean, boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean, boolean, boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfigInferno","l":"RobotConfigInferno()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfigPhoenix","l":"RobotConfigPhoenix()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfigSherman","l":"RobotConfigSherman()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfigStub","l":"RobotConfigStub()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"RobotContainer","l":"RobotContainer()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"Robot","l":"robotInit()"},{"p":"frc.robot","c":"Robot","l":"robotPeriodic()"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"robotPose"},{"p":"frc.robot.util","c":"RobotState","l":"RobotState()","u":"%3Cinit%3E()"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"robotYawInDegrees"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"runVelocity(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"runVelocity(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"Intake","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"runVoltageLeft(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"runVoltageLeft(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"runVoltageRight(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"runVoltageRight(double)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromNoteAmpSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromNoteCenterSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromNoteSourceSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromOutsideSourceSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromSpeakerAmpSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromSpeakerCenterSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromSpeakerSourceSide"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"ScorePiece(Intake, Shooter)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,frc.robot.subsystems.shooter.Shooter)"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"ScorePiece(Intake, Shooter, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"setAngle(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"setAngle(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setBrakeMode(boolean)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setBrakeMode(boolean)"},{"p":"frc.robot.util","c":"RobotState","l":"setDriveMode(RobotState.DriveMode)","u":"setDriveMode(frc.robot.util.RobotState.DriveMode)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setFeedback(double, double, double, double, double)","u":"setFeedback(double,double,double,double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setFeedback(double, double, double, double, double)","u":"setFeedback(double,double,double,double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"setFeedback(double, double, double, double, double)","u":"setFeedback(double,double,double,double,double)"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"setFieldOrientedDrive(boolean)"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"setFieldOrientedDrive(boolean)"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"setPoseToMatchField()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"setPoseToMatchField()"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO","l":"setPosition(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"setPosition(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"setPosition(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"setPrimaryCamera(String)","u":"setPrimaryCamera(java.lang.String)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"setPrimaryCamera(String)","u":"setPrimaryCamera(java.lang.String)"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"SetShooterVelocity(Shooter, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"setState(TrapezoidProfile.State)","u":"setState(edu.wpi.first.math.trajectory.TrapezoidProfile.State)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"setState(TrapezoidProfile.State)","u":"setState(edu.wpi.first.math.trajectory.TrapezoidProfile.State)"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"setTalonMode(NeutralMode)","u":"setTalonMode(com.ctre.phoenix.motorcontrol.NeutralMode)"},{"p":"frc.robot.util","c":"RobotState","l":"setTargetMode(RobotState.TargetMode)","u":"setTargetMode(frc.robot.util.RobotState.TargetMode)"},{"p":"frc.robot.controls","c":"DebugControls","l":"setupControls()"},{"p":"frc.robot.controls","c":"PitControls","l":"setupControls()"},{"p":"frc.robot.controls","c":"DriverControls","l":"setupControls(CommandXboxController)","u":"setupControls(edu.wpi.first.wpilibj2.command.button.CommandXboxController)"},{"p":"frc.robot.controls","c":"DriverControls","l":"setupGUI()"},{"p":"frc.robot.controls","c":"SysIdControls","l":"setupGUI()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOStub","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"setVoltage(double)"},{"p":"frc.robot.config","c":"RobotConfig","l":"shooter"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"SHOOTER_BOTTOM"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"SHOOTER_TOP"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ShooterConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"ShooterIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"ShooterIOSparkMax(int)","u":"%3Cinit%3E(int)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"ShooterIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"ShooterIOStub(ShooterIOStub.ShooterId)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.ShooterIOStub.ShooterId)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"ShooterSubsystem(ShooterIO)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.ShooterIO)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"ShooterSubsystem(ShooterIO, ShooterIO)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.ShooterIO,frc.robot.subsystems.shooter.ShooterIO)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"shooterVelocityInRPMs"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"slewRateLimiterAngle"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"slewRateLimiterX"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"slewRateLimiterY"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"SPEAKER"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"stowIntakeAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"subwooferScoreAngleInDegrees"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"supportsHardwarePid()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"supportsHardwarePid()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"sysIdAngleMotorCommand()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"sysIdAngleMotorCommand()"},{"p":"frc.robot.controls","c":"SysIdControls","l":"SysIdControls()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"sysIdDriveMotorCommand()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"sysIdDriveMotorCommand()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"sysIdDynamic(SysIdRoutine.Direction)","u":"sysIdDynamic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"sysIdDynamic(SysIdRoutine.Direction)","u":"sysIdDynamic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"sysIdQuasistatic(SysIdRoutine.Direction)","u":"sysIdQuasistatic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"sysIdQuasistatic(SysIdRoutine.Direction)","u":"sysIdQuasistatic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot","c":"Robot","l":"teleopExit()"},{"p":"frc.robot","c":"Robot","l":"teleopInit()"},{"p":"frc.robot","c":"Robot","l":"teleopPeriodic()"},{"p":"frc.robot","c":"Robot","l":"testExit()"},{"p":"frc.robot","c":"Robot","l":"testInit()"},{"p":"frc.robot","c":"Robot","l":"testPeriodic()"},{"p":"frc.robot.commands.debug","c":"TestShooterAngle","l":"TestShooterAngle(Shooter, Intake, Arm, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.Shooter,frc.robot.subsystems.intake.Intake,frc.robot.subsystems.arm.Arm,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"timestamp"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkD"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkFF"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkI"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkIz"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkMaxOutput"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkMinOutput"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkP"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tmaxRPS"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"toString()"},{"p":"frc.robot","c":"Constants","l":"tuningMode"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"updateInputs(ArmIO.ArmIOInputs)","u":"updateInputs(frc.robot.subsystems.arm.ArmIO.ArmIOInputs)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"updateInputs(ArmIO.ArmIOInputs)","u":"updateInputs(frc.robot.subsystems.arm.ArmIO.ArmIOInputs)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"updateInputs(ArmIO.ArmIOInputs)","u":"updateInputs(frc.robot.subsystems.arm.ArmIO.ArmIOInputs)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO","l":"updateInputs(ClimberIO.ClimberIOInputs)","u":"updateInputs(frc.robot.subsystems.climber.ClimberIO.ClimberIOInputs)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"updateInputs(ClimberIO.ClimberIOInputs)","u":"updateInputs(frc.robot.subsystems.climber.ClimberIO.ClimberIOInputs)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"updateInputs(ClimberIO.ClimberIOInputs)","u":"updateInputs(frc.robot.subsystems.climber.ClimberIO.ClimberIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOSparkMax","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOStub","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"updateInputs(ShooterIO.ShooterIOInputs)","u":"updateInputs(frc.robot.subsystems.shooter.ShooterIO.ShooterIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"updateInputs(ShooterIO.ShooterIOInputs)","u":"updateInputs(frc.robot.subsystems.shooter.ShooterIO.ShooterIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"updateInputs(ShooterIO.ShooterIOInputs)","u":"updateInputs(frc.robot.subsystems.shooter.ShooterIO.ShooterIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"values()"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"values()"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"values()"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"velocityInRPMs"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"velocityRadiansPerSecond"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"velocityRadPerSec"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"velocityRadPerSec"},{"p":"frc.robot","c":"BuildConstants","l":"VERSION"},{"p":"frc.robot.config","c":"RobotConfig","l":"vision"},{"p":"frc.robot.subsystems.vision","c":"VisionCamera","l":"VisionCamera(String, Transform3d)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.math.geometry.Transform3d)"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"VisionPose()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"VisionPose(Pose2d, double, String)","u":"%3Cinit%3E(edu.wpi.first.math.geometry.Pose2d,double,java.lang.String)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"VisionSubsystem(List, AprilTagFieldLayout)","u":"%3Cinit%3E(java.util.List,edu.wpi.first.apriltag.AprilTagFieldLayout)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"voltageSafety(double)"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absoluteEncoderConnected"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"absoluteEncoderInversion"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absolutePositionDegree"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"absolutePositionOffset"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absolutePositionRad"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"absolutePositionRaw"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"AlignToTarget(Drive, Vision)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,frc.robot.subsystems.vision.Vision)"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"AlignToTarget(Drive, Vision, IntSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,frc.robot.subsystems.vision.Vision,java.util.function.IntSupplier)"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"AMP"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ampScoreAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ampScoreVelocityInRPMs"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"anglePidKd"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"anglePidKi"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"anglePidKp"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"appliedVolts"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"arcadeDrive(double, double)","u":"arcadeDrive(double,double)"},{"p":"frc.robot.config","c":"RobotConfig","l":"arm"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"armAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ArmConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"ArmIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"ArmIOSparkMax(int)","u":"%3Cinit%3E(int)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"ArmIOSparkMax(int, boolean)","u":"%3Cinit%3E(int,boolean)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"ArmIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"ArmSubsystem(ArmIO)","u":"%3Cinit%3E(frc.robot.subsystems.arm.ArmIO)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"ArmToPosition(Arm, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.arm","c":"ArmToPositionTP","l":"ArmToPositionTP(DoubleSupplier, Arm)","u":"%3Cinit%3E(java.util.function.DoubleSupplier,frc.robot.subsystems.arm.Arm)"},{"p":"frc.robot.config","c":"RobotConfig","l":"autoChooser"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"AutoConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands","l":"AutoNamedCommands()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"Robot","l":"autonomousExit()"},{"p":"frc.robot","c":"Robot","l":"autonomousInit()"},{"p":"frc.robot","c":"Robot","l":"autonomousPeriodic()"},{"p":"frc.robot.commands.auto","c":"AutoPrepareForScore","l":"AutoPrepareForScore(Arm, Shooter, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.auto","c":"AutoScore","l":"AutoScore(Drive, Arm, Intake, Shooter, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,frc.robot.subsystems.arm.Arm,frc.robot.subsystems.intake.Intake,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"AutoScoreConstants(double, double, double)","u":"%3Cinit%3E(double,double,double)"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroExtendTimeInSeconds"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroMaxCurrent"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroMaxRetractTimeInSeconds"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroMinVelocity"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"autoZeroMode(boolean)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"autoZeroMode(boolean)"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroOffset"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"autoZeroVoltage"},{"p":"frc.robot","c":"BuildConstants","l":"BUILD_DATE"},{"p":"frc.robot","c":"BuildConstants","l":"BUILD_UNIX_TIME"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"cameraName"},{"p":"frc.robot.config","c":"RobotConfig","l":"climber"},{"p":"frc.robot.commands.climber","c":"ClimberCommand","l":"ClimberCommand(Climber, boolean)","u":"%3Cinit%3E(frc.robot.subsystems.climber.Climber,boolean)"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"ClimberConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"ClimberIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"ClimberIOSparkMax(int, boolean)","u":"%3Cinit%3E(int,boolean)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"ClimberIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"ClimberSubsystem(ClimberIO, ClimberIO)","u":"%3Cinit%3E(frc.robot.subsystems.climber.ClimberIO,frc.robot.subsystems.climber.ClimberIO)"},{"p":"frc.robot.commands.climber","c":"ClimberToPosition","l":"ClimberToPosition(Climber, boolean)","u":"%3Cinit%3E(frc.robot.subsystems.climber.Climber,boolean)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands","l":"configure()"},{"p":"frc.robot","c":"Constants","l":"Constants()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"RobotContainer","l":"controller"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"current"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"current"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"current"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"current"},{"p":"frc.robot","c":"Constants","l":"debugCommands"},{"p":"frc.robot.controls","c":"DebugControls","l":"DebugControls()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"Constants","l":"debugMode"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"defaultSpeedInVolts"},{"p":"frc.robot","c":"BuildConstants","l":"DIRTY"},{"p":"frc.robot","c":"Robot","l":"disabledExit()"},{"p":"frc.robot","c":"Robot","l":"disabledInit()"},{"p":"frc.robot","c":"Robot","l":"disabledPeriodic()"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"doubleFormat"},{"p":"frc.robot.config","c":"RobotConfig","l":"drive"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"DriveBase()","u":"%3Cinit%3E()"},{"p":"frc.robot.commands.drive","c":"DriveCommand","l":"DriveCommand(DriveBase, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.DriveBase,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.drive","c":"DriveCommand","l":"DriveCommand(DriveBase, DoubleSupplier, DoubleSupplier, DoubleSupplier, Supplier>)","u":"%3Cinit%3E(frc.robot.subsystems.drive.DriveBase,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.Supplier)"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"DriveConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.controls","c":"DriverControls","l":"DriverControls()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"DriveSwerveYAGSL(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"DriveToYaw(Drive, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.drive.Drive,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"DriveTrain()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ejectAngleInDegrees"},{"p":"frc.robot.commands.assist","c":"EjectPiece","l":"EjectPiece(Intake, Arm)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,frc.robot.subsystems.arm.Arm)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"enableLimits(boolean)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"enableLimits(boolean)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"enableSimulation(Supplier, boolean)","u":"enableSimulation(java.util.function.Supplier,boolean)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"enableSimulation(Supplier, boolean)","u":"enableSimulation(java.util.function.Supplier,boolean)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"end(boolean)"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"end(boolean)"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"end(boolean)"},{"p":"frc.robot.commands.debug","c":"TestShooterAngle","l":"end(boolean)"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"end(boolean)"},{"p":"frc.robot.commands.intake","c":"IntakeOut","l":"end(boolean)"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"end(boolean)"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"end(boolean)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"execute()"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"execute()"},{"p":"frc.robot.commands.debug","c":"TestShooterAngle","l":"execute()"},{"p":"frc.robot.commands.drive","c":"DriveCommand","l":"execute()"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"execute()"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"execute()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"extend()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"extend()"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"feedSpeedInVolts"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKa"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKa"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKaBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKg"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKs"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKs"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKsBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"ffKv"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKv"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ffKvBottom"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"FIELD"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"get()"},{"p":"frc.robot.util","c":"RobotState","l":"getActiveTargetId()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"getAngle()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"getAngle()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getAngle()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getAngle()"},{"p":"frc.robot.config","c":"RobotConfig","l":"getArmAngleFromDistance(double)"},{"p":"frc.robot.config","c":"RobotConfigInferno","l":"getArmAngleFromDistance(double)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"getAsDouble()"},{"p":"frc.robot","c":"RobotContainer","l":"getAutonomousCommand()"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getBestTargetId()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getBestTargetId()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"getConstraints()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"getConstraints()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"getCurrentPositionLeft()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"getCurrentPositionLeft()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"getCurrentPositionRight()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"getCurrentPositionRight()"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"getCurrentSpeed()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"getCurrentSpeed()"},{"p":"frc.robot.subsystems.intake","c":"Intake","l":"getCurrentVoltage()"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"getCurrentVoltage()"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getDistanceToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getDistanceToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getDistanceToBestTarget()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getDistanceToBestTarget()"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getEstimatedRobotPoses()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getEstimatedRobotPoses()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getLeftFollower()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getLeftMaster()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getMaxAngularSpeed()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getMaxLinearSpeed()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"getPose()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"getPose()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getRightFollower()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"getRightMaster()"},{"p":"frc.robot.util","c":"RobotState","l":"getShooterVelocity()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"getState()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"getState()"},{"p":"frc.robot.util","c":"RobotState","l":"getTargetMode()"},{"p":"frc.robot.util","c":"RobotState","l":"getTargetName(int)"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"getVoltage()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"getVoltage()"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getYawToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getYawToAprilTag(int)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"getYawToBestTarget()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"getYawToBestTarget()"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_BRANCH"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_DATE"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_REVISION"},{"p":"frc.robot","c":"BuildConstants","l":"GIT_SHA"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"hasChanged(int)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"ifChanged(int, Consumer, LoggedTunableNumber...)","u":"ifChanged(int,java.util.function.Consumer,frc.robot.util.LoggedTunableNumber...)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"ifChanged(int, Runnable, LoggedTunableNumber...)","u":"ifChanged(int,java.lang.Runnable,frc.robot.util.LoggedTunableNumber...)"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"IndexPiece(Intake)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake)"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"IndexPiece(Intake, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"indexSpeedInVolts"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"initDefault(double)"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"initialize()"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"initialize()"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"initialize()"},{"p":"frc.robot.commands.climber","c":"ClimberCommand","l":"initialize()"},{"p":"frc.robot.commands.climber","c":"ClimberToPosition","l":"initialize()"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"initialize()"},{"p":"frc.robot.commands.intake","c":"IntakeOut","l":"initialize()"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"initialize()"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"initialize()"},{"p":"frc.robot.config","c":"RobotConfig","l":"instance"},{"p":"frc.robot.config","c":"RobotConfig","l":"intake"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"intakeAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.IntakeConstants","l":"IntakeConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"IntakeIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOSparkMax","l":"IntakeIOSparkMax()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOStub","l":"IntakeIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"IntakeIOTalonSRX(int)","u":"%3Cinit%3E(int)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"IntakeIOTalonSRX(int, boolean)","u":"%3Cinit%3E(int,boolean)"},{"p":"frc.robot.commands.intake","c":"IntakeOut","l":"IntakeOut(Intake)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake)"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"IntakeSubsystem(IntakeIO)","u":"%3Cinit%3E(frc.robot.subsystems.intake.IntakeIO)"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"isAbsoluteEncoderConnected()"},{"p":"frc.robot.util","c":"RobotState","l":"isAmpMode()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"isAtMaxLimit()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"isAtMaxLimit()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"isAtMaxLimitLeft()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"isAtMaxLimitLeft()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"isAtMaxLimitRight()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"isAtMaxLimitRight()"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"isAtMinLimit()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"isAtMinLimit()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"isAtMinLimitLeft()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"isAtMinLimitLeft()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"isAtMinLimitRight()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"isAtMinLimitRight()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"isExtending()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"isExtending()"},{"p":"frc.robot.util","c":"RobotState","l":"isFieldOriented()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"isFieldOrientedDrive()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"isFieldOrientedDrive()"},{"p":"frc.robot.commands.arm","c":"ArmToPosition","l":"isFinished()"},{"p":"frc.robot.commands.arm","c":"ArmToPositionTP","l":"isFinished()"},{"p":"frc.robot.commands.assist","c":"IndexPiece","l":"isFinished()"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"isFinished()"},{"p":"frc.robot.commands.climber","c":"ClimberCommand","l":"isFinished()"},{"p":"frc.robot.commands.climber","c":"ClimberToPosition","l":"isFinished()"},{"p":"frc.robot.commands.drive","c":"DriveToYaw","l":"isFinished()"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"isFinished()"},{"p":"frc.robot.commands.vision","c":"AlignToTarget","l":"isFinished()"},{"p":"frc.robot.subsystems.intake","c":"Intake","l":"isPieceDetected()"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"isPieceDetected()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"limitHigh"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"limitLow"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"limitSwitchIntake"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkD"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkFF"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkI"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkIz"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkMaxOutput"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkMinOutput"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lkP"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"lmaxRPS"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"lockPose()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"lockPose()"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"LoggedTunableNumber(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"frc.robot.util","c":"LoggedTunableNumber","l":"LoggedTunableNumber(String, double)","u":"%3Cinit%3E(java.lang.String,double)"},{"p":"frc.robot","c":"Main","l":"main(String...)","u":"main(java.lang.String...)"},{"p":"frc.robot","c":"BuildConstants","l":"MAVEN_GROUP"},{"p":"frc.robot","c":"BuildConstants","l":"MAVEN_NAME"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"maxAcceleration"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"maxAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"maxAngularVelocityRadiansSec"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"maxPositionInRadians"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"maxVelocity"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"maxVelocityInRPMs"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"maxVelocityMetersPerSec"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"minAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ClimberConstants","l":"minPositionInRadians"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"periodic()"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"periodic()"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"periodic()"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidAngleErrorInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"pidAngleErrorInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidKd"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKd"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKdBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidKi"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKi"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKiBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidKp"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKp"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidKpBottom"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidMaxOutput"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidMinOutput"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"pidSettlingTimeInMilliseconds"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidSettlingTimeInMilliseconds"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidTimeoutInSeconds"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"pidVelocityErrorInRPMS"},{"p":"frc.robot.controls","c":"PitControls","l":"PitControls()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"positionRad"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"positionRadians"},{"p":"frc.robot.commands.assist","c":"PrepareForIntake","l":"PrepareForIntake(Arm, Intake)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.intake.Intake)"},{"p":"frc.robot.commands.assist","c":"PrepareForIntake","l":"PrepareForIntake(Arm, Intake, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.intake.Intake,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.commands.assist","c":"PrepareForScore","l":"PrepareForScore(Arm, Shooter, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.arm.Arm,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO.ArmIOInputs","l":"relativePositionRotations"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"resetEncoders()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"resetOdometry()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"resetOdometry()"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"resetPosition()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"resetPosition()"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"resetRelativeEncoder(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"resetRelativeEncoder(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"retract()"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"retract()"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"ROBOT"},{"p":"frc.robot","c":"Robot","l":"Robot()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"RobotContainer","l":"robotConfig"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean, boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfig","l":"RobotConfig(boolean, boolean, boolean, boolean, boolean, boolean, boolean)","u":"%3Cinit%3E(boolean,boolean,boolean,boolean,boolean,boolean,boolean)"},{"p":"frc.robot.config","c":"RobotConfigInferno","l":"RobotConfigInferno()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfigPhoenix","l":"RobotConfigPhoenix()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfigSherman","l":"RobotConfigSherman()","u":"%3Cinit%3E()"},{"p":"frc.robot.config","c":"RobotConfigStub","l":"RobotConfigStub()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"RobotContainer","l":"RobotContainer()","u":"%3Cinit%3E()"},{"p":"frc.robot","c":"Robot","l":"robotInit()"},{"p":"frc.robot","c":"Robot","l":"robotPeriodic()"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"robotPose"},{"p":"frc.robot.util","c":"RobotState","l":"RobotState()","u":"%3Cinit%3E()"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"robotYawInDegrees"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.drive","c":"DriveBase","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"runVelocity(ChassisSpeeds)","u":"runVelocity(edu.wpi.first.math.kinematics.ChassisSpeeds)"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"runVelocity(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"runVelocity(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"Intake","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"Shooter","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"runVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"runVoltageLeft(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"runVoltageLeft(double)"},{"p":"frc.robot.subsystems.climber","c":"Climber","l":"runVoltageRight(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberSubsystem","l":"runVoltageRight(double)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromNoteAmpSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromNoteCenterSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromNoteSourceSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromOutsideSourceSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromSpeakerAmpSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromSpeakerCenterSide"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoConstants","l":"scoreFromSpeakerSourceSide"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"ScorePiece(Intake, Shooter)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,frc.robot.subsystems.shooter.Shooter)"},{"p":"frc.robot.commands.assist","c":"ScorePiece","l":"ScorePiece(Intake, Shooter, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.intake.Intake,frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"setAngle(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"setAngle(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setBrakeMode(boolean)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setBrakeMode(boolean)"},{"p":"frc.robot.util","c":"RobotState","l":"setDriveMode(RobotState.DriveMode)","u":"setDriveMode(frc.robot.util.RobotState.DriveMode)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setFeedback(double, double, double, double, double)","u":"setFeedback(double,double,double,double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setFeedback(double, double, double, double, double)","u":"setFeedback(double,double,double,double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"setFeedback(double, double, double, double, double)","u":"setFeedback(double,double,double,double,double)"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"setFieldOrientedDrive(boolean)"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"setFieldOrientedDrive(boolean)"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"setPoseToMatchField()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"setPoseToMatchField()"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO","l":"setPosition(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"setPosition(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"setPosition(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"setPosition(double, double)","u":"setPosition(double,double)"},{"p":"frc.robot.subsystems.vision","c":"Vision","l":"setPrimaryCamera(String)","u":"setPrimaryCamera(java.lang.String)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"setPrimaryCamera(String)","u":"setPrimaryCamera(java.lang.String)"},{"p":"frc.robot.commands.shooter","c":"SetShooterVelocity","l":"SetShooterVelocity(Shooter, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.Shooter,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.arm","c":"Arm","l":"setState(TrapezoidProfile.State)","u":"setState(edu.wpi.first.math.trajectory.TrapezoidProfile.State)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"setState(TrapezoidProfile.State)","u":"setState(edu.wpi.first.math.trajectory.TrapezoidProfile.State)"},{"p":"frc.robot.subsystems.drive","c":"DriveTrain","l":"setTalonMode(NeutralMode)","u":"setTalonMode(com.ctre.phoenix.motorcontrol.NeutralMode)"},{"p":"frc.robot.util","c":"RobotState","l":"setTargetMode(RobotState.TargetMode)","u":"setTargetMode(frc.robot.util.RobotState.TargetMode)"},{"p":"frc.robot.controls","c":"DebugControls","l":"setupControls()"},{"p":"frc.robot.controls","c":"PitControls","l":"setupControls()"},{"p":"frc.robot.controls","c":"DriverControls","l":"setupControls(CommandXboxController)","u":"setupControls(edu.wpi.first.wpilibj2.command.button.CommandXboxController)"},{"p":"frc.robot.controls","c":"DriverControls","l":"setupGUI()"},{"p":"frc.robot.controls","c":"SysIdControls","l":"setupGUI()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"setVelocity(double, double)","u":"setVelocity(double,double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOStub","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"setVoltage(double)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"setVoltage(double)"},{"p":"frc.robot.config","c":"RobotConfig","l":"shooter"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"SHOOTER_BOTTOM"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"SHOOTER_TOP"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"ShooterConstants()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"ShooterIOInputs()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"ShooterIOSparkMax(int)","u":"%3Cinit%3E(int)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"ShooterIOStub()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"ShooterIOStub(ShooterIOStub.ShooterId)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.ShooterIOStub.ShooterId)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"ShooterSubsystem(ShooterIO)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.ShooterIO)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"ShooterSubsystem(ShooterIO, ShooterIO)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.ShooterIO,frc.robot.subsystems.shooter.ShooterIO)"},{"p":"frc.robot.commands.auto","c":"AutoNamedCommands.AutoScoreConstants","l":"shooterVelocityInRPMs"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"slewRateLimiterAngle"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"slewRateLimiterX"},{"p":"frc.robot.config","c":"RobotConfig.DriveConstants","l":"slewRateLimiterY"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"SPEAKER"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"stowIntakeAngleInDegrees"},{"p":"frc.robot.config","c":"RobotConfig.ArmConstants","l":"subwooferScoreAngleInDegrees"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"supportsHardwarePid()"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"supportsHardwarePid()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"sysIdAngleMotorCommand()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"sysIdAngleMotorCommand()"},{"p":"frc.robot.controls","c":"SysIdControls","l":"SysIdControls()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.drive","c":"Drive","l":"sysIdDriveMotorCommand()"},{"p":"frc.robot.subsystems.drive","c":"DriveSwerveYAGSL","l":"sysIdDriveMotorCommand()"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"sysIdDynamic(SysIdRoutine.Direction)","u":"sysIdDynamic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"sysIdDynamic(SysIdRoutine.Direction)","u":"sysIdDynamic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"sysIdQuasistatic(SysIdRoutine.Direction)","u":"sysIdQuasistatic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterSubsystem","l":"sysIdQuasistatic(SysIdRoutine.Direction)","u":"sysIdQuasistatic(edu.wpi.first.wpilibj2.command.sysid.SysIdRoutine.Direction)"},{"p":"frc.robot","c":"Robot","l":"teleopExit()"},{"p":"frc.robot","c":"Robot","l":"teleopInit()"},{"p":"frc.robot","c":"Robot","l":"teleopPeriodic()"},{"p":"frc.robot","c":"Robot","l":"testExit()"},{"p":"frc.robot","c":"Robot","l":"testInit()"},{"p":"frc.robot","c":"Robot","l":"testPeriodic()"},{"p":"frc.robot.commands.debug","c":"TestShooterAngle","l":"TestShooterAngle(Shooter, Intake, Arm, DoubleSupplier, DoubleSupplier, DoubleSupplier)","u":"%3Cinit%3E(frc.robot.subsystems.shooter.Shooter,frc.robot.subsystems.intake.Intake,frc.robot.subsystems.arm.Arm,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier,java.util.function.DoubleSupplier)"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"timestamp"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkD"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkFF"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkI"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkIz"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkMaxOutput"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkMinOutput"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tkP"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"tmaxRPS"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"toString()"},{"p":"frc.robot","c":"Constants","l":"tuningMode"},{"p":"frc.robot.subsystems.arm","c":"ArmIO","l":"updateInputs(ArmIO.ArmIOInputs)","u":"updateInputs(frc.robot.subsystems.arm.ArmIO.ArmIOInputs)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOSparkMax","l":"updateInputs(ArmIO.ArmIOInputs)","u":"updateInputs(frc.robot.subsystems.arm.ArmIO.ArmIOInputs)"},{"p":"frc.robot.subsystems.arm","c":"ArmIOStub","l":"updateInputs(ArmIO.ArmIOInputs)","u":"updateInputs(frc.robot.subsystems.arm.ArmIO.ArmIOInputs)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO","l":"updateInputs(ClimberIO.ClimberIOInputs)","u":"updateInputs(frc.robot.subsystems.climber.ClimberIO.ClimberIOInputs)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOSparkMax","l":"updateInputs(ClimberIO.ClimberIOInputs)","u":"updateInputs(frc.robot.subsystems.climber.ClimberIO.ClimberIOInputs)"},{"p":"frc.robot.subsystems.climber","c":"ClimberIOStub","l":"updateInputs(ClimberIO.ClimberIOInputs)","u":"updateInputs(frc.robot.subsystems.climber.ClimberIO.ClimberIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOSparkMax","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOStub","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.intake","c":"IntakeIOTalonSRX","l":"updateInputs(IntakeIO.IntakeIOInputs)","u":"updateInputs(frc.robot.subsystems.intake.IntakeIO.IntakeIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO","l":"updateInputs(ShooterIO.ShooterIOInputs)","u":"updateInputs(frc.robot.subsystems.shooter.ShooterIO.ShooterIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOSparkMax","l":"updateInputs(ShooterIO.ShooterIOInputs)","u":"updateInputs(frc.robot.subsystems.shooter.ShooterIO.ShooterIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub","l":"updateInputs(ShooterIO.ShooterIOInputs)","u":"updateInputs(frc.robot.subsystems.shooter.ShooterIO.ShooterIOInputs)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIOStub.ShooterId","l":"values()"},{"p":"frc.robot.util","c":"RobotState.DriveMode","l":"values()"},{"p":"frc.robot.util","c":"RobotState.TargetMode","l":"values()"},{"p":"frc.robot.config","c":"RobotConfig.ShooterConstants","l":"velocityInRPMs"},{"p":"frc.robot.subsystems.climber","c":"ClimberIO.ClimberIOInputs","l":"velocityRadiansPerSecond"},{"p":"frc.robot.subsystems.intake","c":"IntakeIO.IntakeIOInputs","l":"velocityRadPerSec"},{"p":"frc.robot.subsystems.shooter","c":"ShooterIO.ShooterIOInputs","l":"velocityRadPerSec"},{"p":"frc.robot","c":"BuildConstants","l":"VERSION"},{"p":"frc.robot.config","c":"RobotConfig","l":"vision"},{"p":"frc.robot.subsystems.vision","c":"VisionCamera","l":"VisionCamera(String, Transform3d)","u":"%3Cinit%3E(java.lang.String,edu.wpi.first.math.geometry.Transform3d)"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"VisionPose()","u":"%3Cinit%3E()"},{"p":"frc.robot.subsystems.vision","c":"Vision.VisionPose","l":"VisionPose(Pose2d, double, String)","u":"%3Cinit%3E(edu.wpi.first.math.geometry.Pose2d,double,java.lang.String)"},{"p":"frc.robot.subsystems.vision","c":"VisionSubsystem","l":"VisionSubsystem(List, AprilTagFieldLayout)","u":"%3Cinit%3E(java.util.List,edu.wpi.first.apriltag.AprilTagFieldLayout)"},{"p":"frc.robot.subsystems.arm","c":"ArmSubsystem","l":"voltageSafety(double)"}];updateSearchResults(); \ No newline at end of file