We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d535a52 commit bac2f77Copy full SHA for bac2f77
src/main/java/org/carlmontrobotics/subsystems/Arm.java
@@ -193,6 +193,9 @@ public void periodic() {
193
// }
194
SmartDashboard.putNumber("Master RPM", armMotorMaster.getEncoder().getVelocity());
195
SmartDashboard.putNumber("Follower RPM", armMotorFollower.getEncoder().getVelocity());
196
+ SmartDashboard.putNumber("Actual Master Arm Volts", armMotorMaster.getBusVoltage() * armMotorMaster.getAppliedOutput());
197
+ SmartDashboard.putNumber("Actual Follower Arm Volts", armMotorFollower.getBusVoltage() * armMotorFollower.getAppliedOutput());
198
+
199
200
201
// when the value is different
0 commit comments