From 8d0b4d933277448d245d004f66172ac8b12a365e Mon Sep 17 00:00:00 2001 From: BrownGenius <49494444+BrownGenius@users.noreply.github.com> Date: Wed, 6 Mar 2024 20:09:06 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20javadoc=20from=20@=20DevilBotz?= =?UTF-8?q?2876/Crescendo2024@ce5db0651a51faacee076ab038f6c564d0298abc=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- javadoc/allclasses-index.html | 128 ++++---- javadoc/allpackages-index.html | 24 +- javadoc/constant-values.html | 10 +- javadoc/element-list | 4 + javadoc/frc/robot/RobotContainer.html | 13 +- .../frc/robot/commands/arm/ArmToPosition.html | 25 +- .../robot/commands/arm/ArmToPositionTP.html | 4 + .../robot/commands/arm/package-summary.html | 10 +- .../frc/robot/commands/arm/package-tree.html | 1 - .../frc/robot/commands/assist/IndexPiece.html | 16 +- .../commands/assist/PrepareForIntake.html | 26 +- .../commands/assist/PrepareForScore.html | 22 +- .../frc/robot/commands/assist/ProtectArm.html | 132 ++++++++ .../frc/robot/commands/assist/ScorePiece.html | 12 + .../commands/assist/package-summary.html | 4 +- .../robot/commands/assist/package-tree.html | 11 +- .../{shooter => debug}/TestShooterAngle.html | 20 +- .../robot/commands/debug/package-summary.html | 81 +++++ .../robot/commands/debug/package-tree.html | 74 +++++ .../robot/commands/drive/DriveCommand.html | 16 + .../commands/intake/package-summary.html | 4 +- .../robot/commands/intake/package-tree.html | 1 - .../commands/shooter/package-summary.html | 4 - .../robot/commands/shooter/package-tree.html | 2 - .../AlignToTarget.html} | 52 ++- .../commands/vision/package-summary.html | 81 +++++ .../robot/commands/vision/package-tree.html | 74 +++++ .../config/RobotConfig.ArmConstants.html | 49 ++- .../config/RobotConfig.DriveConstants.html | 40 ++- .../config/RobotConfig.ShooterConstants.html | 32 +- javadoc/frc/robot/config/RobotConfig.html | 81 ++++- .../frc/robot/config/RobotConfigInferno.html | 41 ++- .../frc/robot/config/RobotConfigPhoenix.html | 5 +- .../frc/robot/config/RobotConfigSherman.html | 5 +- javadoc/frc/robot/config/RobotConfigStub.html | 5 +- javadoc/frc/robot/config/package-summary.html | 4 +- javadoc/frc/robot/controls/DebugControls.html | 157 ++++++++++ .../DriverControls.html} | 104 +++--- javadoc/frc/robot/controls/PitControls.html | 157 ++++++++++ javadoc/frc/robot/controls/SysIdControls.html | 157 ++++++++++ .../frc/robot/controls/package-summary.html | 102 ++++++ javadoc/frc/robot/controls/package-tree.html | 73 +++++ javadoc/frc/robot/package-summary.html | 4 +- javadoc/frc/robot/subsystems/drive/Drive.html | 67 ++-- .../frc/robot/subsystems/drive/DriveBase.html | 2 +- .../subsystems/drive/DriveSwerveYAGSL.html | 63 ++-- .../robot/subsystems/drive/DriveTrain.html | 2 +- .../vision/Vision.VisionPose.html} | 154 +++++---- .../frc/robot/subsystems/vision/Vision.html | 224 +++++++++++++ .../robot/subsystems/vision/VisionCamera.html | 133 ++++++++ .../subsystems/vision/VisionSubsystem.html | 296 ++++++++++++++++++ .../subsystems/vision/package-summary.html | 93 ++++++ .../robot/subsystems/vision/package-tree.html | 82 +++++ .../frc/robot/util/RobotState.DriveMode.html | 220 +++++++++++++ .../frc/robot/util/RobotState.TargetMode.html | 220 +++++++++++++ javadoc/frc/robot/util/RobotState.html | 238 ++++++++++++++ javadoc/frc/robot/util/package-summary.html | 20 +- javadoc/frc/robot/util/package-tree.html | 16 + javadoc/index-all.html | 247 ++++++++++++--- javadoc/index.html | 24 +- javadoc/member-search-index.js | 2 +- javadoc/overview-tree.html | 29 +- javadoc/package-search-index.js | 2 +- javadoc/type-search-index.js | 2 +- 64 files changed, 3560 insertions(+), 443 deletions(-) create mode 100644 javadoc/frc/robot/commands/assist/ProtectArm.html rename javadoc/frc/robot/commands/{shooter => debug}/TestShooterAngle.html (86%) create mode 100644 javadoc/frc/robot/commands/debug/package-summary.html create mode 100644 javadoc/frc/robot/commands/debug/package-tree.html rename javadoc/frc/robot/commands/{shooter/ShooterEnable.html => vision/AlignToTarget.html} (76%) create mode 100644 javadoc/frc/robot/commands/vision/package-summary.html create mode 100644 javadoc/frc/robot/commands/vision/package-tree.html create mode 100644 javadoc/frc/robot/controls/DebugControls.html rename javadoc/frc/robot/{commands/intake/IntakeBaseCommand.html => controls/DriverControls.html} (55%) create mode 100644 javadoc/frc/robot/controls/PitControls.html create mode 100644 javadoc/frc/robot/controls/SysIdControls.html create mode 100644 javadoc/frc/robot/controls/package-summary.html create mode 100644 javadoc/frc/robot/controls/package-tree.html rename javadoc/frc/robot/{commands/arm/ArmToPositionDebug.html => subsystems/vision/Vision.VisionPose.html} (54%) create mode 100644 javadoc/frc/robot/subsystems/vision/Vision.html create mode 100644 javadoc/frc/robot/subsystems/vision/VisionCamera.html create mode 100644 javadoc/frc/robot/subsystems/vision/VisionSubsystem.html create mode 100644 javadoc/frc/robot/subsystems/vision/package-summary.html create mode 100644 javadoc/frc/robot/subsystems/vision/package-tree.html create mode 100644 javadoc/frc/robot/util/RobotState.DriveMode.html create mode 100644 javadoc/frc/robot/util/RobotState.TargetMode.html create mode 100644 javadoc/frc/robot/util/RobotState.html diff --git a/javadoc/allclasses-index.html b/javadoc/allclasses-index.html index fec3fda9..df21e7f8 100644 --- a/javadoc/allclasses-index.html +++ b/javadoc/allclasses-index.html @@ -59,26 +59,22 @@

