Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksanford committed Mar 4, 2024
1 parent 0983353 commit 9171aca
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions web/frontend/src/components/slam/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -302,12 +302,15 @@ const handleMoveClick = async () => {
const destinationMM = lastPose.pose!;
destinationMM.x = destination!.x * 1000;
destinationMM.y = destination!.y * 1000;
const base = bases[0]!;
await motionClient.moveOnMap(
destinationMM,
bases[0]!,
base,
slamResourceName,
{ planDeviationM: 0.5 },
// obstacleDetectorsList is specified to work around this bug: RSDK-6632
// when that ticket is resolved we should delete the empty obstacleDetectorsList
// parameter
{ planDeviationM: 0.5, obstacleDetectorsList: [] },
{ motion_profile: 'position_only' }
);
await refreshPaths();
Expand Down

0 comments on commit 9171aca

Please sign in to comment.