Skip to content

Commit

Permalink
Update Arm.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Keokigopal committed Jan 25, 2024
1 parent ce8818a commit 16c63b5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/main/java/frc/robot/subsystems/Arm.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package frc.robot.subsystems;

import edu.wpi.first.wpilibj2.command.SubsystemBase;

// How to make Subsystem (ignore image instructions, code is out of date, just look at written general instructions): https://compendium.readthedocs.io/en/latest/tasks/subsystems/subsystems.html
// Command based programming: https://docs.wpilib.org/en/stable/docs/software/commandbased/what-is-command-based.html
// Subsystem Documentation documentation: https://docs.wpilib.org/en/stable/docs/software/commandbased/subsystems.html

/**
* How to make a Subsystem:
* 1. Copy this file, remember that class name has to match
*/

public class Arm extends SubsystemBase {
/** Constructor. Creates a new ExampleSubsystem. */
public Arm() {

}

/**
* This method is called periodically by the CommandScheduler, about every 20ms.
* It should be used for updating subsystem-specific state that you don't want to offload to a Command.
* Try to avoid "doing to much" in this method (for example no driver control here).
*/
@Override
public void periodic() {
// This method will be called once per scheduler run
}
}

0 comments on commit 16c63b5

Please sign in to comment.