Adding stub subsystem ExampleSubsystem
This commit is contained in:
parent
7f7410d0e6
commit
38f397db8b
@ -6,9 +6,13 @@ package frc.robot;
|
|||||||
|
|
||||||
import edu.wpi.first.wpilibj2.command.Command;
|
import edu.wpi.first.wpilibj2.command.Command;
|
||||||
import edu.wpi.first.wpilibj2.command.Commands;
|
import edu.wpi.first.wpilibj2.command.Commands;
|
||||||
|
import frc.robot.subsystems.ExampleSubsystem;
|
||||||
|
|
||||||
public class RobotContainer {
|
public class RobotContainer {
|
||||||
|
private ExampleSubsystem example;
|
||||||
|
|
||||||
public RobotContainer() {
|
public RobotContainer() {
|
||||||
|
example = new ExampleSubsystem();
|
||||||
configureBindings();
|
configureBindings();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
9
src/main/java/frc/robot/subsystems/ExampleSubsystem.java
Normal file
9
src/main/java/frc/robot/subsystems/ExampleSubsystem.java
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
package frc.robot.subsystems;
|
||||||
|
|
||||||
|
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||||
|
|
||||||
|
public class ExampleSubsystem extends SubsystemBase {
|
||||||
|
public ExampleSubsystem() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user