ytdfdr
This commit is contained in:
commit
890370d23b
1
networktables.json
Normal file
1
networktables.json
Normal file
@ -0,0 +1 @@
|
||||
|
@ -12,6 +12,8 @@ import edu.wpi.first.wpilibj.PneumaticsModuleType;
|
||||
import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
|
||||
import edu.wpi.first.wpilibj.drive.DifferentialDrive;
|
||||
import edu.wpi.first.wpilibj.motorcontrol.MotorControllerGroup;
|
||||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||
import edu.wpi.first.wpilibj.shuffleboard.ShuffleboardTab;
|
||||
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||
import frc.robot.Constants;
|
||||
|
||||
@ -23,10 +25,12 @@ public class BasePilotable extends SubsystemBase {
|
||||
final MotorControllerGroup droit = new MotorControllerGroup(avantdroit, arrieredroit);
|
||||
final MotorControllerGroup gauche = new MotorControllerGroup(avantgauche, arrieregauche);
|
||||
final DifferentialDrive drive = new DifferentialDrive(gauche, droit);
|
||||
|
||||
//piston
|
||||
private DoubleSolenoid brakedroit = new DoubleSolenoid(PneumaticsModuleType.CTREPCM,Constants.brakedroit, Constants.brakedroit);
|
||||
private DoubleSolenoid brakegauche = new DoubleSolenoid(PneumaticsModuleType.CTREPCM,Constants.brakegauche, Constants.brakegauche);
|
||||
//gyro
|
||||
ShuffleboardTab teb = Shuffleboard.getTab("teb");
|
||||
private AHRS gyroscope = new AHRS();public double getangle() {return gyroscope.getAngle();}
|
||||
public double getpitch() {
|
||||
return gyroscope.getPitch();
|
||||
@ -62,7 +66,10 @@ public void BrakeFerme(){
|
||||
|
||||
@Override
|
||||
public void periodic() {
|
||||
// This method will be called once per scheduler run
|
||||
|
||||
teb .add("encodeuravantdroit",0.1);
|
||||
teb .add("encodeurarrieregauche",0.1);
|
||||
teb .add("encodeurarrieredroit",0.1);
|
||||
teb .add("encodeuravantgauche",0.1);
|
||||
teb .add("distance",0.1);
|
||||
}
|
||||
}
|
||||
|
@ -8,7 +8,10 @@ package frc.robot.subsystems.bras;
|
||||
import com.revrobotics.CANSparkMax;
|
||||
import com.revrobotics.CANSparkMaxLowLevel.MotorType;
|
||||
|
||||
<<<<<<< HEAD
|
||||
import edu.wpi.first.wpilibj.DigitalInput;
|
||||
=======
|
||||
>>>>>>> Dash
|
||||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||
import frc.robot.Constants;
|
||||
@ -32,6 +35,10 @@ public class BrasTelescopique extends SubsystemBase {
|
||||
}
|
||||
@Override
|
||||
public void periodic() {
|
||||
<<<<<<< HEAD
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("photocell",0.1);
|
||||
=======
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("winch",0.1);
|
||||
>>>>>>> Dash
|
||||
}
|
||||
}
|
||||
|
@ -4,7 +4,10 @@
|
||||
|
||||
package frc.robot.subsystems.bras;
|
||||
|
||||
<<<<<<< HEAD
|
||||
import edu.wpi.first.wpilibj.DigitalInput;
|
||||
=======
|
||||
>>>>>>> Dash
|
||||
import edu.wpi.first.wpilibj.shuffleboard.Shuffleboard;
|
||||
import edu.wpi.first.wpilibj2.command.SubsystemBase;
|
||||
import frc.robot.Constants;
|
||||
@ -34,6 +37,11 @@ public class Pivot extends SubsystemBase {
|
||||
}
|
||||
@Override
|
||||
public void periodic() {
|
||||
<<<<<<< HEAD
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("limitpivot",0.1);
|
||||
}
|
||||
=======
|
||||
Shuffleboard.getTab("SmartDashBoard") .add("pivot encodeur",0.1);
|
||||
}
|
||||
>>>>>>> Dash
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user