Adding stub subsystem ExampleSubsystem

This commit is contained in:
Bradley Bickford 2024-10-08 16:49:56 -04:00
parent 7f7410d0e6
commit 38f397db8b
2 changed files with 13 additions and 0 deletions

View File

@ -6,9 +6,13 @@ package frc.robot;
import edu.wpi.first.wpilibj2.command.Command;
import edu.wpi.first.wpilibj2.command.Commands;
import frc.robot.subsystems.ExampleSubsystem;
public class RobotContainer {
private ExampleSubsystem example;
public RobotContainer() {
example = new ExampleSubsystem();
configureBindings();
}

View File

@ -0,0 +1,9 @@
package frc.robot.subsystems;
import edu.wpi.first.wpilibj2.command.SubsystemBase;
public class ExampleSubsystem extends SubsystemBase {
public ExampleSubsystem() {
}
}