Skip to content

Commit bc145d6

Browse files
committed
added absolute encoder to inputs
1 parent ffd820e commit bc145d6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/frc/robot/subsystems/arm/ArmIO.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ public static class ArmIOInputs {
99
public double elbow_vel_degps = 0.0;
1010
public double elbow_volts_V = 0.0;
1111
public double[] elbow_current_A = new double[] {};
12+
public double elbow_absolute_pos_deg = 0.0;
1213

1314
public double shoulder_pos_deg = 0.0;
1415
public double shoulder_vel_degps = 0.0;
1516
public double shoulder_volts_V = 0.0;
1617
public double[] shoulder_current_A = new double[] {};
18+
public double shoulder_absolute_pos_deg = 0.0;
1719
}
1820

1921
public default void updateInputs(ArmIOInputs inputs) {}

0 commit comments

Comments
 (0)