Skip to content

Commit 632a77b

Browse files
GroundIntakePivotIOReal added the @Overiod but not completed
1 parent 86668b2 commit 632a77b

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

src/main/java/frc/robot/subsystems/groundintake/GroundIntakePivotIOReal.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import com.ctre.phoenix6.configs.TalonFXConfiguration;
44
import com.ctre.phoenix6.controls.PositionVoltage;
55
import com.ctre.phoenix6.hardware.TalonFX;
6+
7+
import edu.wpi.first.units.measure.Angle;
68
import frc.robot.Constants;
79

810
public class GroundIntakePivotIOReal implements GroundIntakePivotIO {
@@ -16,4 +18,29 @@ public GroundIntakePivotIOReal() {
1618

1719
groundIntakePivotMotor = new TalonFX(Constants.GROUNDINTAKEPIVOTE_ID);
1820
}
21+
22+
@Override
23+
public void updateState(GroundIntakePivotIOInputs inputs){
24+
25+
}
26+
27+
@Override
28+
public void setPivotMotorSetpoint(Angle setpoint) {
29+
30+
}
31+
32+
@Override
33+
public void setPivotMotorVoltage(double voltage) {
34+
35+
}
36+
37+
@Override
38+
public Angle getPivotMotorPosition() {
39+
40+
}
41+
42+
@Override
43+
public Angle getGroundIntakePivotPosition() {
44+
45+
}
1946
}

0 commit comments

Comments
 (0)