All Classes and Interfaces<
Class
Description
- -
 
- + +
 
+
 
- + +
 
+ +
 
+
 
- +
 
- +
 
- +
 
- -
-
This class uses a widget on Shuffleboard to control the arm setpoint.
-
- -
-
This class uses a widget on Shuffleboard to control the arm setpoint.
-
 
@@ -105,11 +101,15 @@

All Classes and Interfaces<
Add your docs here.
- -
 
- + +
 
+ +
 
+ +
 
+
 
- +
 
 
@@ -121,77 +121,93 @@

All Classes and Interfaces<
 
 
- -
 
- -
 
- -
 
- + +
 
+
 
- +
 
- +
 
- +
 
- +
 
- -

diff --git a/javadoc/allpackages-index.html b/javadoc/allpackages-index.html index 66d865c3..d7ba592b 100644 --- a/javadoc/allpackages-index.html +++ b/javadoc/allpackages-index.html @@ -61,23 +61,31 @@

All Packages

 
frc.robot.commands.climber
 
-
frc.robot.commands.drive
+
frc.robot.commands.debug
 
-
frc.robot.commands.intake
+
frc.robot.commands.drive
 
-
frc.robot.commands.shooter
+
frc.robot.commands.intake
+
 
+
frc.robot.commands.shooter
+
 
