Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonS09 committed Mar 6, 2024
1 parent 43d7231 commit dbf70ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/carlmontrobotics/commands/ArmTeleop.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void execute() {
double currTime = Timer.getFPGATimestamp();
double deltaT = currTime - lastTime;
lastTime = currTime;
if (speeds == 0){// If no input, return, seen in issue #24
if (speeds == 0){// If no input, return, explained in @brettles comments on issue #24
return;
}
double goalArmRad = goalState.position + speeds * deltaT;
Expand Down

0 comments on commit dbf70ba

Please sign in to comment.