From cac4f32de1d9d23e8860c423be7a38200a329927 Mon Sep 17 00:00:00 2001 From: Cherriae Date: Sat, 20 Jan 2024 15:46:26 -0500 Subject: [PATCH] start elevator subsystem --- .../robot/subsystems/ElevatorSubsystem.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main/java/frc/robot/subsystems/ElevatorSubsystem.java diff --git a/src/main/java/frc/robot/subsystems/ElevatorSubsystem.java b/src/main/java/frc/robot/subsystems/ElevatorSubsystem.java new file mode 100644 index 0000000..d25e04d --- /dev/null +++ b/src/main/java/frc/robot/subsystems/ElevatorSubsystem.java @@ -0,0 +1,23 @@ +// Copyright (c) FIRST and other WPILib contributors. +// Open Source Software; you can modify and/or share it under the terms of +// the WPILib BSD license file in the root directory of this project. + +package frc.robot.subsystems; + +import edu.wpi.first.math.controller.PIDController; +import edu.wpi.first.wpilibj2.command.SubsystemBase; +import frc.robot.Constants; + +import com.revrobotics.CANSparkMax; +import com.revrobotics.RelativeEncoder; +import com.revrobotics.CANSparkLowLevel.MotorType; + +public class ElevatorSubsystem extends SubsystemBase { + /** Creates a new ElevatorSubsystem. */ + public ElevatorSubsystem() {} + + @Override + public void periodic() { + // This method will be called once per scheduler run + } +}