Skip to content

Commit

Permalink
Adjust default Servo speed value
Browse files Browse the repository at this point in the history
  • Loading branch information
noqman committed Dec 13, 2024
1 parent 0337f10 commit e89f72e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions servo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ namespace sumobit{

switch (servo) {
case SumobitServoChannel.Servo1:
setServoPosition(1, 0, 9);
setServoPosition(1, 0, 5);
break;

case SumobitServoChannel.Servo2:
setServoPosition(2, 0, 9);
setServoPosition(2, 0, 5);
break;

case SumobitServoChannel.All:
setServoPosition(1000, 0, 9);
setServoPosition(1000, 0, 5);
break;
}
}
Expand Down

0 comments on commit e89f72e

Please sign in to comment.