Create intake.java

This commit is contained in:
aborunda
2022-01-13 19:03:01 -07:00
parent 78e1c1a94e
commit 2f8a45fcb0
@@ -0,0 +1,17 @@
// 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 frc4388.robot.commands;
import edu.wpi.first.wpilibj2.command.SubsystemBase;
public class intake extends SubsystemBase {
/** Creates a new intake. */
public intake() {}
@Override
public void periodic() {
// This method will be called once per scheduler run
}
}