mirror of
https://github.com/Team4388/2022NoWayHome.git
synced 2026-06-09 00:38:05 -06:00
Update Intake.java
This commit is contained in:
@@ -4,13 +4,19 @@
|
||||
|
||||
package frc4388.robot.subsystems;
|
||||
|
||||
import com.ctre.phoenix.motorcontrol.can.WPI_TalonFX;
|
||||
|
||||
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||
|
||||
public class Intake extends SubsystemBase {
|
||||
|
||||
/** Creates a new Intake. */
|
||||
public Intake() {
|
||||
private WPI_TalonFX m_intakeMotor;
|
||||
private WPI_TalonFX m_extenderMotor;
|
||||
|
||||
/** Creates a new Intake. */
|
||||
public Intake(WPI_TalonFX m_intakeMotor, WPI_TalonFX m_extenderMotor) {
|
||||
this.m_intakeMotor = m_intakeMotor;
|
||||
this.m_extenderMotor = m_extenderMotor;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user