Skip to content

Commit d968fce

Browse files
committed
Fixed pickup routine to be back above a 75% succese rate.
Still needs tuning for 16.04 sim and is not tuned for physical robots yet but may still work with current settings.
1 parent 079d5de commit d968fce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/behaviours/src/PickUpController.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,14 +246,14 @@ Result PickUpController::DoWork() {
246246
else if (!lockTarget) //if a target hasn't been locked lock it and enter a counting state while slowly driving forward.
247247
{
248248
lockTarget = true;
249-
result.pd.cmdVel = 0.15;
249+
result.pd.cmdVel = 0.18;
250250
result.pd.cmdAngularError= 0.0;
251251
timeOut = true;
252252
ignoreCenterSonar = true;
253253
}
254254
else if (Td > raise_time_begin) //raise the wrist
255255
{
256-
result.pd.cmdVel = 0.0;
256+
result.pd.cmdVel = -0.15;
257257
result.pd.cmdAngularError= 0.0;
258258
result.wristAngle = 0;
259259
}

0 commit comments

Comments
 (0)