From e21546c9990f30405429b43376110404c2dcb90d Mon Sep 17 00:00:00 2001 From: BrownGenius <49494444+BrownGenius@users.noreply.github.com> Date: Mon, 25 Mar 2024 14:23:14 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20javadoc=20from=20@=20DevilBotz?= =?UTF-8?q?2876/Crescendo2024@327846c1453ab099d9086a81a05984c665e679ca=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 | 4 + javadoc/constant-values.html | 10 +- .../frc/robot/commands/arm/ArmToPosition.html | 21 +- javadoc/frc/robot/subsystems/arm/Arm.html | 13 +- .../subsystems/arm/ArmIO.ArmIOInputs.html | 33 ++-- .../robot/subsystems/arm/ArmSubsystem.html | 12 +- .../drive/DriveIO.DriveIOInputs.html | 186 ++++++++++++++++++ .../frc/robot/subsystems/drive/DriveIO.html | 177 +++++++++++++++++ .../subsystems/drive/DriveSwerveYAGSL.html | 37 ++-- .../subsystems/drive/package-summary.html | 4 + .../robot/subsystems/drive/package-tree.html | 2 + javadoc/index-all.html | 38 +++- javadoc/member-search-index.js | 2 +- javadoc/overview-tree.html | 2 + javadoc/type-search-index.js | 2 +- 15 files changed, 484 insertions(+), 59 deletions(-) create mode 100644 javadoc/frc/robot/subsystems/drive/DriveIO.DriveIOInputs.html create mode 100644 javadoc/frc/robot/subsystems/drive/DriveIO.html diff --git a/javadoc/allclasses-index.html b/javadoc/allclasses-index.html index 05ceacc8..62cfe47d 100644 --- a/javadoc/allclasses-index.html +++ b/javadoc/allclasses-index.html @@ -133,6 +133,10 @@

All Classes and Interfaces<
 
DriveCommand
 
+
DriveIO
+
 
+
DriveIO.DriveIOInputs
+
 
DriverControls
 
DriveSwerveYAGSL
diff --git a/javadoc/constant-values.html b/javadoc/constant-values.html index 0eac2559..7e6c97e1 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-22 13:14:27 EDT"
+
"2024-03-25 10:23:08 EDT"
public static final long
BUILD_UNIX_TIME
-
1711127667356L
+
1711376588213L
public static final int
DIRTY
0
@@ -78,13 +78,13 @@

frc.robot.*

"main"
public static final String
GIT_DATE
-
"2024-03-22 13:13:50 EDT"
+
"2024-03-25 10:22:24 EDT"
public static final int
GIT_REVISION
-
86
+
87
public static final String
GIT_SHA
-
"9574bdd9cd59c38f1a63b802029dca5281fd0ac3"
+
"327846c1453ab099d9086a81a05984c665e679ca"
public static final String
MAVEN_GROUP
""
diff --git a/javadoc/frc/robot/commands/arm/ArmToPosition.html b/javadoc/frc/robot/commands/arm/ArmToPosition.html index 2f5fe455..3ceb9983 100644 --- a/javadoc/frc/robot/commands/arm/ArmToPosition.html +++ b/javadoc/frc/robot/commands/arm/ArmToPosition.html @@ -133,17 +133,20 @@

Method Summary

end(boolean interrupted)
 
void
-
initialize()
+
execute()
 
-
boolean
-
isFinished()
+
void
+
initialize()
 
+
boolean
+
isFinished()
+
 

Methods inherited from class edu.wpi.first.wpilibj2.command.Command

-addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineWith, execute, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, initSendable, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, runsWhenDisabled, schedule, setName, setSubsystem, unless, until, withInterruptBehavior, withName, withTimeout
+addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineWith, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, initSendable, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, runsWhenDisabled, schedule, setName, setSubsystem, unless, until, withInterruptBehavior, withName, withTimeout

Methods inherited from class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
@@ -184,6 +187,16 @@

initialize

  • +
    +

    execute

    +
    public void execute()
    +
    +
    Overrides:
    +
    execute in class edu.wpi.first.wpilibj2.command.Command
    +
    +
    +
  • +
  • isFinished

    public boolean isFinished()
    diff --git a/javadoc/frc/robot/subsystems/arm/Arm.html b/javadoc/frc/robot/subsystems/arm/Arm.html index 2bce3dc6..fdff6a38 100644 --- a/javadoc/frc/robot/subsystems/arm/Arm.html +++ b/javadoc/frc/robot/subsystems/arm/Arm.html @@ -127,8 +127,12 @@

    Method Summary

    setAngle(double degrees)
     
    default void
    - +
    setAngle(double degrees, + double velocityDegreesPerSecond)
     
    +
    default void
    + +
     
    @@ -177,6 +181,13 @@

    setAngle

  • +
    +

    setAngle

    +
    default void setAngle(double degrees, + double velocityDegreesPerSecond)
    +
    +
  • +
  • isAbsoluteEncoderConnected

    default boolean isAbsoluteEncoderConnected()
    diff --git a/javadoc/frc/robot/subsystems/arm/ArmIO.ArmIOInputs.html b/javadoc/frc/robot/subsystems/arm/ArmIO.ArmIOInputs.html index b8d5b0bd..a486ab4c 100644 --- a/javadoc/frc/robot/subsystems/arm/ArmIO.ArmIOInputs.html +++ b/javadoc/frc/robot/subsystems/arm/ArmIO.ArmIOInputs.html @@ -108,20 +108,17 @@

    Field Summary

     
    double
    - +
     
    double
    - +
     
    double
     
    double
    - +
     
    -
    double
    - -
     
  • @@ -157,27 +154,21 @@

    Methods inherited from cl

    Field Details

    @@ -307,6 +310,12 @@

    lockPose

    public void lockPose()
    +
  • +
    +

    periodic

    +
    public void periodic()
    +
    +
  • diff --git a/javadoc/frc/robot/subsystems/drive/package-summary.html b/javadoc/frc/robot/subsystems/drive/package-summary.html index 26e41496..c9e7e265 100644 --- a/javadoc/frc/robot/subsystems/drive/package-summary.html +++ b/javadoc/frc/robot/subsystems/drive/package-summary.html @@ -76,6 +76,10 @@

    Package frc.robot.s
     
    DriveBase
     
    +
    DriveIO
    +
     
    +
    DriveIO.DriveIOInputs
    +
     
    DriveSwerveYAGSL
     
    DriveTrain
    diff --git a/javadoc/frc/robot/subsystems/drive/package-tree.html b/javadoc/frc/robot/subsystems/drive/package-tree.html index 0c0cd83a..efcb94de 100644 --- a/javadoc/frc/robot/subsystems/drive/package-tree.html +++ b/javadoc/frc/robot/subsystems/drive/package-tree.html @@ -58,6 +58,8 @@

    Class Hierarchy