44 lines
1.3 KiB
Java
Raw Normal View History

2025-01-27 20:14:20 -05: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;
import com.revrobotics.spark.SparkFlex;
import com.revrobotics.spark.SparkMax;
import com.revrobotics.spark.SparkLowLevel.MotorType;
import edu.wpi.first.wpilibj.DigitalInput;
import edu.wpi.first.wpilibj2.command.SubsystemBase;
public class Requin extends SubsystemBase {
/** Creates a new Requin. */
public Requin() {}
2025-02-03 18:53:33 -05:00
final SparkFlex balaye = new SparkFlex(9, MotorType.kBrushless);
final SparkMax rotatione = new SparkMax(10, MotorType.kBrushless);
final DigitalInput limit3 = new DigitalInput(4);
final DigitalInput limit5 = new DigitalInput(5);
2025-01-27 20:14:20 -05:00
public void balaye(double vitesse){
balaye.set(vitesse);
}
public void rotationer(double vitesse){
2025-01-28 19:34:18 -05:00
rotatione.set(vitesse);
2025-01-27 20:14:20 -05:00
}
public boolean enHaut(){
2025-01-28 19:34:18 -05:00
return limit3.get();
2025-01-27 20:14:20 -05:00
}
public boolean stop(){
return limit5.get();
}
2025-01-28 19:34:18 -05:00
public double encodeur(){
return rotatione.getEncoder().getPosition();
}
public void reset(){
rotatione.getEncoder().setPosition(0);
}
2025-01-27 20:14:20 -05:00
@Override
public void periodic() {
// This method will be called once per scheduler run
}
}