+
frc.robot.commands.vision
 
frc.robot.config
 
-
frc.robot.subsystems.arm
+
frc.robot.controls
+
 
+
frc.robot.subsystems.arm
+
 
+
frc.robot.subsystems.climber
 
-
frc.robot.subsystems.climber
+
frc.robot.subsystems.drive
 
-
frc.robot.subsystems.drive
+
frc.robot.subsystems.intake
 
-
frc.robot.subsystems.intake
+
frc.robot.subsystems.shooter
 
-
frc.robot.subsystems.shooter
+
frc.robot.subsystems.vision
 
frc.robot.util
 
diff --git a/javadoc/constant-values.html b/javadoc/constant-values.html index c0fced25..bbcef51e 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-04 23:18:41 EST"
+
"2024-03-06 15:08:59 EST"
public static final long
BUILD_UNIX_TIME
-
1709612321357L
+
1709755739774L
public static final int
DIRTY
0
@@ -78,13 +78,13 @@

frc.robot.*

"main"
public static final String
GIT_DATE
-
"2024-03-04 23:17:48 EST"
+
"2024-03-06 15:08:01 EST"
public static final int
GIT_REVISION
-
60
+
61
public static final String
GIT_SHA
-
"975e46132a59b909ac85e0209c3c01ece96e7892"
+
"ce5db0651a51faacee076ab038f6c564d0298abc"
public static final String
MAVEN_GROUP
""
diff --git a/javadoc/element-list b/javadoc/element-list index 6b7c661c..e1c4197f 100644 --- a/javadoc/element-list +++ b/javadoc/element-list @@ -2,13 +2,17 @@ frc.robot frc.robot.commands.arm frc.robot.commands.assist frc.robot.commands.climber +frc.robot.commands.debug frc.robot.commands.drive frc.robot.commands.intake frc.robot.commands.shooter +frc.robot.commands.vision frc.robot.config +frc.robot.controls frc.robot.subsystems.arm frc.robot.subsystems.climber frc.robot.subsystems.drive frc.robot.subsystems.intake frc.robot.subsystems.shooter +frc.robot.subsystems.vision frc.robot.util diff --git a/javadoc/frc/robot/RobotContainer.html b/javadoc/frc/robot/RobotContainer.html index fbac74e5..6597eb7c 100644 --- a/javadoc/frc/robot/RobotContainer.html +++ b/javadoc/frc/robot/RobotContainer.html @@ -122,12 +122,9 @@

Method Summary

Modifier and Type
Method
Description
-
void
-
commandsToShuffleboard()
+
edu.wpi.first.wpilibj2.command.Command
+
getAutonomousCommand()
 
-
edu.wpi.first.wpilibj2.command.Command
-
getAutonomousCommand()
-
 
@@ -185,12 +182,6 @@

getAutonomousCommand

