diff --git a/javadoc/allclasses-index.html b/javadoc/allclasses-index.html index 38b81e58..98e2b23c 100644 --- a/javadoc/allclasses-index.html +++ b/javadoc/allclasses-index.html @@ -76,7 +76,9 @@

All Classes and Interfaces<
Constants for the Pneumatics system.
DeployMailbox
-
 
+
+
Deploys the mailbox pneumatics and runs the belts; effectively deploys the mailbox on the bot.
+
DeployPneumatics
Command that extends the mailbox when started, and lowers the mailbox when ended.
@@ -127,7 +129,9 @@

All Classes and Interfaces<
Command that activates belts when started, and deactivates belts when ended.

RunIntake
-
 
+
+
Command that runs the intake on the robot.
+
diff --git a/javadoc/frc/robot/RobotContainer.html b/javadoc/frc/robot/RobotContainer.html index 78c41aff..9456d3e7 100644 --- a/javadoc/frc/robot/RobotContainer.html +++ b/javadoc/frc/robot/RobotContainer.html @@ -90,47 +90,31 @@

Field Summary

Modifier and Type
Field
Description
-
static DeployPneumatics
-
deployPneumatics
-
 
-
static Drive
-
drive
-
-
Singleton instance of Drive
+
static Drive
+
drive
+
+
Singleton instance of Drive for the whole robot.
-
static DriveFieldOriented
-
driveFieldOriented
-
 
static edu.wpi.first.wpilibj2.command.button.CommandXboxController
driverController
Xbox controller for the driver.
-
static DriveRobotOriented
-
driveRobotOriented
-
 
-
static EnterXMode
-
enterXMode
-
 
static Intake
intake
-
 
+
+
Singleton instance of Intake for the whole robot.
+
static MailboxBelts
mailboxBelts
-
mailboxBelts object for the MailboxBelts class
+
Singleton instance of MailboxBelts for the whole robot.
static MailboxPneumatics
mailboxPneumatics
-
mailboxPneumatics object for the MailboxPneumatics class
+
Singleton instance of MailboxPneumatics for the whole robot.
-
static RunBelts
-
runBelts
-
 
-
static RunIntake
-
runIntake
-
 
@@ -226,63 +210,28 @@

Field Details

drive

public static Drive drive
-
Singleton instance of Drive
+
Singleton instance of Drive for the whole robot.
  • mailboxPneumatics

    public static MailboxPneumatics mailboxPneumatics
    -
    mailboxPneumatics object for the MailboxPneumatics class
    +
    Singleton instance of MailboxPneumatics for the whole robot.
  • mailboxBelts

    public static MailboxBelts mailboxBelts
    -
    mailboxBelts object for the MailboxBelts class
    +
    Singleton instance of MailboxBelts for the whole robot.
  • intake

    public static Intake intake
    -
    -
  • -
  • -
    -

    driveRobotOriented

    -
    public static DriveRobotOriented driveRobotOriented
    -
    -
  • -
  • -
    -

    driveFieldOriented

    -
    public static DriveFieldOriented driveFieldOriented
    -
    -
  • -
  • -
    -

    enterXMode

    -
    public static EnterXMode enterXMode
    -
    -
  • -
  • -
    -

    deployPneumatics

    -
    public static DeployPneumatics deployPneumatics
    -
    -
  • -
  • -
    -

    runBelts

    -
    public static RunBelts runBelts
    -
    -
  • -
  • -
    -

    runIntake

    -
    public static RunIntake runIntake
    +
    Singleton instance of Intake for the whole robot.
  • diff --git a/javadoc/frc/robot/commands/DeployMailbox.html b/javadoc/frc/robot/commands/DeployMailbox.html index e9ea2121..3f0fcafe 100644 --- a/javadoc/frc/robot/commands/DeployMailbox.html +++ b/javadoc/frc/robot/commands/DeployMailbox.html @@ -81,6 +81,7 @@

    Class DeployMailbox


    public class DeployMailbox extends edu.wpi.first.wpilibj2.command.ParallelCommandGroup
    +
    Deploys the mailbox pneumatics and runs the belts; effectively deploys the mailbox on the bot.
    @@ -145,7 +146,7 @@

    Constructor Details

    DeployMailbox

    public DeployMailbox()
    -
    Deploys the mailbox we use to output gamepieces
    +
    Creates a new DeployMailbox.
  • diff --git a/javadoc/frc/robot/commands/RunIntake.html b/javadoc/frc/robot/commands/RunIntake.html index a3fd92df..d3b1db73 100644 --- a/javadoc/frc/robot/commands/RunIntake.html +++ b/javadoc/frc/robot/commands/RunIntake.html @@ -83,6 +83,7 @@

    Class RunIntake


    public class RunIntake extends edu.wpi.first.wpilibj2.command.Command
    +
    Command that runs the intake on the robot.