Skip to content

Commit 2cb7ae4

Browse files
I add GroundIntakePivotReal.java
1 parent e18c554 commit 2cb7ae4

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed
Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
package frc.robot.subsystems.groundintake;
22

3-
public class GroundIntakePivotIOReal {
4-
}
3+
import com.ctre.phoenix6.configs.TalonFXConfiguration;
4+
import com.ctre.phoenix6.hardware.TalonFX;
5+
6+
import frc.robot.Constants;
7+
8+
public class GroundIntakePivotIOReal implements GroundIntakePivotIO {
9+
10+
TalonFX groundIntakePivotMotor;
11+
TalonFXConfiguration groundIntakeMotorPivotConfig;
12+
13+
public GroundIntakePivotIOReal() {
14+
15+
groundIntakePivotMotor = new TalonFX(Constants.G);
16+
17+
}
18+
19+
}

0 commit comments

Comments
 (0)