21 lines
683 B
Java
Raw Normal View History

2024-10-21 19:36:34 -04:00
// 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;
2024-10-21 19:52:53 -04:00
import com.ctre.phoenix.motorcontrol.can.WPI_TalonSRX;
2024-10-21 19:36:34 -04:00
import edu.wpi.first.wpilibj2.command.SubsystemBase;
public class Lanceur extends SubsystemBase {
/** Creates a new Lanceur. */
public Lanceur() {}
2024-10-21 19:52:53 -04:00
final WPI_TalonSRX lanceur1 = new WPI_TalonSRX(0);
2024-10-21 19:36:34 -04:00
@Override
public void periodic() {
2024-10-21 19:52:53 -04:00
// This method will be called oncehttps://maven.ctr-electronics.com/release/com/ctre/phoenix/Phoenix5-frc2024-latest.json per scheduler run
2024-10-21 19:36:34 -04:00
}
}