Skip to content

Commit

Permalink
added m_rangefinder
Browse files Browse the repository at this point in the history
  • Loading branch information
Advay17 committed Oct 6, 2024
1 parent 2ea5b8f commit 41bc098
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import edu.wpi.first.wpilibj.XboxController;
import frc.robot.commands.DriveCommands;
import frc.robot.commands.ServoCommands;
import frc.robot.subsystems.Rangefinder;
import frc.robot.subsystems.Servo;
import frc.robot.subsystems.XRPDrivetrain;
import edu.wpi.first.wpilibj2.command.Command;
Expand All @@ -24,6 +25,7 @@ public class RobotContainer {
// The robot's subsystems and commands are defined here...
public static final XRPDrivetrain m_xrpDrivetrain = new XRPDrivetrain();
public static final Servo m_servo = new Servo();
public static final Rangefinder m_rangefinder = new Rangefinder();
public final CommandXboxController m_controller = new CommandXboxController(0);


Expand Down

0 comments on commit 41bc098

Please sign in to comment.