public edu.wpi.first.wpilibj2.command.Command getAutonomousCommand()
-
  • -
    -

    commandsToShuffleboard

    -
    public void commandsToShuffleboard()
    -
    -
  • diff --git a/javadoc/frc/robot/commands/arm/ArmToPosition.html b/javadoc/frc/robot/commands/arm/ArmToPosition.html index 296eb4cd..97f67018 100644 --- a/javadoc/frc/robot/commands/arm/ArmToPosition.html +++ b/javadoc/frc/robot/commands/arm/ArmToPosition.html @@ -83,8 +83,6 @@

    Class ArmToPosition


    public class ArmToPosition extends edu.wpi.first.wpilibj2.command.Command
    -
    This class uses a widget on Shuffleboard to control the arm setpoint. It is meant to be used for - debug/test/bring type work.
    -
  • -
    -

    end

    -
    public void end(boolean interrupted)
    -
    -
    Overrides:
    -
    end in class edu.wpi.first.wpilibj2.command.Command
    -
    -
    -
  • diff --git a/javadoc/frc/robot/commands/arm/ArmToPositionTP.html b/javadoc/frc/robot/commands/arm/ArmToPositionTP.html index d70daceb..2d06a210 100644 --- a/javadoc/frc/robot/commands/arm/ArmToPositionTP.html +++ b/javadoc/frc/robot/commands/arm/ArmToPositionTP.html @@ -82,6 +82,10 @@

    Class ArmToPositionTP

    All Implemented Interfaces:
    edu.wpi.first.util.sendable.Sendable
    +
    +
    Direct Known Subclasses:
    +
    ProtectArm
    +

    public class ArmToPositionTP extends edu.wpi.first.wpilibj2.command.TrapezoidProfileCommand
    diff --git a/javadoc/frc/robot/commands/arm/package-summary.html b/javadoc/frc/robot/commands/arm/package-summary.html index 82b6fad1..d163f132 100644 --- a/javadoc/frc/robot/commands/arm/package-summary.html +++ b/javadoc/frc/robot/commands/arm/package-summary.html @@ -68,15 +68,9 @@

    Package frc.robot.comma
    Class
    Description
    ArmToPosition
    -
    -
    This class uses a widget on Shuffleboard to control the arm setpoint.
    -
    -
    ArmToPositionDebug
    -
    -
    This class uses a widget on Shuffleboard to control the arm setpoint.
    -
    -
    ArmToPositionTP
     
    +
    ArmToPositionTP
    +
     
    diff --git a/javadoc/frc/robot/commands/arm/package-tree.html b/javadoc/frc/robot/commands/arm/package-tree.html index 26975af2..c8e1bb3a 100644 --- a/javadoc/frc/robot/commands/arm/package-tree.html +++ b/javadoc/frc/robot/commands/arm/package-tree.html @@ -61,7 +61,6 @@

    Class Hierarchy

  • edu.wpi.first.wpilibj2.command.Command (implements edu.wpi.first.util.sendable.Sendable) diff --git a/javadoc/frc/robot/commands/shooter/TestShooterAngle.html b/javadoc/frc/robot/commands/debug/TestShooterAngle.html similarity index 86% rename from javadoc/frc/robot/commands/shooter/TestShooterAngle.html rename to javadoc/frc/robot/commands/debug/TestShooterAngle.html index cccb4cce..14832583 100644 --- a/javadoc/frc/robot/commands/shooter/TestShooterAngle.html +++ b/javadoc/frc/robot/commands/debug/TestShooterAngle.html @@ -5,7 +5,7 @@ TestShooterAngle (Crescendo2024 API) - + @@ -67,12 +67,12 @@
    - +

    Class TestShooterAngle

    java.lang.Object
    edu.wpi.first.wpilibj2.command.Command -
    frc.robot.commands.shooter.TestShooterAngle
    +
    frc.robot.commands.debug.TestShooterAngle
    @@ -112,9 +112,12 @@

    Constructor Summary

    Constructor
    Description
    -
    TestShooterAngle(Shooter shooter, +
    TestShooterAngle(Shooter shooter, Intake intake, - Arm arm)
    + Arm arm, + DoubleSupplier shooterVelocity, + DoubleSupplier intakeVoltage, + DoubleSupplier armAngle)
     
    @@ -157,11 +160,14 @@

    Methods inherited from cl

    Constructor Details

    diff --git a/javadoc/frc/robot/commands/debug/package-summary.html b/javadoc/frc/robot/commands/debug/package-summary.html new file mode 100644 index 00000000..40732a14 --- /dev/null +++ b/javadoc/frc/robot/commands/debug/package-summary.html @@ -0,0 +1,81 @@ + + + + +frc.robot.commands.debug (Crescendo2024 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package frc.robot.commands.debug

    +
    +
    +
    package frc.robot.commands.debug
    +
    + +
    +
    +
    +
    + + diff --git a/javadoc/frc/robot/commands/debug/package-tree.html b/javadoc/frc/robot/commands/debug/package-tree.html new file mode 100644 index 00000000..5436f01c --- /dev/null +++ b/javadoc/frc/robot/commands/debug/package-tree.html @@ -0,0 +1,74 @@ + + + + +frc.robot.commands.debug Class Hierarchy (Crescendo2024 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package frc.robot.commands.debug

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    +
      +
    • java.lang.Object +
        +
      • edu.wpi.first.wpilibj2.command.Command (implements edu.wpi.first.util.sendable.Sendable) + +
      • +
      +
    • +
    +
    +
    +
    +
    + + diff --git a/javadoc/frc/robot/commands/drive/DriveCommand.html b/javadoc/frc/robot/commands/drive/DriveCommand.html index 4bc1e345..a539de27 100644 --- a/javadoc/frc/robot/commands/drive/DriveCommand.html +++ b/javadoc/frc/robot/commands/drive/DriveCommand.html @@ -117,6 +117,12 @@

    Constructor Summary

    DoubleSupplier speedY, DoubleSupplier rot)
     
    +
    DriveCommand(DriveBase drive, + DoubleSupplier speedX, + DoubleSupplier speedY, + DoubleSupplier rot, + Supplier<Optional<Double>> autoRot)
    +
     
  • @@ -155,6 +161,16 @@

    Methods inherited from cl

    Constructor Details

    diff --git a/javadoc/frc/robot/commands/vision/package-summary.html b/javadoc/frc/robot/commands/vision/package-summary.html new file mode 100644 index 00000000..0441dc2c --- /dev/null +++ b/javadoc/frc/robot/commands/vision/package-summary.html @@ -0,0 +1,81 @@ + + + + +frc.robot.commands.vision (Crescendo2024 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Package frc.robot.commands.vision

    +
    +
    +
    package frc.robot.commands.vision
    +
    + +
    +
    +
    +
    + + diff --git a/javadoc/frc/robot/commands/vision/package-tree.html b/javadoc/frc/robot/commands/vision/package-tree.html new file mode 100644 index 00000000..b65b352a --- /dev/null +++ b/javadoc/frc/robot/commands/vision/package-tree.html @@ -0,0 +1,74 @@ + + + + +frc.robot.commands.vision Class Hierarchy (Crescendo2024 API) + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Hierarchy For Package frc.robot.commands.vision

    +Package Hierarchies: + +
    +
    +

    Class Hierarchy

    +
      +
    • java.lang.Object +
        +
      • edu.wpi.first.wpilibj2.command.Command (implements edu.wpi.first.util.sendable.Sendable) + +
      • +
      +
    • +
    +
    +
    +
    +
    + + diff --git a/javadoc/frc/robot/config/RobotConfig.ArmConstants.html b/javadoc/frc/robot/config/RobotConfig.ArmConstants.html index f7aebe82..49fe6a4d 100644 --- a/javadoc/frc/robot/config/RobotConfig.ArmConstants.html +++ b/javadoc/frc/robot/config/RobotConfig.ArmConstants.html @@ -99,68 +99,65 @@

    Field Summary

    ampScoreAngleInDegrees
     
    static double
    -
    ampScoreShooterAngleInDegrees
    +
    defaultSpeedInVolts
     
    static double
    -
    defaultSpeedInVolts
    +
    ejectAngleInDegrees
     
    static double
    -
    ejectAngleInDegrees
    +
    ffKa
     
    static double
    -
    ffKa
    +
    ffKg
     
    static double
    -
    ffKg
    +
    ffKs
     
    static double
    -
    ffKs
    +
    ffKv
     
    static double
    -
    ffKv
    +
    intakeAngleInDegrees
     
    static double
    -
    intakeAngleInDegrees
    +
    maxAcceleration
     
    static double
    -
    maxAcceleration
    +
    maxAngleInDegrees
     
    static double
    -
    maxAngleInDegrees
    +
    maxVelocity
     
    static double
    -
    maxVelocity
    +
    minAngleInDegrees
     
    static double
    -
    minAngleInDegrees
    +
    pidAngleErrorInDegrees
     
    static double
    -
    pidAngleErrorInDegrees
    +
    pidKd
     
    static double
    -
    pidKd
    +
    pidKi
     
    static double
    -
    pidKi
    +
    pidKp
     
    static double
    -
    pidKp
    +
    pidMaxOutput
     
    static double
    -
    pidMaxOutput
    +
    pidMinOutput
     
    static double
    -
    pidMinOutput
    +
    pidSettlingTimeInMilliseconds
     
    static double
    -
    pidSettlingTimeInMilliseconds
    +
    stowIntakeAngleInDegrees
     
    static double
    -
    stowIntakeAngleInDegrees
    +
    subwooferScoreAngleInDegrees
     
    -
    static double
    -
    subwooferScoreAngleInDegrees
    -
     
    @@ -333,12 +330,6 @@

    defaultSpeedInVolts

    public static double defaultSpeedInVolts
    -
  • -
    -

    ampScoreShooterAngleInDegrees

    -
    public static double ampScoreShooterAngleInDegrees
    -
    -
  • diff --git a/javadoc/frc/robot/config/RobotConfig.DriveConstants.html b/javadoc/frc/robot/config/RobotConfig.DriveConstants.html index 04a40b9d..05837015 100644 --- a/javadoc/frc/robot/config/RobotConfig.DriveConstants.html +++ b/javadoc/frc/robot/config/RobotConfig.DriveConstants.html @@ -90,10 +90,22 @@

    Field Summary

    Field
    Description
    static double
    -
    maxAngularVelocityRadiansSec
    +
    anglePidKd
     
    static double
    -
    maxVelocityMetersPerSec
    +
    anglePidKi
    +
     
    +
    static double
    +
    anglePidKp
    +
     
    +
    static double
    +
    maxAngularVelocityRadiansSec
    +
     
    +
    static double
    +
    maxVelocityMetersPerSec
    +
     
    +
    static double
    +
    pidAngleErrorInDegrees
     
    static double
    slewRateLimiterAngle
    @@ -151,6 +163,30 @@

    maxAngularVelocityRadiansSec

  • +
    +

    anglePidKp

    +
    public static double anglePidKp
    +
    +
  • +
  • +
    +

    anglePidKi

    +
    public static double anglePidKi
    +
    +
  • +
  • +
    +

    anglePidKd

    +
    public static double anglePidKd
    +
    +
  • +
  • +
    +

    pidAngleErrorInDegrees

    +
    public static double pidAngleErrorInDegrees
    +
    +
  • +
  • slewRateLimiterX

    public static double slewRateLimiterX
    diff --git a/javadoc/frc/robot/config/RobotConfig.ShooterConstants.html b/javadoc/frc/robot/config/RobotConfig.ShooterConstants.html index 93898b55..0160845a 100644 --- a/javadoc/frc/robot/config/RobotConfig.ShooterConstants.html +++ b/javadoc/frc/robot/config/RobotConfig.ShooterConstants.html @@ -114,25 +114,31 @@

    Field Summary

     
    static double
    - +
     
    static double
    - +
     
    static double
    - +
     
    static double
    - +
     
    static double
    - +
     
    static double
    - +
     
    static double
    - + +
     
    +
    static double
    + +
     
    +
    static double
    +
     
    static double
    @@ -223,6 +229,12 @@

    pidSettlingTimeInMilliseconds

  • +
    +

    pidTimeoutInSeconds

    +
    public static double pidTimeoutInSeconds
    +
    +
  • +
  • pidKp

    public static double pidKp
    @@ -276,6 +288,12 @@

    ampScoreVelocityInRPMs

    public static double ampScoreVelocityInRPMs
  • +
  • +
    +

    maxVelocityInRPMs

    +
    public static double maxVelocityInRPMs
    +
    +
  • diff --git a/javadoc/frc/robot/config/RobotConfig.html b/javadoc/frc/robot/config/RobotConfig.html index 800e48e6..b3cd61ed 100644 --- a/javadoc/frc/robot/config/RobotConfig.html +++ b/javadoc/frc/robot/config/RobotConfig.html @@ -15,7 +15,11 @@ -